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

/* ==================================================== */
/* --- RESET GLOBAL E BASE --- */
/* ==================================================== */
* { 
    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;
}

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

img { 
    max-width: 100%; 
    height: auto; 
}

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

em { 
    font-style: italic; 
    color: var(--green-light); 
}

/* ==================================================== */
/* --- HEADER ALINHADO --- */
/* ==================================================== */
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%;
    gap: 20px;
}

/* Lado Esquerdo: Logo */
.logo { 
    display: flex; 
    align-items: center; 
    flex: 0 0 auto;
}
.logo img { 
    height: 80px; 
    width: 80px;
    border-radius: 50%; 
    object-fit: cover;
} 

/* Centro: Menu */
.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1; 
}

.site-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--green-dark);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    align-items: center;
    justify-content: center;
} 

nav a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-size: 0.95rem; 
    font-weight: 600; 
    transition: all 0.3s;
    padding: 8px 18px; 
    border-radius: 8px; 
    white-space: nowrap; 
} 
nav a:hover { color: var(--green-dark); }

/* Link Ativo */
nav a.active-link {
    background-color: #B5C9AC; 
    color: var(--green-dark); 
}

nav a.btn-dark-header.active-link {
    background-color: var(--green-dark);
    color: white;
}

/* Lado Direito: Botão Escuro */
.desktop-only-btn {
    flex: 0 0 auto; 
}

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

/* Menu Mobile (Hambúrguer) */
.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 INDEX (VÍDEO DE FUNDO) --- */
/* ==================================================== */
.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; 
    filter: brightness(1.3); /* Um pouco mais claro */
}
.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: radial-gradient(circle, rgba(245, 244, 240, 0.1) 0%, rgba(245, 244, 240, 0.02) 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); } 

.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;
}
.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 E BENEFÍCIOS --- */
/* ==================================================== */
.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; }

.beneficios { padding: 30px 0; }
.beneficios-box { 
    background-color: #FFFFFF; 
    border-radius: 12px; 
    padding: 40px 20px; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    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: 140px; margin-bottom: 15px; }
.beneficio-item p { font-size: 1.1rem; 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;}


/* ========================================================= */
/* --- SECCIÓN RESPIRACIÓN (FOTO + TEXTO ANIMADO) --- */
/* ========================================================= */
.seccion-respiracao {
    position: relative;
    width: 100%;
    max-width: 1350px;
    height: 480px; 
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: flex-start; 
    align-items: center; 
    background-color: var(--green-dark);
}

.bg-respiracao {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; 
    z-index: 1;
    animation: respirar-fundo 6s ease-in-out infinite;
}

.overlay-respiracao {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* MUDANÇA AQUI: Gradiente bem mais leve (menos preto) para o fundo ficar claro */
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 100%); 
    z-index: 2;
}

.caixa-texto-respiracao {
    position: relative;
    z-index: 3;
    text-align: left; 
    padding: 0 40px;
    margin-left: 5%; 
    max-width: 620px; 
    animation: respirar-texto 6s ease-in-out infinite;
}

#frase-mutavel {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem); 
    color: #cfaa6b; 
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

@keyframes respirar-fundo {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); } 
    100% { transform: scale(1); }
}

@keyframes respirar-texto {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.02); } 
    100% { transform: scale(1); }
}


/* ==================================================== */
/* --- 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; }

.texto-wrapper p { 
    font-family: var(--font-sans);
    font-size: 1.15rem; 
    color: #444444; 
    font-weight: 500; 
    line-height: 1.7;
}
.texto-wrapper strong { font-weight: 700; color: #222222; }

.frase-calma-destaque { font-family: var(--font-sans); font-style: italic; font-weight: 500; color: var(--green-dark); }

.tags-container { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.tag { 
    font-family: var(--font-sans);
    font-size: 0.75rem; 
    font-weight: 700; 
    border: 1px solid #C5C5C5; 
    padding: 10px 16px; 
    background-color: #F0EFEA; 
    color: #111111; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tag-btn:hover, .tag-btn.active {
    background-color: var(--green-dark);
    color: #FFFFFF;
    border-color: var(--green-dark);
}

.descricao-interativa-box {
    margin-top: 25px;
    padding: 22px;
    background-color: #FFFFFF;
    border-left: 4px solid var(--green-light);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.descricao-interativa-box p { font-size: 1.05rem; color: #333333; line-height: 1.6; }

.botoes-finais { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
    background-color: transparent; border: 2px solid var(--green-light);
    color: var(--green-dark); padding: 13px 33px; border-radius: 50px; 
    font-size: 1rem; font-weight: 600; text-decoration: none;
    letter-spacing: 0.5px; transition: 0.3s;
}
.btn-outline:hover { background-color: var(--green-light); color: white; }


/* ==================================================== */
/* --- CÓMO PODEMOS TRABAJAR JUNTAS (EVENTOS) --- */
/* ==================================================== */
.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-info { padding: 35px 25px 25px; display: flex; flex-direction: column; flex: 1; }
.evento-fecha { font-size: 0.95rem; font-weight: 600; color: var(--green-light); margin-bottom: 15px; }
.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; }
.btn-evento { background-color: var(--green-light); color: white; padding: 12px 25px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; text-decoration: none; display: inline-block; transition: background-color 0.3s; }
.btn-evento:hover { background-color: var(--green-dark); }


/* ==================================================== */
/* --- PÁGINA "MÉTODO CALMA" (HERO STONES E ANCLAS) --- */
/* ==================================================== */
.hero-stones {
    position: relative; width: 100%; height: 50vh; min-height: 400px;
    background-image: url('../img/bg-piedras.jpg'); background-size: cover;
    background-position: center; display: flex; align-items: center;
    justify-content: center; text-align: center;
}
.hero-stones-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(245, 244, 240, 0.5); z-index: 1; }
.hero-stones-content { position: relative; z-index: 2; }
.pre-title { font-family: var(--font-sans); font-size: 2rem; font-weight: 500; color: #4A5C50; margin-bottom: 5px; text-shadow: 1px 1px 4px rgba(255,255,255,0.7); }
.main-title { font-family: var(--font-serif); font-size: 4.5rem; font-style: italic; color: var(--green-dark); line-height: 1; margin-bottom: 20px; text-shadow: 1px 1px 4px rgba(255,255,255,0.7); }
.ornament-hero { display: flex; align-items: center; justify-content: center; gap: 15px; }
.ornament-hero .line-img { width: 80px; height: auto; }
.ornament-hero .heart-icon { width: 25px; height: auto; }

.intro-calma { padding: 80px 0; background-color: var(--bg-cream); text-align: center; }
.intro-container p { font-family: var(--font-sans); font-size: 1.4rem; color: var(--text-purple); line-height: 1.6; margin-bottom: 30px; font-weight: 500; }
.intro-container .intro-bold { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--green-dark); margin-top: 40px; margin-bottom: 0; }

.anclas-section { padding: 20px 0 80px 0; background-color: var(--bg-cream); }
.anclas-header { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 70px; }
.anclas-header .line-separator { width: 60px; height: 2px; background-color: #B5A0BE; position: relative; }
.anclas-header .line-separator::after { content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%; background-color: #B5A0BE; top: -3px; }
.anclas-header .line-separator:first-child::after { right: 0; }
.anclas-header .line-separator:last-child::after { left: 0; }
.anclas-title { font-family: var(--font-sans); font-size: 1.8rem; font-weight: 600; color: var(--text-purple); }

.anclas-row { display: flex; justify-content: space-between; position: relative; gap: 0; }
.ancla-item { position: relative; z-index: 2; flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }

.ancla-item:not(:last-child)::after {
    content: ''; position: absolute; top: 80px; left: 50%; width: 100%; height: 25px; 
    transform: translateY(-50%); z-index: -1; background-repeat: no-repeat; background-size: 100% 100%;
}
.ancla-item:nth-child(odd):not(:last-child)::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q50,20 100,10' fill='none' stroke='%238BA67E' stroke-width='2'/%3E%3C/svg%3E"); }
.ancla-item:nth-child(even):not(:last-child)::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q50,0 100,10' fill='none' stroke='%238BA67E' stroke-width='2'/%3E%3C/svg%3E"); }
.ancla-item:first-child::before {
    content: ''; position: absolute; top: 80px; right: 50%; width: 50%; height: 25px;
    transform: translateY(-50%); z-index: -1; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M10,20 Q50,20 100,10' fill='none' stroke='%238BA67E' stroke-width='2'/%3E%3Ccircle cx='10' cy='20' r='3' fill='%238BA67E'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 100% 100%;
}
.ancla-item:last-child::after {
    content: ''; position: absolute; top: 80px; left: 50%; width: 50%; height: 25px;
    transform: translateY(-50%); z-index: -1; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q50,20 90,20' fill='none' stroke='%238BA67E' stroke-width='2'/%3E%3Ccircle cx='90' cy='20' r='3' fill='%238BA67E'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 100% 100%;
}

.ancla-number { width: 25px; height: 25px; border-radius: 50%; color: white; font-size: 0.8rem; font-weight: 700; display: flex; justify-content: center; align-items: center; margin-bottom: 10px; position: relative; }
.ancla-c1 { background-color: #83A581; } .ancla-c2 { background-color: #9C8BB4; } .ancla-c3 { background-color: #D3A5B1; } .ancla-c4 { background-color: #9AB696; } .ancla-c5 { background-color: #D2AA85; } .ancla-c6 { background-color: #88AEB4; } .ancla-c7 { background-color: #AE93B4; }
.ancla-number::after { content: ''; position: absolute; top: 25px; left: 50%; transform: translateX(-50%); width: 1px; height: 15px; border-left: 2px dotted #B1B1B1; }
.ancla-icon { width: 90px; height: 90px; background-color: transparent; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; position: relative; z-index: 2; }
.ancla-icon img { width: 100%; height: 100%; object-fit: contain; }
.ancla-item h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.ancla-item p { font-size: 0.75rem; line-height: 1.5; color: var(--text-gray); padding: 0 5px; }

.trabajaremos-section { padding: 40px 0 100px 0; background-color: var(--bg-cream); }
.trabajaremos-box { background-color: var(--green-box); border-radius: 12px; padding: 40px 50px; display: flex; gap: 40px; align-items: center; justify-content: space-between; }
.trabajaremos-left { display: flex; gap: 25px; align-items: center; flex: 1; }
.brain-icon { width: 90px; height: auto; flex-shrink: 0; }
.trabajaremos-text h3 { font-family: var(--font-sans); font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.trabajaremos-text p { font-size: 0.95rem; color: #555; line-height: 1.5; }
.trabajaremos-right { flex: 1.5; }
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
.checklist li { font-size: 0.95rem; color: var(--green-dark); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.checklist li img { width: 20px; height: auto; }


/* ==================================================== */
/* --- FOOTERS --- */
/* ==================================================== */
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; transition: color 0.3s; }
.footer-center a:hover { color: white; }

.footer-simple { 
    background-color: var(--bg-cream); 
    text-align: center; 
    padding: 60px 0 40px 0; 
}

.footer-top-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.social-icons { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.social-icons a img { 
    width: 45px; 
    height: auto; 
    transition: transform 0.3s ease; 
}

.social-icons a:hover img { 
    transform: scale(1.1); 
}

.footer-logo { 
    display: flex; 
    justify-content: center; 
}

.footer-logo img { 
    width: 220px;
    height: auto; 
    border-radius: 50%; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.copyright { 
    font-family: var(--font-sans); 
    font-size: 0.95rem; 
    color: var(--text-dark); 
    font-weight: 600; 
}


/* ==================================================== */
/* --- MEDIA QUERIES (RESPONSIVIDADE) --- */
/* ==================================================== */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .desktop-only-btn { display: none; }
    .mobile-only-btn { display: block; margin-top: 20px; }

    /* A CORREÇÃO ESTÁ AQUI: Remove o transform do header-center que quebrava o menu fixo */
    .header-center {
        position: static;
        flex: none;
    }

    /* O título fica centralizado de forma independente agora */
    .site-title {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.1rem;
        display: block; 
        width: max-content;
        z-index: 10;
    }

    .hero-site-title { 
        display: none; 
    }
    
    /* Agora o menu consegue se esconder direito fora da tela (right: -100%) ! */
    .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: 999;
    }
    
    /* Quando o JS injetar a classe active, ele aparece */
    .desktop-nav.active { right: 0; }
    
    nav ul { flex-direction: column; align-items: center; gap: 25px; }
    nav a { font-size: 1.2rem; }

    .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); }
    
    .beneficios-box { padding: 30px; gap: 30px; grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .eventos-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; }
    .trabajaremos-box { flex-direction: column; padding: 30px; }
}

@media (max-width: 768px) {
    .beneficios-box { grid-template-columns: 1fr; }
    
    .seccion-respiracao { justify-content: center; align-items: flex-end; height: 450px; padding-bottom: 40px; }
    .caixa-texto-respiracao { text-align: center; margin-left: 0; padding: 0 15px; max-width: 95%; }
    .bg-respiracao { object-position: top right; }
    /* MUDANÇA AQUI: Gradiente no mobile também mais claro */
    .overlay-respiracao { background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%); }

    .anclas-row { flex-direction: column; gap: 30px; }
    .ancla-item::after, .ancla-item::before { display: none !important; } 
    .checklist { grid-template-columns: 1fr; }

    .footer-top-row { flex-direction: column; gap: 30px; }
    .footer-logo { order: -1; } 
    .footer-logo img { width: 180px; }
    .social-icons { justify-content: center; gap: 15px; }
    .social-icons a img { width: 40px; }
}

@media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .eventos-grid { grid-template-columns: 1fr; }
    
    .hero-subtitle { font-size: 1.1rem; padding: 0 10px; }
    .hero-small-text { padding: 0 20px; line-height: 1.5; white-space: normal; }
    
    .section-title { font-size: 2.2rem; }
    .main-title { font-size: 3.2rem; }
    .pre-title { font-size: 1.5rem; }
    .intro-container p { font-size: 1.15rem; }
    
    .seccion-respiracao { height: 400px; padding-bottom: 30px; } 
    #frase-mutavel { font-size: 1.35rem; padding: 0; }
    
    .tags-container { justify-content: center; }

    .btn-green-hero, .btn-outline { width: 100%; display: block; text-align: center; }
}