/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Identidade Visual */
    --azul-sereno: #A0C0D6;
    --pessego: #FAD4C0;
    --cinza-escuro: #4A5568;
    --creme: #FEFBF6;
    --amarelo-ocre: #E8C57A;
    --branco: #FFFFFF;
    
    /* Tipografia */
    --font-titulos: 'Lora', serif;
    --font-texto: 'Nunito', sans-serif;
    
    /* Espaçamentos */
    --border-radius: 8px;
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-texto);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--pessego);
    color: var(--cinza-escuro);
}

.btn-primary:hover {
    background-color: #F8C4A6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 212, 192, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--azul-sereno);
    border: 2px solid var(--azul-sereno);
}

.btn-secondary:hover {
    background-color: var(--azul-sereno);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(45deg, var(--pessego), var(--amarelo-ocre));
    color: var(--cinza-escuro);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(250, 212, 192, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(250, 212, 192, 0.5);
}

.btn-large {
    font-size: 20px;
    padding: 20px 40px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    background-color: var(--branco);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-titulos);
    font-size: 24px;
    font-weight: 700;
    color: var(--azul-sereno);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo i {
    font-size: 28px;
    color: var(--amarelo-ocre);
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Seção Herói */
.hero {
    background: linear-gradient(135deg, var(--azul-sereno) 0%, var(--cinza-escuro) 100%);
    padding: 140px 0 80px;
    text-align: center;
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFFFFF" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFFFFF" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-titulos);
    font-size: 48px;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    color: var(--branco);
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Versículo Bíblico na Seção Herói */
.bible-verse {
    margin: 32px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bible-verse::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--amarelo-ocre);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.bible-verse blockquote {
    margin: 0;
    padding: 0;
    position: relative;
}

.bible-verse blockquote p {
    font-family: var(--font-titulos);
    font-size: 18px;
    font-style: italic;
    color: var(--branco);
    margin-bottom: 12px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.bible-verse cite {
    display: block;
    text-align: right;
    font-family: var(--font-texto);
    font-size: 14px;
    color: var(--amarelo-ocre);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Seções Gerais */
section {
    padding: var(--section-padding);
}

section h2 {
    font-family: var(--font-titulos);
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--cinza-escuro);
}

/* Seção Conexão (Dor) */
.connection {
    background-color: var(--branco);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pain-point {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--creme);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
}

.pain-point .icon {
    width: 80px;
    height: 80px;
    background-color: var(--azul-sereno);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pain-point .icon i {
    font-size: 32px;
    color: var(--branco);
}

.pain-point h3 {
    font-family: var(--font-titulos);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--cinza-escuro);
}

/* Seção Solução */
.solution {
    background-color: var(--creme);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--branco);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--pessego), var(--amarelo-ocre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit .icon i {
    font-size: 32px;
    color: var(--cinza-escuro);
}

.benefit h3 {
    font-family: var(--font-titulos);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--cinza-escuro);
}

/* Seção O Que Você Recebe */
.what-you-get {
    background-color: var(--branco);
}

.kit-content {
    max-width: 700px;
    margin: 0 auto 60px;
}

.kit-list {
    display: grid;
    gap: 20px;
}

.kit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--creme);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.kit-item:hover {
    background-color: var(--pessego);
    transform: translateX(10px);
}

.kit-item i {
    color: var(--azul-sereno);
    font-size: 20px;
    min-width: 20px;
}

.kit-item span {
    font-size: 18px;
    font-weight: 600;
    color: var(--cinza-escuro);
}

.cta-center {
    text-align: center;
}

/* Seção Prova Social */
.social-proof {
    background: linear-gradient(135deg, var(--cinza-escuro), var(--azul-sereno));
    padding: 80px 0;
}

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

.author-photo {
    text-align: center;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--pessego), var(--amarelo-ocre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.photo-placeholder i {
    font-size: 80px;
    color: var(--cinza-escuro);
}

/* Estilos para a foto da família */
.family-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--branco);
    position: relative;
}

.family-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.family-photo:hover .family-img {
    transform: scale(1.05);
}

.author-story h2 {
    font-family: var(--font-titulos);
    font-size: 32px;
    color: var(--branco);
    text-align: left;
    margin-bottom: 24px;
}

.author-story p {
    font-size: 18px;
    color: var(--branco);
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Chamada Final */
.final-cta {
    background-color: var(--creme);
    text-align: center;
}

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

.final-cta h2 {
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--cinza-escuro);
}

.trust-seal {
    margin-top: 40px;
}

.seal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--branco);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.seal-content i {
    font-size: 24px;
    color: var(--azul-sereno);
}

.seal-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.seal-text strong {
    font-size: 16px;
    color: var(--cinza-escuro);
}

.seal-text span {
    font-size: 14px;
    color: var(--cinza-escuro);
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--cinza-escuro);
    padding: 60px 0 40px;
    color: var(--branco);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-titulos);
    font-size: 24px;
    font-weight: 700;
    color: var(--azul-sereno);
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--amarelo-ocre);
}

.footer-support {
    margin-bottom: 30px;
}

.footer-support a {
    color: var(--pessego);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 30px;
}

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

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background-color: var(--azul-sereno);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--pessego);
    color: var(--cinza-escuro);
    transform: translateY(-3px);
}

/* Modal */
/* Modal para Integração Brevo via Iframe */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background-color: var(--creme);
    margin: 5% auto;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    padding: 20px;
    z-index: 2001;
}

.modal-visible {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--cinza-escuro);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
}

.close-button:hover {
    color: var(--azul-sereno);
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Responsividade do Iframe - Altura ajustada para mostrar botão completo */
.modal-content iframe {
    width: 100%;
    max-width: 540px;
    height: 420px; /* Aumentado de 305px para 420px */
    min-height: 400px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 160px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .pain-points,
    .benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proof-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .family-photo {
        width: 180px;
        height: 180px;
    }
    
    .author-story h2 {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-cta {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .btn-large {
        font-size: 18px;
        padding: 18px 32px;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
        padding: 15px;
        overflow-y: auto;
    }
    
    .modal-content iframe {
        height: 380px; /* Aumentado de 250px para 380px no mobile */
        min-height: 350px;
    }
    
    .close-button {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .btn-cta {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .kit-item span {
        font-size: 16px;
    }
}
