:root {
    /* Paleta de Cores Atualizada */
    --bg-cream: #f3f0ed;          /* BEGE */
    --bg-beige: #f3f0ed;          /* Bege um pouco mais escuro para contraste (derivado) */
    
    /* Cores Principais */
    --accent-carmim: #33040d;     /* CARMIM - BORDÔ (Substitui Verde Escuro/Olive em destaques fortes) */
    --accent-roxo-claro: #66535c; /* ROXO CLARO ACINZENTADO (Substitui tons médios/secundários) */
    --accent-marrom: #341d1e;     /* MARROM AVERMELHADO (Texto principal/Base) */
    
    /* Mantendo compatibilidade com nomes antigos para refatoração suave, mas com novos valores */
    --accent-olive: #66535c;      /* Mapeando Roxo Claro para onde era Olive */
    --accent-dark-green: #33040d; /* Mapeando Carmim para onde era Verde Escuro */
    --text-soft-black: #341d1e;   /* Mapeando Marrom para Texto */
    --detail-gold: #66535c;       /* Mantendo Dourado como acento extra se necessário, ou substituir */
    --white: #FFFFFF;

    /* Tipografia */
    /* Royale não é Google Font padrão, usaremos uma serifada elegante similar (Playfair Display ou similar) ou import local se tiver */
    /* Montserrat é Google Font */
    --font-headline: 'Playfair Display', serif; /* Substituta temporária elegante para Royale */
    --font-body: 'Montserrat', sans-serif;

    /* Espaçamento */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-soft-black);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilitários */
.container {
    width: 100%;
    /* Padrão MacBook/Desktop médio para manter proporção visual controlada */
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative; /* Importante para posicionamento absoluto interno */
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px; /* Tracking leve */
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Botão Primário - PARA BACKGROUND CLARO NO HERO */
.btn-primary {
    background-color: var(--accent-carmim);
    color: var(--white);
    border: 1px solid var(--accent-carmim);
}

.btn-primary:hover {
    background-color: var(--accent-marrom);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Botão Secundário - OUTLINE ESCURO NO HERO */
.btn-secondary {
    background-color: transparent;
    color: var(--accent-marrom);
    border: 1px solid var(--accent-marrom);
}

.btn-secondary:hover {
    background-color: rgba(52, 29, 30, 0.1); /* Efeito glass escuro */
    color: var(--accent-marrom);
    border-color: var(--accent-marrom);
    transform: translateY(-2px);
}

/* Utilitários de Visibilidade */
.hero-logo-desktop {
    display: block;
    max-width: 180px; /* Ajuste conforme tamanho real da logo */
    margin-bottom: var(--spacing-lg);
    /* Removemos position absolute para garantir que ocupe espaço físico no grid e não seja sobreposta */
    position: relative; 
    margin-top: 20px; /* Espaço do topo */
    z-index: 100;
}

.hero-mobile-image-container {
    display: none; /* Esconde no desktop */
}

.hero-mobile-logo-wrapper {
    display: none; /* Esconde no desktop */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Ocupa a tela toda */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Imagem Desktop padrão */
    background-image: -webkit-image-set(url('../images/desktop hero aline v3-opt.webp') 1x, url('../images/desktop hero aline v3.png') 1x);
    background-image: image-set(url('../images/desktop hero aline v3-opt.webp') type('image/webp'), url('../images/desktop hero aline v3.png') type('image/png'));
    /* Essa imagem fica melhor com background-position direito, pois o foco está na direita */
    background-position: center right; 
    background-size: cover;
}

/* Overlay para melhorar legibilidade se necessário (opcional, ajustável) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Oculto o gradiente escuro pois o novo fundo é claro e usaremos texto escuro */
    background: none;
    z-index: 1;
}

/* Grid Layout para Hero */
.hero-content {
    position: relative;
    z-index: 2;
    /* Grid de duas linhas: Logo (auto) e Conteúdo (resto) */
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100vh; /* Ocupa a altura da tela */
    padding-bottom: var(--spacing-xl);
    width: 100%;
}

/* Área da Logo */
.hero-logo-wrapper {
    grid-row: 1;
    padding-top: 5cqw; /* Espaçamento dinâmico pelo topo */
    margin-bottom: 20px;
}

/* Ajuste específico para garantir que a logo fique no topo mas alinhada */
.hero-content .hero-logo-desktop {
    position: relative; /* Não absolute */
    top: 0;
    left: 0;
    margin: 0;
    /* Ajuste para não "vazar" muito se a tela for estreita */
    max-width: 180px; /* Fixo e seguro */
}

/* Área do Texto */
.hero-text-block {
    grid-row: 2;
    align-self: flex-start; /* Sobe um pouco o texto para não ficar muito em baixo */
    max-width: 50%; /* Evita que o texto encoste na pessoa do lado direito da imagem */
    margin-top: 20px;
}

.logo-signature {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--white); /* Força branco */
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.logo-signature .divider {
    color: var(--white);
    margin: 0 5px;
}

.hero .headline {
    font-size: 3.8rem; /* Um pouco maior */
    color: var(--accent-carmim);
    margin-bottom: var(--spacing-md);
    text-shadow: none;
}

.hero .subheadline {
    font-size: 1.2rem;
    color: var(--text-soft-black); /* Contraste na paleta */
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
    font-weight: 400;
    text-shadow: none;
}

.cta-group {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* 
   ============================
   SEÇÃO SOBRE (ABOUT)
   ============================
*/
.about {
    background-color: var(--bg-cream);
    padding: var(--spacing-xl) 0;
    color: var(--text-soft-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Coluna da Imagem */
.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave */
}

/* Frase "O autoconhecimento cura" flutuante - REMOVIDA */
/* .about-quote { ... } */

/* Coluna de Texto */
.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-dark-green);
    margin-bottom: var(--spacing-md);
    position: relative;
}

/* 
   REMOÇÃO DE ESTILOS ANTIGOS QUE CAUSAVAM LINHA DUPLICADA OU DESALINHADA
   A linha .section-title::after estava causando o traço na esquerda.
*/
.section-title::after {
    content: none; /* Remove o pseudo-elemento antigo */
}

/* 
   ============================
   SEÇÃO MÉTODO
   ============================
*/
.method {
    background-color: var(--bg-beige); 
    padding: var(--spacing-xl) 0;
    color: var(--text-soft-black);
}

.method-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

.method-header .section-title {
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

/* Antigo .method-header .section-title::after removido para evitar duplicidade */

/* Reinsere estilos que foram cortados acidentalmente na limpeza anterior */
.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-soft-black);
    margin-bottom: var(--spacing-sm);
}

.about-text strong {
    color: var(--accent-olive);
    font-weight: 700;
}

/* Cards de Estatísticas */
.stats-grid {
    display: flex;
    gap: 30px;
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: var(--spacing-lg);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--detail-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent-dark-green);
}

/* Responsividade Sobre */
@media (max-width: 900px) {
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow-x: hidden !important; /* Estrita proibição de scroll horizontal */
    }

    .about-content {
        order: 1 !important; /* Texto primeiro */
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 10px !important; /* Padding de segurança para não encostar na borda física */
    }

    .about-image-wrapper {
        order: 2 !important; /* Imagem depois do texto */
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 20px auto 0 !important;
        padding: 0 !important;
    }

    .about-img {
        width: 320px !important; /* Aumentado conforme solicitado */
        max-width: 90vw !important; /* Garante que não estoure em celulares minúsculos */
        height: 320px !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        transform: none !important;
    }

    .about-text {
        text-align: center !important;
        max-width: 100% !important;
        font-size: 0.95rem !important; /* Ajuste leve para caber melhor em telas pequenas */
        line-height: 1.6 !important;
    }

    .stats-grid {
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        width: 100% !important;
        border-top: 1px solid rgba(0,0,0,0.1);
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .stat-card {
        align-items: center !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.method-subheadline {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--accent-olive);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.method-intro {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Cards Grid */
.method-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: var(--spacing-xl);
    max-width: 900px; /* Limita largura para não ficar esticado demais */
    margin-left: auto;
    margin-right: auto;
}

/* CTA Container */
.services-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* 
   ============================
   SEÇÃO PLANO (DETALHES)
   ============================
*/
.plan-details {
    background-color: var(--bg-cream);
    padding: var(--spacing-xl) 0;
    color: var(--text-soft-black);
}

.plan-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

.plan-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-soft-black);
}

/* Grid de Cards do Plano */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.plan-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--detail-gold);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-olive);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-icon {
    background-color: var(--accent-olive);
    color: var(--white);
}

.custom-plan-icon {
    width: 48px;  /* Deixando maior (era 32px) */
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Efeito no ícone (imagem) quando o card passa o mouse:
   Aplica um invert ou brightness extremo para forçar a imagem original preta/escura a ficar branca */
.plan-card:hover .custom-plan-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

.plan-card-title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-soft-black);
}

.plan-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--accent-roxo-claro);
}

/* Responsividade Plano */
@media (max-width: 1024px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha tablet */
    }
}

@media (max-width: 600px) {
    .plan-grid {
        grid-template-columns: 1fr; /* 1 por linha mobile */
    }
}

.method-card {
    background-color: var(--white);
    padding: 0; /* Padding interno removido para imagem colar na borda se quiser, ou ajustado */
    border-radius: 8px;
    border: 1px solid var(--accent-roxo-claro);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Layout Horizontal no Desktop */
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden; /* Garante que imagem respeite border-radius */
}

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

.method-card-image-wrapper {
    width: 40%; /* Imagem ocupa 40% */
    flex-shrink: 0;
}

.method-card-img {
    width: 100%;
    height: 100%;
    min-height: 250px; /* Altura mínima para robustez */
    object-fit: cover; /* Cobre a área sem distorcer, mas pode cortar levemente. Se quiser inteira MESMO, usar contain ou tirar height fixa */
    display: block;
    margin: 0;
    border-radius: 0;
}

.method-card-content {
    padding: 40px;
    text-align: left;
    flex-grow: 1;
}

.method-card-title {
    font-size: 1.5rem;
    color: var(--text-soft-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.method-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-soft-black);
}

/* Footer da Seção (Badges + CTA) */
.method-footer {
    display: none; /* ESCONDENDO BADGES ANTIGOS POIS VIRARAM SEÇÃO NOVA */
    /* ... propriedades antigas mantidas mas ocultas ... */
}

.badges-title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    color: var(--accent-dark-green);
    margin-bottom: var(--spacing-md);
}

/* Inverte layout para o Card 2 */
.method-card-reverse {
    flex-direction: row-reverse;
}

/* Novo Badge Grid com Círculos */
.badges-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Aumentado para respirar */
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    cursor: default;
}

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

.badge-circle {
    width: 80px; /* Aumentado para destaque */
    height: 80px;
    background-color: var(--white);
    border: 1px solid var(--accent-roxo-claro);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-olive); /* Cor do ícone */
    transition: all 0.3s ease;
}

.badge-item:hover .badge-circle {
    border-color: var(--accent-olive);
    box-shadow: 0 6px 20px rgba(92, 107, 60, 0.15);
    color: var(--accent-dark-green);
}

.badge-circle svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.2px; /* Traço fino e elegante */
}

/* Removemos o pseudo-elemento decorativo antigo */
.badge-circle::after {
    display: none;
}

.badge-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-soft-black);
    margin-bottom: 4px;
}

.badge-sublabel {
    font-size: 0.85rem;
    color: var(--accent-roxo-claro); /* Cinza suave */
    font-weight: 400;
}

.method-card-step {
    font-family: var(--font-headline);
    font-size: 0.9rem;
    color: var(--detail-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Responsividade Badges */
@media (max-width: 900px) {
    .method-card-reverse {
        flex-direction: column; /* Volta ao normal no mobile */
    }

    .badges-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha no mobile */
        gap: 20px;
    }
}

.btn-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--accent-olive);
    color: var(--white);
    border-radius: 30px; /* Arredondado */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 107, 60, 0.3);
}

.btn-method:hover {
    background-color: var(--accent-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 107, 60, 0.4);
}

/* Responsividade Método */
@media (max-width: 900px) {
    .method-cards-grid {
        max-width: 100%;
    }

    .method-card {
        flex-direction: column; /* Volta para vertical no mobile */
        text-align: center;
    }

    .method-card-image-wrapper {
        width: 100%;
        height: auto;
    }

    .method-card-img {
        height: auto; /* Altura automática no mobile */
        max-height: 300px;
    }

    .method-card-content {
        padding: 30px 20px;
        text-align: center;
    }
}

/* 
   ============================
   SEÇÃO SERVIÇOS (EMBELEZAMENTO)
   ============================
*/
.bridge-quote {
    text-align: center;
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--detail-gold);
    padding: var(--spacing-xl) 20px;
    background-color: var(--white);
    font-style: italic;
    font-weight: 500;
}

.services {
    background-color: var(--white);
    padding: 0 0 var(--spacing-xl) 0;
    color: var(--text-soft-black);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

/* Separador de Título */
.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--detail-gold);
    margin: 10px auto 20px auto;
}

/* Separador de Título (Definitivo) */
.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--detail-gold);
    margin: 10px auto 30px auto; /* Centralizado */
    display: block;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-soft-black);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: var(--spacing-xl);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.service-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Quadrado */
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05); /* Zoom sutil no hover */
}

.service-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--accent-roxo-claro); /* Linha separadora fina */
    padding-top: 15px;
}

.service-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-roxo-claro);
    margin-bottom: 5px;
}

.service-name {
    font-family: var(--font-headline);
    font-size: 1.8rem; /* Fonte grande e elegante */
    font-weight: 400; /* Leve, estilo editorial */
    color: var(--text-soft-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade Serviços */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha no tablet */
        gap: 20px;
    }
    
    .bridge-quote {
        font-size: 1.5rem;
        padding: var(--spacing-lg) 20px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 por linha no mobile */
    }
}

/* 
   ============================
   SEÇÃO DEPOIMENTOS (FEEDBACKS)
   ============================
*/
.testimonials {
    background-color: var(--bg-cream); 
    padding: var(--spacing-xl) 0;
    color: var(--text-soft-black);
    width: 100%;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

/* Wrapper do Carrossel (Desktop) */
.testimonials-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    /* Esconde scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

/* Cards de Depoimento */
.testimonial-card {
    /* Desktop: 3 cards visíveis. (100% - 2 gaps de 20px) / 3 */
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    height: auto; /* Altura flexível, mas alinhada pelo flex do pai se stretch */
}

/* Cabeçalho do Card */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent-olive); 
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.meta {
    flex-grow: 1;
}

.name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-soft-black);
    margin-bottom: 2px;
}

.stars {
    color: var(--accent-roxo-claro); /* Dourado do Google */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.source {
    font-size: 0.7rem;
    color: var(--accent-roxo-claro);
    text-transform: uppercase;
    align-self: flex-start;
    margin-top: 5px;
}

/* Corpo do Card */
.card-body {
    flex-grow: 1;
    position: relative;
}

.text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-soft-black);
    font-style: italic;
}

/* Responsividade */
@media (max-width: 900px) {
    .testimonials-wrapper {
        flex-direction: column;
        overflow-x: visible; /* Sem scroll horizontal no mobile */
        gap: 20px;
    }

    .testimonial-card {
        width: 100%;
        flex: none;
        min-width: 0;
    }

    /* Oculta os cards 4 e 5 no mobile para mostrar apenas 3 */
    .testimonial-card:nth-child(n+4) {
        display: none;
    }
}

/* Galeria de Resultados */
.results-gallery-container {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05); /* Separador sutil opcional */
}

.results-title {
    font-family: var(--font-headline);
    font-size: 1.8rem; /* Menor que o H2 principal */
    color: var(--text-soft-black);
    text-align: center;
    margin-bottom: 30px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start; /* Permite alturas variadas sem esticar */
}

.result-item {
    border-radius: 8px;
    overflow: hidden;
    /* Sombras e fundo removidos para visual "cru" */
    box-shadow: none; 
    background-color: transparent;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    /* Sombra sutil apenas no hover para interatividade */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.result-img {
    width: 100%;
    height: auto; /* Altura automática baseada na proporção real */
    object-fit: contain; /* Garante que a imagem apareça inteira */
    display: block;
    /* aspect-ratio removido para não forçar corte */
}

/* Responsividade Galeria */
@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* 
   ============================
   SEÇÃO CONTATO E LOCALIZAÇÃO (MINIMALISTA)
   ============================
*/
.contact {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
    color: var(--text-soft-black);
}

/* Centralização do Título da Seção */
.contact .section-title {
    text-align: center;
    margin-bottom: 20px; /* Ajuste para o separador */
}

.contact .title-separator {
    margin: 0 auto 40px auto; /* Centraliza o separador */
}

/* Galeria de Fotos do Espaço */
.space-gallery {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.space-gallery.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.space-item {
    aspect-ratio: 4/3; /* Mais horizontal */
    overflow: hidden;
    border-radius: 4px;
    /* Sem sombra/borda por padrão */
}

.space-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.space-item:hover .space-img {
    transform: scale(1.05);
}

/* Grid de Informações e Mapa */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Mapa um pouco maior */
    gap: 60px;
    align-items: stretch; /* Estica para mesma altura */
}

/* Estilo Minimalista de Informações */
.contact-info.minimal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 0;
}



.info-label {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-olive);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-text {
    font-size: 1.2rem;
    color: var(--text-soft-black);
    line-height: 1.5;
}

/* Badge de Estacionamento */
.parking-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--accent-roxo-claro);
}

.minimal-icon.parking {
    width: 24px;
    height: 24px;
    background-color: var(--bg-cream);
    color: var(--text-soft-black);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Horários Grid */
.schedule-grid {
    display: grid;
    gap: 12px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--accent-roxo-claro);
    padding-bottom: 8px;
    color: var(--text-soft-black);
}

.schedule-item.closed {
    color: var(--accent-roxo-claro);
    border-bottom: none;
}

.schedule-item .day {
    font-weight: 600;
}

/* Links Minimalistas */
.contact-links-minimal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.minimal-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--text-soft-black);
    padding: 10px 0;
    transition: color 0.2s ease;
}

.minimal-link:hover {
    color: var(--accent-olive);
}

.minimal-link svg {
    color: var(--accent-olive); /* Ícones na cor da marca */
    transition: transform 0.2s ease;
}

.minimal-link:hover svg {
    transform: translateX(5px);
}

/* Mapa Minimalista */
.map-container.minimal-map {
    width: 100%;
    height: 100%;
    min-height: 500px; /* Altura garantida */
    border-radius: 0; /* Quadrado/Minimalista */
    /* Sem sombra */
    filter: grayscale(100%); /* Opcional: Mapa P&B para minimalismo? Vou deixar normal por enquanto ou remover se preferir */
    filter: none;
}

/* Responsividade */
@media (max-width: 900px) {
    .space-gallery.three-cols {
        grid-template-columns: 1fr; /* 1 por linha mobile */
        gap: 10px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container.minimal-map {
        min-height: 350px;
    }
}

/* 
   ============================
   RODAPÉ (FOOTER)
   ============================
*/
.main-footer {
    background-color: var(--accent-carmim); /* Cor escura solicitada */
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1); /* Logo branca */
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--accent-roxo-claro);
    letter-spacing: 1px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-carmim);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(52,29,30,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--accent-marrom);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        /* Imagem Mobile */
        background-image: url('../images/hero mobile 1 aline.png');
        background-position: center top; 
        background-size: cover;
        
        /* REMOVE FLEXBOX DO PARENT para evitar centralização vertical */
        display: block !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        
        /* Altura mínima para cobrir a tela, mas permite crescer */
        min-height: 100vh;
        height: auto;
        padding-bottom: 0; /* Remove padding inferior */
        position: relative;
    }

    /* Ajuste do overlay para mobile (fundo sólido ou gradiente vertical) */
    .hero::before {
        display: none;
    }

    .hero-content {
        /* FLUXO NATURAL DE BLOCOS (Sem Absolute, Sem Flex Centralizado) */
        position: relative !important; /* Volta ao fluxo normal */
        top: auto !important;
        left: auto !important;
        height: auto !important;
        min-height: auto !important;
        
        max-width: 100%;
        width: 100%;
        padding: 20px;
        padding-top: 30px !important; /* Espaço mínimo do topo */
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    /* Esconde wrapper da logo desktop para não ocupar espaço */
    .hero-logo-wrapper {
        display: none !important;
    }

    /* Reseta comportamento do bloco de texto */
    .hero-text-block {
        max-width: 100%;
        width: 100%;
        align-self: auto !important;
        grid-row: auto !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important; /* Espaço para a imagem abaixo */
    }

    /* Esconde logo desktop apenas (assinatura mantida se desejado, ou removida conforme abaixo) */
    .hero-logo-desktop {
        display: none;
    }
    
    /* Logo Mobile */
    .hero-mobile-logo-wrapper {
        display: block;
        margin-bottom: 30px;
    }
    
    .hero-mobile-logo {
        max-width: 150px;
        height: auto;
        display: block;
        margin: 0 auto;
        filter: brightness(0) invert(1); /* Logo branca */
    }

    /* Ajusta assinatura no mobile para aparecer se a logo não estiver */
    /* REMOVIDO: Assinatura de texto excluída conforme solicitado */


    /* Exibe imagem mobile */
    .hero-mobile-image-container {
        display: block;
        margin-top: 30px; 
        /* TÉCNICA FULL BLEED (Sangria total) */
        width: 100vw; /* Largura da viewport inteira */
        margin-left: -20px; /* Compensa o padding do pai (20px) */
        margin-right: -20px; /* Compensa o padding do pai (20px) */
        padding: 0;
        position: relative;
        left: 0;
        margin-bottom: -20px; /* Remove gap inferior compensando o padding do pai */
    }
    




    /* Gradiente de Transição (Fundo -> Imagem 2) removido a pedido */
    .hero-mobile-image-container::before {
        display: none;
    }

    .hero-mobile-img {
        width: 100%; 
        height: auto;
        display: block;
        border-radius: 0; 
        box-shadow: 0 -10px 30px rgba(0,0,0,0.1); /* Sombra invertida para cima */
    }

    .hero .headline {
        font-size: 2.2rem; /* Menor para mobile */
    }
    
    .hero .subheadline {
        font-size: 1rem;
    }

    .cta-group {
        justify-content: center;
        width: 100%;
    }
    
    .btn {
        width: 100%; /* Botões full width no mobile para facilitar o toque */
        margin-bottom: var(--spacing-sm);
    }
}

/* 
   ============================
   PÁGINA DE LINKS (BIO)
   ============================
*/
.links-page {
    background-color: var(--bg-cream);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.links-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.links-profile {
    margin-bottom: 30px;
}

.profile-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 3px solid var(--accent-olive);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajuste para focar no rosto se necessário */
    object-position: center top; 
}

.profile-name {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--accent-dark-green);
    margin-bottom: 5px;
}

.profile-bio {
    font-size: 1rem;
    color: var(--accent-roxo-claro);
    line-height: 1.4;
}

.links-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espaço entre ícone e texto */
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px; /* Botões arredondados estilo Linktree */
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.link-btn svg {
    flex-shrink: 0; /* Garante que o ícone não encolha */
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.link-btn.primary {
    background-color: var(--accent-olive);
    color: var(--white);
    border: 1px solid var(--accent-olive);
}

.link-btn.secondary {
    background-color: var(--white);
    color: var(--text-soft-black);
    border: 1px solid var(--accent-roxo-claro);
}

.link-btn.secondary:hover {
    border-color: var(--accent-olive);
    color: var(--accent-olive);
}

.links-footer {
    opacity: 0.7;
    font-size: 0.8rem;
}

.footer-logo-small {
    height: 25px;
    margin-bottom: 10px;
    filter: brightness(0); /* Logo preta */
    opacity: 0.5;
}

/* === FOOTER ROBUSTO === */
.main-footer {
    background-color: var(--accent-carmim); /* Usando a cor escura da paleta */
    color: var(--bg-cream);
    padding: var(--spacing-xl) 0 40px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

.footer-logo-img {
    height: 60px; /* Pouco maior */
    filter: brightness(0) invert(1); /* Deixa a logo branca */
    margin-bottom: 10px;
}

.footer-bio p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(243, 240, 237, 0.8); /* bege translúcido */
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: var(--bg-cream);
    font-family: var(--font-headline);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--bg-cream);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(243, 240, 237, 0.1);
    color: var(--bg-cream);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--accent-marrom);
    transform: translateY(-3px);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(243, 240, 237, 0.1);
    margin-bottom: 30px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(243, 240, 237, 0.6);
}

.footer-developer {
    font-size: 0.8rem;
}

.footer-developer span {
    color: var(--accent-roxo-claro);
}

/* Responsividade Footer */
@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(243, 240, 237, 0.1);
        padding-top: 40px;
    }
    
    .footer-copyright {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}
