/* ========================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores do template */
    --cor-primaria: #6b7456; /* rgb(107, 116, 86) */
    --cor-secundaria: #8B9475;
    --cor-fundo: #f5f1e8; /* rgb(245, 241, 232) */
    --cor-fundo-escuro: #2C2C24;
    --cor-texto: #3C3C34;
    --cor-texto-claro: #6B6B5C;
    --cor-branco: #FFFFFF;
    --cor-creme: #EDE8DC;
    --cor-dourado: #B8986C;
    --cor-terra-cota: #984216;
    --cor-terra-cota-rgb: rgb(152, 66, 22);

    /* Cores para decorações - pode trocar entre essas duas */
    /* --cor-decoracao: #8B9475;  Verde da paleta - OPÇÃO 1 (VISÍVEL) */
    --cor-decoracao: #C5C9B8; /* Tom bege/verde claro - OPÇÃO 2 (mais suave) */

    /* Tipografia */
    --fonte-titulo: 'Cormorant Garamond', serif;
    --fonte-corpo: 'Montserrat', sans-serif;

    /* Espaçamento */
    --espacamento-pequeno: 1rem;
    --espacamento-medio: 2rem;
    --espacamento-grande: 4rem;
    --espacamento-extra: 6rem;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--fonte-corpo);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    background-color: var(--cor-fundo);
    position: relative;
}


/* ========================================
   DECORAÇÕES ORGÂNICAS
   ======================================== */

/* Decoração de ondas à esquerda */
.wave-decoration-left {
    position: absolute; /* Mudado para fixed para não afetar layout */
    left: -2%;
    top: 15%;
    z-index: 10;
    color: var(--cor-decoracao);
    pointer-events: none;
    animation: floatWave 8s ease-in-out infinite;
    max-width: 200px; /* Limitar tamanho */
}

.wave-decoration-left svg {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.08));
    display: block;
    max-width: 100%;
    height: auto;
}

/* Efeito de textura nas ondas */
.wave-decoration-left path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Decoração de jiboia à direita */
.plant-decoration-right {
    position: absolute; /* Mudado para fixed para não afetar layout */
    right: 0;
    top: 0;
    z-index: 10;
    color: var(--cor-decoracao);
    pointer-events: none;
    animation: swayPlant 12s ease-in-out infinite;
    max-width: 220px; /* Limitar tamanho */
}

.plant-decoration-right svg {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.12));
    display: block;
    max-width: 100%;
    height: auto;
}

/* Animações sutis e orgânicas */
@keyframes floatWave {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-48%) translateX(-5px);
    }
}

@keyframes swayPlant {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(3px) rotate(1deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
    75% {
        transform: translateX(-3px) rotate(-1deg);
    }
}

/* Animação para os círculos individuais */
.wave-decoration-left circle {
    animation: pulseCircle 6s ease-in-out infinite;
}

.wave-decoration-left circle:nth-child(1) { animation-delay: 0s; }
.wave-decoration-left circle:nth-child(2) { animation-delay: 0.3s; }
.wave-decoration-left circle:nth-child(3) { animation-delay: 0.6s; }
.wave-decoration-left circle:nth-child(4) { animation-delay: 0.9s; }
.wave-decoration-left circle:nth-child(5) { animation-delay: 1.2s; }
.wave-decoration-left circle:nth-child(6) { animation-delay: 1.5s; }

@keyframes pulseCircle {
    0%, 100% {
        opacity: 0.5;
        stroke-width: 1.5;
    }
    50% {
        opacity: 0.7;
        stroke-width: 2;
    }
}

/* Animação para as folhas da jiboia */
.plant-decoration-right path[fill="currentColor"] {
    animation: leafBreath 8s ease-in-out infinite;
}

.plant-decoration-right path:nth-child(2) { animation-delay: 0s; }
.plant-decoration-right path:nth-child(3) { animation-delay: 1s; }
.plant-decoration-right path:nth-child(4) { animation-delay: 2s; }
.plant-decoration-right path:nth-child(5) { animation-delay: 3s; }
.plant-decoration-right path:nth-child(6) { animation-delay: 4s; }
.plant-decoration-right path:nth-child(7) { animation-delay: 5s; }

@keyframes leafBreath {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Animação para o menu mobile */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CONTAINER PRINCIPAL
   ======================================== */

.main-container {
    /* max-width: 1000px; */
    margin: 0;
    background-color: var(--cor-fundo);
    min-height: 100vh;
    position: relative;
    z-index: 2;
    overflow-x: hidden; /* Prevenir overflow horizontal */
    max-width: 100%;
}

/* Textura de papel natural com manchas sutis */
.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;

    /* Camada de textura com manchas */
    background-image:
        /* Manchas grandes e suaves */
        radial-gradient(circle at 20% 30%, rgba(107, 116, 86, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 116, 86, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 148, 117, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 15% 80%, rgba(107, 116, 86, 0.07) 0%, transparent 35%),
        radial-gradient(circle at 70% 20%, rgba(139, 148, 117, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(107, 116, 86, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(107, 116, 86, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 30% 50%, rgba(139, 148, 117, 0.04) 0%, transparent 35%),
        /* Manchas pequenas (grãos de papel) */
        radial-gradient(ellipse at 10% 25%, rgba(107, 116, 86, 0.035) 0%, transparent 4px),
        radial-gradient(ellipse at 35% 15%, rgba(107, 116, 86, 0.03) 0%, transparent 3px),
        radial-gradient(ellipse at 60% 40%, rgba(107, 116, 86, 0.04) 0%, transparent 4px),
        radial-gradient(ellipse at 25% 65%, rgba(107, 116, 86, 0.025) 0%, transparent 3px),
        radial-gradient(ellipse at 90% 50%, rgba(107, 116, 86, 0.032) 0%, transparent 3.5px),
        radial-gradient(ellipse at 50% 90%, rgba(107, 116, 86, 0.028) 0%, transparent 3px),
        radial-gradient(ellipse at 75% 35%, rgba(107, 116, 86, 0.03) 0%, transparent 3px),
        radial-gradient(ellipse at 20% 75%, rgba(107, 116, 86, 0.027) 0%, transparent 2.5px),
        /* Ruído de fundo (textura base) */
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 116, 86, 0.012) 2px, rgba(107, 116, 86, 0.012) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(107, 116, 86, 0.01) 2px, rgba(107, 116, 86, 0.01) 3px);

    background-size:
        100% 100%,
        100% 100%,
        80% 80%,
        60% 60%,
        70% 70%,
        65% 65%,
        75% 75%,
        85% 85%,
        200% 200%,
        150% 150%,
        180% 180%,
        220% 220%,
        160% 160%,
        190% 190%,
        170% 170%,
        210% 210%,
        100% 100%,
        100% 100%;

    background-position:
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        20% 30%,
        60% 70%,
        10% 80%,
        85% 20%,
        40% 60%,
        70% 45%,
        15% 55%,
        0 0,
        0 0;

    opacity: 0.2;
}

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */

.header {
    padding: var(--espacamento-medio) var(--espacamento-pequeno);
    text-align: center;
    border-bottom: 1px solid rgba(107, 116, 86, 0.2);
}

.logo {
    font-family: var(--fonte-titulo);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--cor-texto);
    margin-bottom: var(--espacamento-medio);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--fonte-corpo);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--cor-texto);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--cor-primaria);
}

.nav-link-cta {
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Botão Menu Mobile (Hamburguer) */
.menu-toggle {
    display: none; /* Oculto no desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--cor-primaria);
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 100;
}

.menu-toggle:hover {
    color: var(--cor-texto);
    transform: scale(1.1);
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Animação das linhas do hamburguer */
.menu-icon .line {
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Quando o menu está aberto, transforma em X */
.menu-toggle.active .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-link-cta:hover {
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
}

/* ========================================
   SEÇÃO HERO
   ======================================== */

.hero {
    position: relative;
    margin: var(--espacamento-medio) 0;
}

.hero-image {
    max-width: 1000px;
    position: relative;
    margin:auto;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--espacamento-medio);
}

.hero-title {
    font-family: var(--fonte-titulo);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--cor-branco);
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
    max-width: 800px;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1em;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 2;
}

/* ========================================
   FRASE IMPACTANTE
   ======================================== */

.quote-section {
    text-align: center;
    padding: var(--espacamento-grande) var(--espacamento-medio);
}

.quote-text {
    font-family: var(--fonte-titulo);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--cor-texto);
    line-height: 1.4;
}

.quote-text em {
    font-style: italic;
    color: var(--cor-primaria);
}

/* ========================================
   DIVISOR DE SEÇÃO
   ======================================== */

.section-divider {
    display: flex;
    justify-content: center;
    padding: var(--espacamento-medio) 0;
    /* margin: var(--espacamento-medio) 0; */
}

/* ========================================
   TÍTULOS DE SEÇÃO
   ======================================== */

.section-title {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    color: var(--cor-texto);
    margin-bottom: var(--espacamento-medio);
    letter-spacing: 0.05em;
}

/* ========================================
   SEÇÃO PRINCÍPIOS BRILHANTES
   ======================================== */

.principios-section {
    padding: var(--espacamento-grande) var(--espacamento-medio);
    background-color: var(--cor-creme);
}

.principios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--espacamento-medio);
    margin-top: var(--espacamento-medio);
}

.principio-card {
    text-align: center;
    padding: var(--espacamento-medio);
    background-color: var(--cor-fundo);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principio-icon {
    font-size: 3rem;
    margin-bottom: var(--espacamento-pequeno);
}

.principio-title {
    font-family: var(--fonte-titulo);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cor-primaria);
    margin-bottom: var(--espacamento-pequeno);
}

.principio-text {
    font-size: 1rem;
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ========================================
   SEÇÃO PRINCÍPIOS BRILHANTES - LINHA COM BOLINHAS
   ======================================== */

.principios-linha-section {
    padding: var(--espacamento-grande) var(--espacamento-medio);
    text-align: center;
    overflow: hidden; /* Evitar overflow horizontal */
}

.principios-linha {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; /* NÃO quebrar linha em desktop/notebook */
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--espacamento-pequeno);
}

.principio-palavra {
    font-family: var(--fonte-corpo);
    font-size: clamp(0.65rem, 1.8vw, 1.1rem); /* Tamanho fluido que se adapta */
    font-weight: 500;
    color: var(--cor-primaria);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap; /* Evita quebra de palavra individual */
}

.principio-palavra:hover {
    color: var(--cor-secundaria);
    transform: translateY(-2px);
}

.principio-separador {
    font-size: clamp(0.8rem, 2vw, 1.5rem);
    color: var(--cor-primaria);
    opacity: 0.6;
}

/* ========================================
   SEÇÃO SOBRE MIM
   ======================================== */

.sobre-section {
    max-width: 1000px;
    margin:auto;
    padding: var(--espacamento-grande) var(--espacamento-medio);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--espacamento-grande);
    align-items: center;
    margin-top: var(--espacamento-medio);
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.sobre-text p {
    font-size: 1.05rem;
    color: var(--cor-texto-claro);
    margin-bottom: var(--espacamento-pequeno);
    text-align: justify;
    line-height: 1.8;
}

/* ========================================
   SEÇÃO SOBRE MIM - NOVO MODELO (Linhas Conectoras)
   ======================================== */

.sobre-section-novo {
    /* Fallback color caso imagem não carregue */
    background-color: #984216;
    /* Imagem de fundo com configurações para preencher completamente */
    background-image: url('fundo_terracota_textura_1300x900.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Garantir que preencha 100% da largura da viewport */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: var(--espacamento-grande) var(--espacamento-medio);
    /* Conter overflow interno */
    overflow: hidden;
}

.sobre-novo-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-titulo-circulo {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.sobre-titulo-circulo h2 {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    font-weight: 500;
    color: var(--cor-fundo);
    /* color: var(--cor-texto); */
    letter-spacing: 0.05em;
}

/* Foto de perfil */
.sobre-foto-container {
    display: flex;
    justify-content: center;
    margin: var(--espacamento-medio) 0;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sobre-foto-container.animate {
    opacity: 1;
    transform: scale(1);
}

.sobre-foto {
    width: 330px;
    height: 330px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

/* Decoração fluida da foto - círculo pontilhado que não quebra */
.sobre-foto-decoracao {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 2px dashed rgba(245, 241, 232, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    animation: fadeInRotate 1s ease-out 0.5s forwards;
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(180deg) scale(1);
    }
}

.sobre-bloco {
    position: relative;
    z-index: 2;
    background-color: var(--cor-fundo);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    max-width: 450px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sobre-bloco.animate {
    opacity: 1;
    transform: translateY(0);
}

.sobre-bloco p {
    font-size: 1.05rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin: 0;
}

/* Decoração fluida dos blocos - linhas orgânicas e responsivas */
.sobre-bloco-decoracao {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: -1;
}

/* Posicionamento dos blocos para criar layout alternado */
.sobre-bloco-1 {
    margin-left: 0;
    margin-top: 2.5rem;
    transition-delay: 0.7s;
}

/* Decoração do bloco 1 - canto superior direito */
.sobre-bloco-1 .sobre-bloco-decoracao::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(245, 241, 232, 0.4);
    opacity: 0;
    animation: fadeInPulse 1s ease-out 0.9s forwards;
}

.sobre-bloco-1 .sobre-bloco-decoracao::after {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 241, 232, 0.25);
    opacity: 0;
    animation: fadeInPulse 1s ease-out 1.1s forwards;
}

.sobre-bloco-2 {
    margin-left: auto;
    margin-right: 0;
    margin-top: 2.5rem;
    transition-delay: 1s;
}

/* Decoração do bloco 2 - canto superior esquerdo */
.sobre-bloco-2 .sobre-bloco-decoracao::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(245, 241, 232, 0.4);
    opacity: 0;
    animation: fadeInPulse 1s ease-out 1.2s forwards;
}

.sobre-bloco-2 .sobre-bloco-decoracao::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 241, 232, 0.25);
    opacity: 0;
    animation: fadeInPulse 1s ease-out 1.4s forwards;
}

.sobre-bloco-3 {
    margin-left: 0;
    margin-top: 2.5rem;
    transition-delay: 1.3s;
}

/* Decoração do bloco 3 - canto superior direito */
.sobre-bloco-3 .sobre-bloco-decoracao::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(245, 241, 232, 0.4);
    opacity: 0;
    animation: fadeInPulse 1s ease-out 1.5s forwards;
}

.sobre-bloco-3 .sobre-bloco-decoracao::after {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 241, 232, 0.25);
    opacity: 0;
    animation: fadeInPulse 1s ease-out 1.7s forwards;
}

@keyframes fadeInPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   SEÇÃO MULHERES DA TERRA
   ======================================== */

.mulheres-terra-section {
    padding: 0 var(--espacamento-medio) var(--espacamento-grande) var(--espacamento-medio);
    background-color: var(--cor-fundo);
}

.mulheres-terra-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mulheres-terra-intro {
    text-align: center;
    margin-bottom: var(--espacamento-grande);
}

.mulheres-terra-texto {
    font-family: var(--fonte-titulo);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cor-texto);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.mulheres-terra-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--espacamento-medio);
    margin-top: var(--espacamento-medio);
}

.mulheres-terra-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.mulheres-terra-cta {
    display: inline-block;
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
    padding: 1rem 3rem;
    border-radius: 30px;
    font-family: var(--fonte-corpo);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(107, 116, 86, 0.25);
}

.mulheres-terra-cta:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 116, 86, 0.35);
}

/* ========================================
   SEÇÃO SERVIÇOS
   ======================================== */

.servicos-section {
    padding: var(--espacamento-grande) var(--espacamento-medio);
    background-color: var(--cor-creme);
}

.servicos-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: var(--espacamento-medio);
    font-style: italic;
}

.servicos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* Todos os botões com mesma altura */
    gap: 1.5rem;
    margin: var(--espacamento-medio) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.servico-btn {
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 30px;
    font-family: var(--fonte-corpo);
    font-size: clamp(0.75rem, 2vw, 0.9rem); /* Tamanho fluido */
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 116, 86, 0.2);
    /* Controle de largura para uniformidade */
    min-width: 200px;
    max-width: 280px;
    flex: 1 1 200px; /* Flexível mas com base mínima */
    /* Centralizar texto verticalmente */
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.servico-btn span {
    display: block;
    text-align: center;
}

.servico-btn:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 116, 86, 0.3);
}

.servico-detalhes {
    margin-top: var(--espacamento-medio);
    padding: var(--espacamento-medio);
    background-color: var(--cor-fundo);
    border-radius: 10px;
    display: none;
}

.servico-detalhes.ativo {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-content h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.8rem;
    color: var(--cor-primaria);
    margin-bottom: var(--espacamento-pequeno);
}

.servico-content p {
    font-size: 1.05rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin-bottom: var(--espacamento-pequeno);
}

/* ========================================
   SEÇÃO GALERIA/CARROSSEL
   ======================================== */

.galeria-section {
    max-width: 1000px;
    margin:auto;
    padding: var(--espacamento-grande) var(--espacamento-medio);
}

.carousel-container {
    position: relative;
    margin: var(--espacamento-medio) 0;
}

.carousel {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(107, 116, 86, 0.8);
    color: var(--cor-branco);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--cor-primaria);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--espacamento-pequeno);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--cor-texto-claro);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.ativo {
    opacity: 1;
    background-color: var(--cor-primaria);
}

/* ========================================
   SEÇÃO CALENDÁRIO
   ======================================== */

.calendario-section {
    padding: var(--espacamento-grande) var(--espacamento-medio);
    background-color: var(--cor-creme);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--espacamento-medio);
    margin-top: var(--espacamento-medio);
}

.evento-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--cor-fundo);
    padding: var(--espacamento-medio);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Se o evento for clicável (<a>), adicionar cursor pointer */
a.evento-card {
    cursor: pointer;
}

a.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

a.evento-card::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--cor-primaria);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a.evento-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

.evento-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: var(--cor-primaria); */
    background-color: var(--cor-terra-cota);
    color: var(--cor-fundo);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.evento-dia {
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.evento-mes {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.evento-info {
    flex: 1;
}

.evento-titulo {
    font-family: var(--fonte-titulo);
    font-size: 1.3rem;
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}

.evento-descricao {
    font-size: 0.95rem;
    color: var(--cor-texto-claro);
    margin-bottom: 0.5rem;
    max-width: 190px;
    line-height: 1.6;
}

.evento-horario {
    font-size: 0.9rem;
    color: var(--cor-texto);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.evento-local {
    font-size: 0.9rem;
    color: var(--cor-texto);
    font-weight: 500;
}

/* ========================================
   SEÇÃO BLOG/ARTIGOS
   ======================================== */

.blog-section {
    padding: var(--espacamento-grande) var(--espacamento-medio);
}

.blog-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: var(--espacamento-medio);
    font-style: italic;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--espacamento-medio);
    margin-top: var(--espacamento-medio);
}

.artigo-card {
    background-color: var(--cor-fundo);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.artigo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.artigo-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artigo-conteudo {
    padding: 1.5rem;
}

.artigo-titulo {
    font-family: var(--fonte-titulo);
    font-size: 1.4rem;
    color: var(--cor-primaria);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.artigo-resumo {
    font-size: 0.95rem;
    color: var(--cor-texto-claro);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.artigo-meta {
    font-size: 0.85rem;
    color: var(--cor-texto-claro);
    font-style: italic;
}

.loading {
    text-align: center;
    padding: var(--espacamento-grande);
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    font-style: italic;
}

/* ========================================
   FOOTER/CONTATO
   ======================================== */

.footer {
    padding: var(--espacamento-grande) var(--espacamento-medio);
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
    text-align: center;
}

.footer .section-title {
    color: var(--cor-fundo);
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: var(--espacamento-medio);
}

.contato-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: var(--espacamento-medio) 0;
}

.contato-link {
    color: var(--cor-fundo);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.contato-link:hover {
    color: var(--cor-dourado);
}

.footer-bottom {
    margin-top: var(--espacamento-medio);
    padding-top: var(--espacamento-medio);
    border-top: 1px solid rgba(245, 241, 232, 0.3);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 768px) {
    /* Header com flexbox para logo e botão na mesma linha */
    .header {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: var(--espacamento-medio);
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
        margin-bottom: 0;
        flex: 0 1 auto;
    }

    /* Mostrar botão hamburguer */
    .menu-toggle {
        display: block;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex: 0 0 auto;
    }

    /* Menu mobile - oculto por padrão */
    .nav {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        flex-basis: 100%; /* Ocupa linha inteira quando aberto */
        background-color: var(--cor-fundo);
        margin-top: var(--espacamento-pequeno);
        padding: var(--espacamento-pequeno) 0;
        border-top: 1px solid rgba(107, 116, 86, 0.2);
        animation: slideDown 0.3s ease-out;
    }

    /* Menu aberto */
    .nav.active {
        display: flex;
    }

    /* Links do menu mobile */
    .nav-link {
        padding: 1rem var(--espacamento-medio);
        border-bottom: 1px solid rgba(107, 116, 86, 0.1);
        text-align: center;
        transition: background-color 0.2s ease;
    }

    .nav-link:hover {
        background-color: rgba(107, 116, 86, 0.05);
    }

    .nav-link-cta {
        margin: var(--espacamento-pequeno) var(--espacamento-medio);
        border-bottom: none;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image img {
        height: 300px;
    }

    .principios-grid,
    .eventos-grid {
        grid-template-columns: 1fr;
    }

    /* ========================================
       PRINCÍPIOS - MOBILE: Um abaixo do outro
       ======================================== */
    .principios-linha {
        flex-direction: column; /* Mudar para coluna em mobile */
        flex-wrap: nowrap;
        gap: 0.8rem;
        align-items: center;
    }

    .principio-palavra {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .principio-separador {
        display: none; /* Esconder separadores em mobile */
    }

    /* ========================================
       SERVIÇOS - MOBILE: Layout centralizado
       ======================================== */
    .servicos-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .servico-btn {
        width: 100%;
        max-width: 320px;
        min-width: auto;
        white-space: normal; /* Permitir quebra em mobile se necessário */
        padding: 1rem 1.5rem;
        flex: 1 1 0px;
    }

    /* Novo modelo de Princípios - responsivo */
    .principios-circulo-container {
        padding: var(--espacamento-pequeno);
    }

    .principio-label {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    /* Novo modelo de Sobre Mim - responsivo */
    .sobre-titulo-circulo h2 {
        font-size: 1.8rem;
    }

    .sobre-foto {
        width: 200px;
        height: 200px;
        object-position: center top;
    }

    .sobre-foto-decoracao {
        width: 230px;
        height: 230px;
    }

    .sobre-bloco {
        max-width: 100%;
        padding: 1.2rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .sobre-bloco p {
        font-size: 1rem;
    }

    /* Reduzir tamanho das decorações em tablet */
    .sobre-bloco-1 .sobre-bloco-decoracao::before,
    .sobre-bloco-2 .sobre-bloco-decoracao::before,
    .sobre-bloco-3 .sobre-bloco-decoracao::before {
        width: 30px;
        height: 30px;
        top: -10px;
    }

    .sobre-bloco-1 .sobre-bloco-decoracao::before {
        right: -10px;
    }

    .sobre-bloco-2 .sobre-bloco-decoracao::before {
        left: -10px;
    }

    .sobre-bloco-3 .sobre-bloco-decoracao::before {
        right: -10px;
    }

    .sobre-bloco-1 .sobre-bloco-decoracao::after,
    .sobre-bloco-2 .sobre-bloco-decoracao::after,
    .sobre-bloco-3 .sobre-bloco-decoracao::after {
        width: 45px;
        height: 45px;
        top: -18px;
    }

    .sobre-bloco-1 .sobre-bloco-decoracao::after {
        right: -18px;
    }

    .sobre-bloco-2 .sobre-bloco-decoracao::after {
        left: -18px;
    }

    .sobre-bloco-3 .sobre-bloco-decoracao::after {
        right: -18px;
    }

    .carousel-slide {
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    /* Esconder decorações em tablets */
    .wave-decoration-left,
    .plant-decoration-right {
        opacity: 0.5;
        transform: scale(0.7);
        z-index: 3;
    }

    .wave-decoration-left {
        left: -2%;
        top: 10%;
    }

    .plant-decoration-right {
        right: -3%;
    }
}

@media (max-width: 480px) {
    :root {
        --espacamento-pequeno: 0.8rem;
        --espacamento-medio: 1.5rem;
        --espacamento-grande: 3rem;
    }

    /* Ajustar logo para telas pequenas */
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }

    .hero-image {
        height: 350px;
        width: 95%;
    }

    .artigos-grid {
        grid-template-columns: 1fr;
    }

    /* Novo modelo de Princípios - mobile pequeno */
    .principio-label {
        font-size: 9px;
        letter-spacing: 0.08em;
    }

    /* Novo modelo de Sobre Mim - mobile pequeno */
    .sobre-titulo-circulo h2 {
        font-size: 1.5rem;
    }

    .sobre-foto {
        width: 180px;
        height: 180px;
        border: 3px solid var(--cor-fundo);
        object-position: center top;
    }

    .sobre-foto-decoracao {
        width: 210px;
        height: 210px;
        border-width: 1.5px;
    }

    .sobre-bloco {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .sobre-bloco p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Reduzir ainda mais as decorações em mobile */
    .sobre-bloco-1 .sobre-bloco-decoracao::before,
    .sobre-bloco-2 .sobre-bloco-decoracao::before,
    .sobre-bloco-3 .sobre-bloco-decoracao::before {
        width: 25px;
        height: 25px;
        top: -8px;
    }

    .sobre-bloco-1 .sobre-bloco-decoracao::before {
        right: -8px;
    }

    .sobre-bloco-2 .sobre-bloco-decoracao::before {
        left: -8px;
    }

    .sobre-bloco-3 .sobre-bloco-decoracao::before {
        right: -8px;
    }

    .sobre-bloco-1 .sobre-bloco-decoracao::after,
    .sobre-bloco-2 .sobre-bloco-decoracao::after,
    .sobre-bloco-3 .sobre-bloco-decoracao::after {
        width: 38px;
        height: 38px;
        top: -15px;
    }

    .sobre-bloco-1 .sobre-bloco-decoracao::after {
        right: -15px;
    }

    .sobre-bloco-2 .sobre-bloco-decoracao::after {
        left: -15px;
    }

    .sobre-bloco-3 .sobre-bloco-decoracao::after {
        right: -15px;
    }

    /* Esconder completamente decorações em mobile */
    .wave-decoration-left,
    .plant-decoration-right {
        /* display: none; */
    }
}

/* ========================================
   LOADING OVERLAY (CMS)
   ======================================== */

.cms-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cor-fundo);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.cms-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cms-loading-flower {
    width: 80px;
    height: 80px;
    position: relative;
    animation: rotateFlower 3s ease-in-out infinite;
}

/* Animação de rotação fluida e orgânica */
@keyframes rotateFlower {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
}

/* Pétalas da mandala/flor */
.petal {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--cor-primaria);
    border-radius: 50% 0 50% 0;
    opacity: 0.7;
}

.petal:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: center 40px;
}

.petal:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: center 40px;
}

.petal:nth-child(3) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center 40px;
}

.petal:nth-child(4) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    transform-origin: center 40px;
}

.petal:nth-child(5) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    transform-origin: center 40px;
}

.petal:nth-child(6) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(225deg);
    transform-origin: center 40px;
}

.petal:nth-child(7) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(270deg);
    transform-origin: center 40px;
}

.petal:nth-child(8) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(315deg);
    transform-origin: center 40px;
}

.cms-loading-text {
    margin-top: 2rem;
    font-family: var(--fonte-corpo);
    font-size: 1rem;
    color: var(--cor-texto-claro);
    letter-spacing: 0.1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Esconder conteúdo principal enquanto carrega */
body.loading .main-container {
    opacity: 0;
    pointer-events: none;
}

body:not(.loading) .main-container {
    opacity: 1;
    transition: opacity 0.6s ease 0.2s;
}
