: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 */
* { 
    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, h4, h5, h6 { 
    font-family: var(--font-serif); 
    color: var(--green-dark); 
    font-weight: 600; 
}

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%;
    gap: 20px;
    position: relative; /* Adicionado para referência no celular */
}

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

.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;
}

/* Oculta o título do header no computador para não duplicar com o hero */
@media (min-width: 993px) {
    .site-title {
        display: none;
    }
}

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); }

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;
}

.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; }

.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 STONES SECTION - NOVO ALINHAMENTO CENTRALIZADO  */
/* ==================================================== */
.hero-stones {
    position: relative;
    width: 100%;
    height: 700px; 
    max-height: 80vh; 
    background-image: url('../img/banner-metodo.jpg'); 
    background-size: cover;
    background-position: center center; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    padding-top: 0; 
}

.hero-stones-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: transparent; 
    z-index: 1;
}

.hero-stones-content {
    position: relative;
    z-index: 2;
    margin-top: -120px; 
    width: 100%;
}

.hero-site-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--green-dark);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pre-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: -5px;
    text-transform: uppercase;
    letter-spacing: 8px; 
}

.main-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 5.5rem); 
    font-weight: 600; 
    color: var(--green-dark); 
    line-height: 1.1;
    margin-bottom: 5px;
}

.ornament-hero { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 5px;
}

.ornament-hero .heart-icon { 
    width: 18px; 
    height: auto; 
    opacity: 0.8;
}

.post-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600; 
    color: #FFFFFF; /* COR ALTERADA PARA BRANCO AQUI */
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 5px;
}

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

/* ==================================================== */
/* 7 ANCLAS TIMELINE */
/* ==================================================== */
.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-serif);
    font-size: 2.5rem; 
    font-weight: 600;
    color: var(--green-dark); 
}

.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-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.ancla-item p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-gray);
    padding: 0 5px;
}

/* ==================================================== */
/* CAJA COMO TRABAJAREMOS */
/* ==================================================== */
.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-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.trabajaremos-text p {
    font-family: var(--font-sans);
    font-size: 1rem;
    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-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--green-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li img {
    width: 20px;
    height: auto;
}

/* ==================================================== */
/* FOOTER SIMPLE PADRÃO */
/* ==================================================== */
.footer-simple {
    background-color: var(--bg-cream);
    text-align: center;
    padding: 60px 0 40px 0;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.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.08); 
}

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

/* ========================================= */
/* MEDIA QUERIES (TABLET Y MÓVIL)            */
/* ========================================= */

@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 */
    .header-center {
        position: static;
        flex: none;
    }

    /* Movemos a regra de centralização DIRETO para o site-title */
    .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! */
    .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;
    }
    .desktop-nav.active { right: 0; }
    
    nav ul { flex-direction: column; align-items: center; gap: 25px; }
    
    .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); }

    .trabajaremos-box {
        flex-direction: column;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .logo img { height: 50px; width: 50px; } 
    .site-title { font-size: 0.95rem; letter-spacing: 1px; }

    .hero-stones { 
        height: 500px; 
        align-items: center; 
        padding-top: 0; 
        background-position: center;
    }
    
    .hero-stones-content { 
        margin-top: -60px; 
        width: 100%; 
    }
    
    .pre-title { font-size: 1rem; letter-spacing: 5px; margin-bottom: 0; } 
    .main-title { font-size: 3.5rem; line-height: 1; margin-bottom: 5px; }
    .post-title { font-size: 0.85rem; }

    .intro-calma { padding: 50px 0; }
    .intro-container p { font-size: 1.1rem; margin-bottom: 20px; }
    .intro-container .intro-bold { font-size: 1.25rem; margin-top: 30px; }
    
    .anclas-header { margin-bottom: 40px; }
    .anclas-title { font-size: 1.8rem; text-align: center; }
    .anclas-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .ancla-item::after, .ancla-item::before { display: none !important; } 
    
    .ancla-item {
        width: 100%;
        max-width: 320px;
    }
    .ancla-number::after { display: none; }

    .trabajaremos-section { padding: 20px 0 60px 0; }
    .trabajaremos-left { 
        flex-direction: column;
        text-align: center; 
        gap: 15px;
    }
    .brain-icon { width: 70px; }
    .trabajaremos-text h3 { font-size: 1.8rem; }
    .checklist { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }

    .footer-simple { padding: 40px 0 30px 0; }
    .footer-main-row {
        flex-direction: column;
        gap: 25px;
    }
    .footer-logo { order: -1; }
    .footer-logo img { width: 160px; }
    .social-icons a img { width: 35px; }
    .copyright { font-size: 0.85rem; padding: 0 15px; }
}

@media (max-width: 480px) {
    .site-title { font-size: 0.9rem; }
    .hero-stones { height: 450px; padding-top: 0; } 
    .hero-stones-content { margin-top: -50px; } 
    .pre-title { font-size: 0.85rem; letter-spacing: 4px; }
    .main-title { font-size: 3.2rem; }
    .trabajaremos-box { padding: 25px 20px; }
}

/* ==================================================== */
/* EFEITO DE RESPIRAÇÃO NO TEXTO */
/* ==================================================== */

body .intro-container p.intro-bold span.efecto-respiracion {
    color: #B5C9AC !important; 
    font-family: var(--font-serif) !important; 
    display: inline-block !important;
    white-space: nowrap !important;
    animation: pulso-real 3s ease-in-out infinite alternate !important;
}

@keyframes pulso-real {
    0% {
        opacity: 0.6;
        transform: scale(0.98);
        text-shadow: 0 0 0px rgba(181, 201, 172, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(181, 201, 172, 0.9);
    }
}