/* A Bíblia Contadinha - Estilos Modernos */

/* ===== PALETA DE CORES ===== */
:root {
    /* Cores Primárias - Tema Infantil Alegre */
    --primary: #FF6B6B;        /* Coral vibrante */
    --primary-dark: #E55555;
    --primary-light: #FF8E8E;
    
    /* Cores Secundárias */
    --secondary: #4ECDC4;       /* Turquesa suave */
    --secondary-dark: #3DBDB3;
    --secondary-light: #6DDDD5;
    
    /* Cores de Acentuação */
    --accent: #FFE66D;         /* Amarelo dourado */
    --accent-dark: #FFD93D;
    --accent-light: #FFF3A0;
    
    /* Cores Neutras */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #777777;
    
    /* Cores de Apoio */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Gradientes Modernos */
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #6DDDD5 100%);
    --gradient-accent: linear-gradient(135deg, #FFE66D 0%, #FFF3A0 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    
    /* Sombras Suaves */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.2);
    --shadow-xl: 0 15px 35px rgba(0,0,0,0.25);
    
    /* Bordas Arredondadas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Imagens responsivas por padrão - AJUSTADO */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Padrão uniforme para todas as imagens principais */
.hero-image img,
.benefit-image,
.cta-final-image {
    object-fit: contain;
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
}

body {
    font-family: 'Nunito', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* Tipografia Infantil */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', 'Nunito', cursive;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

/* Estilo global para todos os corações */
.fa-heart, 
.fas.fa-heart, 
.far.fa-heart,
i.fa-heart,
i.fas.fa-heart {
    color: #E74C3C !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* ===== SEÇÃO HERO ===== */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: var(--white);
}

.badge-top {
    background: var(--accent);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(-2deg) scale(1.05); }
    100% { transform: rotate(-2deg) scale(1); }
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1.1;
}

.highlight {
    background: #F7E1D7;
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: var(--radius-md);
    display: inline-block;
    transform: rotate(-1deg);
    margin: 15px 0;
    font-size: 1.2em;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255,255,255,0.3);
}

.highlight .fa-heart {
    color: #E74C3C;
    font-size: 1.1em;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 500;
}

.price-section {
    background: linear-gradient(135deg, #FFD93D 0%, #FFF3A0 100%);
    padding: 40px;
    border-radius: var(--radius-xl);
    margin-bottom: 50px;
    border: 4px solid rgba(255,255,255,0.4);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-old {
    font-size: 1.6rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: #666;
    margin-bottom: 15px;
}

.price-new {
    font-size: 5.5rem;
    font-weight: 900;
    color: #C0392B;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.price-installment {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #27AE60;
    font-weight: 600;
}

.price-info {
    font-size: 1.2rem;
    color: #2C3E50;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #FFE66D 0%, #FFD93D 100%);
    color: var(--text-dark);
    padding: 25px 50px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.6rem;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    transform: scale(1);
    border: 3px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
}

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

.cta-subtext {
    margin-top: 25px;
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 500;
}

/* HERO IMAGE - AJUSTADO */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== SEÇÕES GERAIS ===== */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-light {
    background: var(--light-gray);
}

.section-white {
    background: var(--white);
}

.section-gradient {
    background: var(--gradient-secondary);
    color: var(--white);
}

.section-purple {
    background: var(--gradient-purple);
    color: var(--white);
}

.section-green {
    background: var(--gradient-green);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

/* ===== PROBLEMAS ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.problem-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    transform: scale(1);
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.problem-icon {
    width: 120px;
    height: 120px;
    background: #A2D2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 3.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Cor preta para o ícone de celular */
.problem-card:nth-child(1) .problem-icon i {
    color: #2C2C2C !important;
    font-size: 3.8rem;
}

/* Cor vermelha para o ícone de coração */
.problem-card:nth-child(3) .problem-icon i {
    color: #E74C3C !important;
    font-size: 3.8rem;
}

.problem-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

.problem-card:nth-child(2) .problem-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #6DDDD5 100%);
}

.problem-card:nth-child(3) .problem-icon {
    background: #FDF0D5;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.problem-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 800;
}

.problem-card p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== SOLUÇÃO ===== */
.solution-box {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.solution-box h2 {
    color: var(--primary);
    margin-bottom: 30px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.solution-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.solution-feature-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ===== BENEFÍCIOS - AJUSTADO ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-image {
    width: 100%;
    height: 280px;
    object-position: center;
    flex-shrink: 0;
}

.benefit-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    z-index: 2;
}

.benefit-card h3 {
    padding: 25px;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.benefit-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== BÔNUS ===== */
.bonus-header {
    text-align: center;
    margin-bottom: 60px;
}

.bonus-header h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-card h4 {
    margin: 20px 0 15px;
    font-size: 1.4rem;
}

.bonus-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 30px;
    color: var(--text-light);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-arrow.active {
    transform: rotate(180deg);
}

/* ===== GARANTIA ===== */
.guarantee-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guarantee-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.guarantee-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.guarantee-feature-text {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== CTA FINAL - AJUSTADO ===== */
.cta-final {
    background: var(--gradient-primary);
    padding: 100px 20px;
    color: var(--white);
}

.cta-final-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-button-white {
    background: #27AE60;
    color: #F5F5F5;
    padding: 25px 50px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button-white:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    background: #FFBE0B;
    color: #2C2C2C;
}

.cta-final-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    width: 100%;
    height: 450px;
    object-position: center;
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-final-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .badge-top {
        font-size: 1.2rem;
        padding: 14px 28px;
    }
    
    .price-new {
        font-size: 4rem;
    }
    
    .price-section {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 20px 35px;
        font-size: 1.4rem;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-image img {
        padding: 15px;
    }
    
    .problem-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .problem-card {
        padding: 40px 30px;
    }
    
    .problem-card h3 {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-final-content {
        text-align: center;
    }
    
    .cta-final-image {
        height: 380px;
    }
    
    .solution-box,
    .guarantee-box {
        padding: 40px 20px;
    }
    
    .benefits-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-image {
        height: 250px;
    }
    
    .benefit-image,
    .cta-final-image,
    .hero-image img {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .price-new {
        font-size: 3rem;
    }
    
    .badge-top {
        font-size: 1.1rem;
        padding: 12px 24px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-image img {
        padding: 12px;
    }
    
    .problem-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .problem-card h3 {
        font-size: 1.7rem;
    }
    
    .cta-final-image {
        height: 320px;
    }
    
    .benefit-image {
        height: 220px;
    }
    
    .benefit-image,
    .cta-final-image,
    .hero-image img {
        padding: 12px;
    }
}