:root {
    --bg-cream: #F5F4F0; 
    --green-dark: #40503C; 
    --green-light: #8BA67E; 
    --text-dark: #222222;
    --text-gray: #444444;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Reset Global para impedir que qualquer coisa vaze da tela */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    max-width: 100%; 
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-gray);
    line-height: 1.5;
    overflow-x: hidden; /* Corta qualquer rolagem lateral acidental */
}

.container { width: 90%; max-width: 1150px; margin: 0 auto; }

img { max-width: 100%; height: auto; } /* Protege as imagens */

h1, h2, h3 { font-family: var(--font-serif); color: var(--green-dark); font-weight: 500; }
em { font-style: italic; color: var(--green-light); }

/* --- HEADER --- */
header { 
    background-color: var(--bg-cream); 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
}

/* Trava do Logo para não esmagar no celular */
.logo { display: flex; align-items: center; }
.logo img { 
    height: 70px; 
    width: 70px;
    border-radius: 50%; 
    object-fit: cover;
    flex-shrink: 0; /* Impede o logo de encolher */
} 

nav ul { list-style: none; display: flex; gap: 20px; align-items: center;} 
nav a { text-decoration: none; color: var(--text-dark); font-size: 0.9rem; font-weight: 600; } 

.btn-dark-header { 
    background-color: var(--green-dark); 
    color: white; 
    padding: 10px 20px;
    border-radius: 6px; 
    font-size: 0.9rem; 
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-dark-header:hover { background-color: #2a3528; }

/* Botão Hambúrguer (Escondido no PC) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001; 
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--green-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}
.mobile-only-btn { display: none; }

/* --- HERO INICIAL --- */
.hero { 
    position: relative; 
    height: 90vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
}
.video-bg { 
    position: absolute; 
    top: 50%; left: 50%; 
    min-width: 100%; min-height: 100%; 
    transform: translate(-50%, -50%); 
    z-index: 1; 
    object-fit: cover; 
}
.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: radial-gradient(circle, rgba(245, 244, 240, 0.4) 0%, rgba(245, 244, 240, 0.1) 80%);
    z-index: 2; 
}
.hero-content { 
    position: relative; 
    z-index: 3; 
    color: var(--text-dark); 
    width: 100%;
    padding: 0 15px; 
}
.hero h3 { font-size: 1.5rem; letter-spacing: 4px; margin-bottom: 5px; font-weight: 500; color: var(--green-dark); } 

/* O Clamp resolve 100% o problema do tamanho da fonte */
.hero-title-calma {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 15vw, 8rem); 
    letter-spacing: 2px;
    font-weight: 400; 
    color: var(--green-dark); 
    margin: 0; 
    line-height: 1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3); 
}

.ornament { display: flex; align-items: center; justify-content: center; margin-top: 10px; margin-bottom: 30px; gap: 15px; }
.line-img { width: 60px; height: auto; object-fit: contain; }
.heart-icon { width: 30px; height: auto; object-fit: contain; }

.hero-subtitle { 
    font-size: 1.6rem; 
    line-height: 1.4; 
    margin-bottom: 30px; 
    font-weight: 600; 
    color: #fff; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); 
}
.btn-green-hero { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 10px; 
    background-color: var(--green-light); 
    color: white; 
    padding: 15px 35px; 
    border-radius: 50px; 
    font-size: 1rem; 
    font-weight: 600; 
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2); 
    flex-wrap: wrap; /* Evita quebra feia no celular */
}
.btn-green-hero:hover { background-color: #768f69; }
.btn-icon { width: 20px; }

.hero-small-text { 
    font-size: 0.8rem; 
    margin-top: 15px; 
    font-weight: 600; 
    letter-spacing: 1px; 
    color: #fff; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); 
}

/* --- FAIXA --- */
.faixa-pratica { background-color: var(--bg-cream); text-align: center; padding: 20px 0; font-size: 0.85rem; font-weight: 700; color: var(--text-gray); letter-spacing: 1px; }

/* --- BENEFÍCIOS --- */
.beneficios { padding: 30px 0; }
.beneficios-box { 
    background-color: #FFFFFF; 
    border-radius: 12px; 
    padding: 40px 20px; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
}
.beneficio-item { text-align: center; width: 100%; display: flex; flex-direction: column; align-items: center; }
.icon-circle { width: 90px; margin-bottom: 15px; border-radius: 50%; }
.beneficio-item p { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }

/* --- TE RECONOCES (CARDS) --- */
.te-reconoces { padding: 80px 0; }
.section-title { font-size: 3.5rem; text-align: center; margin-bottom: 60px; line-height: 1.1; }

.cards-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    width: 100%;
}
.card-green {
    background-color: var(--green-light);
    border-radius: 10px; 
    padding: 30px 25px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left; 
    width: 100%;
}
.card-icon { height: 60px; margin-bottom: 20px; }
.card-bold { font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; line-height: 1.3; color: #111; }
.card-green p:not(.card-bold) { font-size: 0.95rem; line-height: 1.5; color: #222; font-weight: 500;}

/* --- VIDEO MID SECTION --- */
.video-mid-section {
    position: relative;
    width: 100%;
    max-width: 1350px;
    height: 550px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-color: var(--green-dark); 
}
.video-mid-bg { width: 100%; height: 100%; object-fit: cover; }

/* --- QUIÉN SOY --- */
.quien-soy { padding: 100px 0; }
.title-spaced { font-family: var(--font-sans); letter-spacing: 6px; text-align: center; margin-bottom: 60px; font-weight: 600; font-size: 1.8rem;}

.quien-soy-content { display: flex; gap: 60px; align-items: center; }
.foto-wrapper { flex: 0.8; max-width: 420px; }
.foto-diana { width: 100%; height: auto; display: block; }
.texto-wrapper { flex: 1.2; }
.playfair-title { font-size: 3rem; margin-bottom: 30px; line-height: 1.2; font-family: var(--font-serif); }
.texto-wrapper p { font-size: 1.05rem; color: var(--text-gray); font-weight: 500; line-height: 1.6;}
.texto-wrapper strong { color: var(--text-dark); }
.tags-container { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.tag { font-size: 0.75rem; font-weight: 600; border: 1px solid #D1D1D1; padding: 10px 16px; background-color: #F1EFEA; color: var(--text-dark); text-transform: uppercase; }

/* --- EVENTOS HOME (CARDS) --- */
.seccion-eventos-home { padding: 100px 0; }
.eventos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; width: 100%; }
.evento-card { background-color: #FFFFFF; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; width: 100%; }
.evento-img-wrapper { position: relative; width: 100%; height: 220px; }
.evento-img { width: 100%; height: 100%; object-fit: cover; }
.evento-tag { position: absolute; top: 15px; left: 15px; background-color: rgba(255, 255, 255, 0.9); color: var(--green-dark); padding: 5px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; }
.evento-info { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.evento-fecha { font-size: 0.9rem; font-weight: 600; color: var(--green-light); margin-bottom: 10px; }
.evento-titulo { font-family: var(--font-serif); font-size: 1.8rem; color: var(--green-dark); margin-bottom: 15px; line-height: 1.2; }
.evento-desc { font-size: 1rem; color: var(--text-gray); margin-bottom: 25px; flex: 1; }
.evento-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #EEEEEE; padding-top: 20px; }
.evento-precio { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }
.btn-evento { background-color: var(--green-light); color: white; padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-decoration: none; }

/* --- FOOTER --- */
footer { background-color: var(--green-dark); color: #A3ACA0; padding: 25px 0; font-size: 0.75rem; letter-spacing: 1px; text-align: center; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-left { font-family: var(--font-serif); font-size: 1.1rem; color: white; }
.footer-left .text-green { color: var(--green-light); font-style: italic; }
.footer-center { display: flex; gap: 30px; }
.footer-center a { color: #A3ACA0; text-decoration: none; text-transform: uppercase; }

/* ========================================= */
/* --- MEDIA QUERIES (FORÇAR CELULAR E TABLET) --- */
/* ========================================= */

@media (max-width: 992px) {
    /* Menu Hamburguer Ativo */
    .hamburger { display: flex; }
    .desktop-only-btn { display: none; }
    .mobile-only-btn { display: block; margin-top: 20px; }
    
    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-cream);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding-top: 100px;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .desktop-nav.active { right: 0; }
    
    nav ul { flex-direction: column; align-items: center; gap: 25px; }
    nav a { font-size: 1.2rem; }

    /* Animação do X no Hambúrguer */
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    /* Layouts Tablet */
    .beneficios-box { grid-template-columns: 1fr 1fr; padding: 30px; gap: 30px; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .quien-soy-content { flex-direction: column; text-align: center; }
    .footer-content { flex-direction: column; gap: 20px; }
    .footer-center { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
    /* TRAVAS EXTREMAS PARA CELULAR */
    
    /* Benefícios 1 embaixo do outro */
    .beneficios-box { grid-template-columns: 1fr; }
    
    /* Cards Verdes 1 embaixo do outro */
    .cards-grid { grid-template-columns: 1fr; }
    
    /* Textos do Hero */
    .hero-subtitle { font-size: 1.1rem; padding: 0 10px; }
    .hero-small-text { padding: 0 20px; line-height: 1.5; white-space: normal; }
    
    /* Outras seções */
    .section-title, .playfair-title { font-size: 2.2rem; }
    .video-mid-section { height: 350px; }
    .tags-container { justify-content: center; }
}