/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --azul-claro: #87CEFA;
    --amarelo: #FFD700;
    --branco: #FFFFFF;
    --verde-claro: #B2E672;
    
    /* Cores complementares */
    --azul-escuro: #4A9FD8;
    --texto-escuro: #2C3E50;
    --texto-medio: #5A6C7D;
    --texto-claro: #7F8C8D;
    --fundo-claro: #F8FAFB;
    --vermelho-urgencia: #E74C3C;
    
    /* Tipografia */
    --fonte-titulos: 'Quicksand', sans-serif;
    --fonte-corpo: 'Nunito', sans-serif;
    --fonte-destaque: 'Fredoka One', cursive;
    
    /* Espaçamentos */
    --espacamento-xs: 0.5rem;
    --espacamento-sm: 1rem;
    --espacamento-md: 1.5rem;
    --espacamento-lg: 2rem;
    --espacamento-xl: 3rem;
    --espacamento-2xl: 4rem;
    
    /* Sombras */
    --sombra-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --sombra-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --sombra-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
}

body {
    font-family: var(--fonte-corpo);
    color: var(--texto-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--espacamento-sm);
}

/* Cabeçalho Fixo */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: var(--sombra-sm);
    z-index: 1000;
    padding: var(--espacamento-sm) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--espacamento-xs);
    font-family: var(--fonte-titulos);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--azul-claro);
}

.logo i {
    font-size: 1.5rem;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--espacamento-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--fonte-corpo);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--amarelo);
    color: var(--texto-escuro);
}

.btn-primary:hover {
    background: #FFC700;
    transform: scale(1.05);
    box-shadow: var(--sombra-md);
}

.btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

.btn-cta {
    background: var(--amarelo);
    color: var(--texto-escuro);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--sombra-md);
}

.btn-cta:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: var(--sombra-lg);
}

.btn-buy {
    background: var(--verde-claro);
    color: var(--texto-escuro);
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    box-shadow: var(--sombra-lg);
}

.btn-buy:hover {
    background: #9FD85F;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: var(--espacamento-2xl) 0;
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--branco) 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--fonte-titulos);
    font-size: 2rem;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: var(--espacamento-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--texto-medio);
    margin-bottom: var(--espacamento-xl);
    line-height: 1.7;
}

.hero-image {
    margin: var(--espacamento-xl) 0 var(--espacamento-lg);
}

.hero-icon {
    font-size: 8rem;
    color: var(--amarelo);
    opacity: 0.9;
}

/* Temporizador */
.countdown-box {
    background: var(--branco);
    border-radius: var(--radius-lg);
    padding: var(--espacamento-md);
    margin: var(--espacamento-xl) auto;
    box-shadow: var(--sombra-md);
    max-width: 500px;
}

.countdown-label {
    font-size: 0.95rem;
    color: var(--texto-medio);
    margin-bottom: var(--espacamento-sm);
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--espacamento-xs);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: var(--fonte-titulos);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-claro);
    line-height: 1;
}

.countdown-text {
    font-size: 0.75rem;
    color: var(--texto-claro);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--azul-claro);
    font-weight: 700;
}

/* Benefícios */
.benefits {
    padding: var(--espacamento-2xl) 0;
    background: var(--branco);
}

.section-title {
    font-family: var(--fonte-titulos);
    font-size: 2rem;
    font-weight: 700;
    color: var(--texto-escuro);
    text-align: center;
    margin-bottom: var(--espacamento-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--espacamento-lg);
    margin-top: var(--espacamento-xl);
}

.benefit-card {
    background: var(--fundo-claro);
    padding: var(--espacamento-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--espacamento-md);
    background: var(--azul-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--branco);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: var(--amarelo);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: var(--verde-claro);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: #FF9AA2;
}

.benefit-card:nth-child(5) .benefit-icon {
    background: #B5A3D6;
}

.benefit-title {
    font-family: var(--fonte-titulos);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: var(--espacamento-sm);
}

.benefit-text {
    color: var(--texto-medio);
    line-height: 1.6;
}

/* Depoimentos */
.testimonials {
    padding: var(--espacamento-2xl) 0;
    background: linear-gradient(135deg, var(--verde-claro) 0%, var(--branco) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--espacamento-lg);
    margin-top: var(--espacamento-xl);
}

.testimonial-card {
    background: var(--branco);
    padding: var(--espacamento-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra-sm);
}

.testimonial-stars {
    color: var(--amarelo);
    margin-bottom: var(--espacamento-sm);
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--texto-medio);
    font-style: italic;
    margin-bottom: var(--espacamento-md);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--espacamento-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--azul-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--texto-escuro);
    font-weight: 700;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--texto-claro);
}

/* Oferta Especial */
.offer {
    padding: var(--espacamento-2xl) 0;
    background: linear-gradient(135deg, var(--amarelo) 0%, #FFE066 100%);
    text-align: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--espacamento-xs);
    background: var(--vermelho-urgencia);
    color: var(--branco);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--espacamento-md);
    animation: pulse 2s infinite;
}

.offer-title {
    font-family: var(--fonte-destaque);
    font-size: 2.5rem;
    color: var(--texto-escuro);
    margin-bottom: var(--espacamento-md);
}

.offer-price {
    margin-bottom: var(--espacamento-lg);
}

.price-old {
    display: block;
    font-size: 1.25rem;
    color: var(--texto-medio);
    text-decoration: line-through;
    margin-bottom: var(--espacamento-xs);
}

.price-new {
    display: block;
    font-family: var(--fonte-titulos);
    font-size: 3rem;
    font-weight: 700;
    color: var(--texto-escuro);
}

.offer-countdown {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    padding: var(--espacamento-md);
    margin: var(--espacamento-lg) auto;
    max-width: 400px;
}

.offer-countdown-label {
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: var(--espacamento-sm);
}

.offer-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--espacamento-xs);
}

.offer-countdown-item {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.offer-countdown-value {
    font-family: var(--fonte-titulos);
    font-size: 2rem;
    font-weight: 700;
    color: var(--vermelho-urgencia);
}

.offer-countdown-text {
    font-size: 0.9rem;
    color: var(--texto-medio);
}

.offer-countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--texto-medio);
}

.offer-urgency {
    margin: var(--espacamento-lg) 0;
}

.offer-urgency p {
    color: var(--vermelho-urgencia);
    font-weight: 600;
    margin: var(--espacamento-xs) 0;
}

.offer-security {
    margin-top: var(--espacamento-md);
    color: var(--texto-medio);
    font-size: 0.95rem;
}

.offer-security i {
    color: var(--verde-claro);
}

/* Bônus */
.bonus {
    padding: var(--espacamento-2xl) 0;
    background: var(--branco);
    text-align: center;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--espacamento-xs);
    background: var(--verde-claro);
    color: var(--texto-escuro);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--espacamento-md);
}

.bonus-card {
    background: var(--fundo-claro);
    border-radius: var(--radius-lg);
    padding: var(--espacamento-xl);
    margin: var(--espacamento-xl) auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--espacamento-lg);
}

.bonus-icon {
    width: 100px;
    height: 100px;
    background: var(--amarelo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon i {
    font-size: 3rem;
    color: var(--branco);
}

.bonus-info h3 {
    font-family: var(--fonte-titulos);
    font-size: 1.5rem;
    color: var(--texto-escuro);
    margin-bottom: var(--espacamento-sm);
}

.bonus-info p {
    color: var(--texto-medio);
    margin-bottom: var(--espacamento-md);
}

.bonus-value {
    margin-top: var(--espacamento-sm);
}

.bonus-old {
    display: block;
    color: var(--texto-claro);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.bonus-new {
    display: block;
    color: var(--verde-claro);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

/* Garantia */
.guarantee {
    padding: var(--espacamento-2xl) 0;
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--branco) 100%);
    text-align: center;
}

.guarantee-badge {
    width: 100px;
    height: 100px;
    background: var(--verde-claro);
    border-radius: 50%;
    margin: 0 auto var(--espacamento-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge i {
    font-size: 3rem;
    color: var(--branco);
}

.guarantee-text {
    font-size: 1.15rem;
    color: var(--texto-medio);
    margin: var(--espacamento-lg) auto;
    max-width: 700px;
    line-height: 1.7;
}

.guarantee-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--espacamento-md);
    margin-top: var(--espacamento-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--espacamento-sm);
    background: var(--branco);
    padding: var(--espacamento-md);
    border-radius: var(--radius-md);
}

.guarantee-item i {
    color: var(--verde-claro);
    font-size: 1.5rem;
}

.guarantee-item span {
    color: var(--texto-escuro);
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: var(--espacamento-2xl) 0;
    background: var(--branco);
}

.faq-list {
    max-width: 800px;
    margin: var(--espacamento-xl) auto 0;
}

.faq-item {
    margin-bottom: var(--espacamento-md);
    background: var(--fundo-claro);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--espacamento-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--fonte-corpo);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--texto-escuro);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(135, 206, 250, 0.1);
}

.faq-question i {
    color: var(--azul-claro);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--azul-claro);
    color: var(--branco);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--branco);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--espacamento-md) var(--espacamento-md);
    color: var(--texto-medio);
    line-height: 1.7;
}

/* Rodapé */
.footer {
    background: var(--texto-escuro);
    color: var(--branco);
    padding: var(--espacamento-2xl) 0 var(--espacamento-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--espacamento-xl);
    margin-bottom: var(--espacamento-xl);
}

.footer-brand .logo {
    color: var(--branco);
    margin-bottom: var(--espacamento-sm);
}

.footer-brand p {
    color: var(--texto-claro);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--fonte-titulos);
    font-size: 1.1rem;
    margin-bottom: var(--espacamento-md);
    color: var(--amarelo);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--espacamento-xs);
}

.footer-links a {
    color: var(--texto-claro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amarelo);
}

.social-icons {
    display: flex;
    gap: var(--espacamento-sm);
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--amarelo);
    color: var(--texto-escuro);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--espacamento-md);
    text-align: center;
    color: var(--texto-claro);
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Responsivo - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--espacamento-lg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-title {
        font-size: 3rem;
    }
    
    .price-new {
        font-size: 4rem;
    }
    
    .bonus-card {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsivo - Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offer-title {
        font-size: 3.5rem;
    }
}
