/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FDE2E4;
    color: #6E6E6E;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFB6B9;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #FFB6B9;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero .swiper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 182, 185, 0.8), rgba(250, 208, 196, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

h1 {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: #FFB6B9;
    color: #FFFFFF;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 182, 185, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #ff9ea3;
    box-shadow: 0 6px 20px rgba(255, 182, 185, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 182, 185, 0.4);
}

/* Seção de Benefícios */
.benefits {
    background-color: #FFF5F6;
    padding: 4rem 2rem;
    text-align: center;
}

/* Página de Produto */
.produto-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FDE2E4, #FFB6B9);
    padding: 2rem;
}

.produto-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.produto-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.instrucoes {
    margin: 2rem 0;
    text-align: left;
}

.instrucoes h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.instrucoes p {
    color: #4a4a4a;
    margin: 1rem 0;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.instrucoes p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #FFB6B9;
    border-radius: 50%;
}

.benefit-item {
    max-width: 300px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: #6E6E6E;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #FDE2E4;
    padding: 2rem;
    text-align: center;
    color: #6E6E6E;
}

/* Carrossel Background Fullscreen */
.swiper-button-next,
.swiper-button-prev {
    color: #FFB6B9;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
    background-color: #FFB6B9;
}

/* Seção de Transações */
.transactions {
    padding: 4rem 2rem;
    background-color: #FDE2E4;
}

.transactions h2 {
    text-align: center;
    color: #6E6E6E;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.transaction-list {
    max-width: 800px;
    margin: 0 auto;
}

.transaction-item {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.transaction-item:hover {
    transform: translateX(10px);
}

.transaction-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
}

.transaction-info {
    flex: 1;
}

.transaction-info h3 {
    color: #6E6E6E;
    margin-bottom: 0.5rem;
}

.transaction-info p {
    color: #999;
    font-size: 0.9rem;
}

.transaction-amount {
    font-size: 1.2rem;
    font-weight: 600;
}

.transaction-amount.positive {
    color: #4CAF50;
}

.transaction-amount.negative {
    color: #F44336;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        padding: 1rem;
    }

    .benefits {
        padding: 2rem 1rem;
    }

    .transaction-item {
        flex-direction: column;
        text-align: center;
    }

    .transaction-icon {
        margin: 0 0 1rem 0;
    }

    .transaction-amount {
        margin-top: 1rem;
    }
}

/* Animações */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-text {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-text-delay-1 {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.animate-text-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.benefit-item, .transaction-item {
    animation: fadeInUp 1s ease-out;
}
