/* ==============================================
   VARIÁVEIS GLOBAIS E RESET
   ============================================== */
:root {
    /* Header Logo Control */
    --logo-large-width: 160px;
    --logo-small-width: 140px;
    --logo-mobile-width: 150px;
    
    --logo-large-x: 0px;
    --logo-large-y: 10px;
    --logo-large-scale: 1;
    
    --logo-small-x: 0px;
    --logo-small-y: 0px;
    --logo-small-scale: 1;
    
    --logo-mobile-x: 0px;
    --logo-mobile-y: 0px;
    --logo-mobile-scale: 1;

    /* Cores */
    --color-offwhite: #FDFDFD;
    --color-offwhite-alt: #FAFAFA;
    --color-bordo: #632333; /* Ajustado para parecer com a imagem */
    --color-text-dark: #2C2C2C;
    --color-cinza: #5A5A5A;
    --color-cinza-claro: #E5E5E5;
    --color-transparent: transparent;
    
    /* Fontes */
    --font-main: 'Work Sans', sans-serif;
    --font-title: 'Lora', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-offwhite);
    color: var(--color-cinza);
    overflow-x: hidden;
}

/* ==============================================
   TOP BAR (HUB SEO)
   ============================================== */
.ah-topbar {
    position: relative;
    z-index: 9999;
    background-color: var(--color-bordo);
    color: var(--color-offwhite);
    padding: 8px 0;
    font-size: 12px;
}
.ah-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ah-topbar-status {
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc; /* default */
}
.status-dot.open { background-color: #4CAF50; }
.status-dot.closed { background-color: #F44336; }

.status-text-wrapper {
    position: relative;
    cursor: help;
}
.status-text-wrapper:hover #hoursTooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ah-tooltip {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: -20px; /* Joga um pouco para a esquerda para cobrir o logo */
    margin-top: 15px;
    background-color: #fff;
    color: var(--color-text-dark);
    padding: 15px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    z-index: 10000;
}
.hours-day {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 12px;
}

.ah-topbar-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ah-topbar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ah-topbar-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.3);
}
.ah-topbar-link {
    color: var(--color-offwhite);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ah-topbar-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}
.ah-topbar-link:hover {
    color: #fff;
    transform: scale(1.05);
}

/* ==============================================
   EQUIPE
   ============================================== */
/* ==============================================
   EQUIPE
   ============================================== */
/* Reset de Proteção */
.ah-equipe-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estrutura Principal */
.ah-equipe-section {
    --color-bordo: #6B2737;
    --color-text-dark: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-transparent: transparent;

    display: block;
    width: 100%;
    background-color: #FFFFFF;
    padding: 40px 20px 100px 20px;
    overflow: hidden;
    font-family: 'Work Sans', sans-serif;
}

.ah-equipe-container {
    width: 100%;
    max-width: 1600px;
    /* Reduzido para centralizar melhor 2 cards */
    margin: 0 auto;
}

/* Cabeçalho da Seção */
.ah-equipe-header {
    text-align: center;
    margin-bottom: 60px;
}

.ah-equipe-title {
    font-family: 'Lora', serif;
    font-size: 36px;
    color: var(--color-bordo);
    font-weight: 400;
}

/* Grid da Equipe */
.ah-equipe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    justify-content: center;
    /* Centralizar os cards se houver espaço */
}

@media (min-width: 768px) {
    .ah-equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Cards Individuais */
.ah-equipe-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    gap: 25px;
}

@media (min-width: 500px) {
    .ah-equipe-card {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Coluna da Imagem */
.ah-equipe-img-col {
    flex: 0 0 100%;
    overflow: hidden;
}

@media (min-width: 500px) {
    .ah-equipe-img-col {
        flex: 0 0 45%;
        max-width: 220px;
    }
}

.ah-equipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.ah-equipe-card:hover .ah-equipe-img {
    transform: scale(1.05);
}

/* Coluna de Texto */
.ah-equipe-text-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.ah-equipe-name {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: var(--color-bordo);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}

.ah-equipe-bio {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link Ver Currículo */
.ah-equipe-link {
    font-size: 14px;
    color: var(--color-bordo) !important;
    font-weight: 500;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: opacity 0.3s ease, gap 0.3s ease;
    cursor: pointer;
}

.ah-equipe-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.ah-equipe-link:hover {
    opacity: 0.8;
    gap: 12px;
}

/* Animações Iniciais */
.ah-animating .ah-equipe-header,
.ah-animating .ah-equipe-card {
    opacity: 0;
    transform: translateY(30px);
}

.ah-animate.ah-equipe-header,
.ah-animate.ah-equipe-card {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */
.ah-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ah-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.ah-modal-content {
    background-color: var(--color-offwhite);
    margin: 15% auto;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.ah-modal.show .ah-modal-content {
    transform: translateY(0);
}

@media (min-width: 600px) {
    .ah-modal-content {
        flex-direction: row;
        margin: 5% auto;
    }
}

.ah-modal-close {
    color: var(--color-bordo);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.ah-modal-close:hover,
.ah-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.ah-modal-left {
    background-color: var(--color-bordo);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-offwhite);
}

@media (min-width: 600px) {
    .ah-modal-left {
        width: 40%;
    }
}

.ah-modal-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 600px) {
    .ah-modal-right {
        width: 60%;
    }
}

.ah-modal-title {
    font-family: 'Lora', serif;
    font-size: 28px;
    color: var(--color-bordo);
    margin-bottom: 20px;
}

.ah-modal-left h4 {
    font-family: 'Lora', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.ah-modal-right p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ==============================================
   HEADER
   ============================================== */
.ah-header {
    width: 100%;
    height: 120px;
    position: fixed; 
    top: var(--topbar-height, 0px);
    left: 0;
    background-color: transparent;
    transition: height 0.4s ease-in-out, top 0.4s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.ah-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bordo);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.ah-header.scrolled {
    height: 80px;
    top: 0; /* Cola no topo absoluto da tela ao rolar */
}
.ah-header.scrolled::before {
    transform: scaleY(1);
}

.ah-container {
    width: 100%;
    max-width: 1590px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ah-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.ah-logo-img {
    transition: all 0.4s ease-in-out;
    object-fit: contain;
}

.ah-logo-large {
    width: var(--logo-large-width);
    transform: translate(var(--logo-large-x), var(--logo-large-y)) scale(var(--logo-large-scale));
    opacity: 1;
    position: relative;
}
.ah-logo-small {
    width: var(--logo-small-width);
    opacity: 0;
    position: absolute;
    left: 0;
    pointer-events: none;
}
.ah-logo-mobile {
    display: none;
    width: var(--logo-mobile-width);
    position: relative;
}

.ah-header.scrolled .ah-logo-large { opacity: 0; pointer-events: none; }
.ah-header.scrolled .ah-logo-small { opacity: 1; pointer-events: auto; }

/* Navegação */
.ah-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 45px;
}
.ah-nav a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500; /* Letras mais grossas no estado inicial */
    color: var(--color-text-dark);
    position: relative;
    padding-bottom: 6px;
    transition: color 0.4s ease, font-weight 0.4s ease;
}
.ah-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; /* Linha mais grossa no estado inicial */
    bottom: 0;
    left: 0;
    background-color: var(--color-bordo);
    transition: width 0.4s ease-in-out;
}
.ah-nav a:hover::after, .ah-nav a.active::after { width: 100%; }

.ah-header.scrolled .ah-nav a { 
    color: var(--color-offwhite); 
    font-weight: 400; /* Letras mais finas no modo bordô */
}
.ah-header.scrolled .ah-nav a::after { 
    background-color: var(--color-offwhite); 
    height: 1px; /* Linha mais fina no modo bordô */
}

/* Menu Mobile Styles */
.ah-menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
}
.ah-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-bordo);
    transition: all 0.3s ease;
}
.ah-header.scrolled .ah-menu-toggle span { background-color: var(--color-offwhite); }

.ah-mobile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--color-offwhite);
    z-index: 99999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
}
.ah-mobile-overlay.active {
    transform: translateY(0);
    pointer-events: auto;
}
.ah-overlay-header {
    position: absolute; top: 0; left: 0; width: 100%; height: 100px;
    padding: 0 20px; display: flex; justify-content: flex-end; align-items: center;
}
.ah-menu-close {
    width: 45px; height: 45px; font-size: 35px; color: var(--color-bordo);
    background: none; border: none; cursor: pointer; display: flex; justify-content: center; align-items: center;
}
.ah-mobile-overlay ul {
    list-style: none; text-align: center; display: flex; flex-direction: column; gap: 40px;
}
.ah-mobile-overlay a { font-size: 20px; color: var(--color-bordo); text-decoration: none; }

@media (max-width: 991px) {
    .ah-nav { display: none; }
    .ah-menu-toggle { display: flex; }
    .ah-logo-large, .ah-logo-small { display: none !important; }
    .ah-logo-mobile { display: block; }
}

/* ==============================================
   HERO
   ============================================== */
.fb-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-offwhite);
    padding: 120px 0 60px 0;
    overflow: hidden;
}

.fb-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15; /* Sutil */
    pointer-events: none;
}
.fb-hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Foca mais na direita como no print */
    transform: scale(1.5); /* Adicionando o zoom solicitado */
}
/* Gradiente para suavizar a imagem vindo do canto superior esquerdo */
.fb-hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-offwhite) 15%, transparent 100%);
}

.fb-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.fb-hero-content {
    max-width: 600px;
}

.fb-hero-title {
    font-family: var(--font-title);
    color: var(--color-text-dark);
    font-size: clamp(40px, 5vw, 55px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}
.fb-hero-title em {
    color: var(--color-bordo);
    font-style: italic;
}

.fb-hero-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-bordo);
    margin: 30px 0;
}

.fb-hero-p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    max-width: 450px;
}

.fb-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fb-btn-primary {
    background-color: var(--color-bordo);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--color-bordo);
}
.fb-btn-primary:hover {
    background-color: #481924;
    border-color: #481924;
}

.fb-btn-outline {
    background-color: transparent;
    color: var(--color-bordo);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(99, 35, 51, 0.3);
    transition: all 0.3s ease;
}
.fb-btn-outline:hover {
    border-color: var(--color-bordo);
    background-color: rgba(99, 35, 51, 0.05);
}

/* ==============================================
   GERAL SEÇÕES
   ============================================== */
.fb-section-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fb-section-title {
    font-family: var(--font-title);
    color: var(--color-bordo);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
}
.fb-section-divider-center {
    width: 40px;
    height: 1px;
    background-color: var(--color-bordo);
    margin: 0 auto 60px auto;
}

/* ==============================================
   FORMAS DE ATUAR (TIMELINE)
   ============================================== */
.ah-atuacao-section {
    --color-bordo: #6B2737;
    --color-azul: #1D3557;
    --color-text-dark: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-transparent: transparent;

    display: block;
    width: 100%;
    min-width: 100%;
    padding: 0 20px;
    background-color: var(--color-transparent);
    overflow: hidden;
    position: relative;
    z-index: 5;
    /* Sombra para o hero parecer estar embaixo */
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.ah-atuacao-container {
    display: block;
    width: 100%;
    max-width: 1530px;
    margin: 0 auto;
}

/* Cabeçalho da Seção */
.ah-atuacao-header {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 100px;
}

.ah-atuacao-title {
    display: block;
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--color-bordo);
    margin-bottom: 20px;
    width: 100%;
}

.ah-atuacao-separator {
    width: 40px;
    height: 2px;
    background-color: var(--color-bordo);
    margin: 0 auto;
}

/* Grid de Passos (Mobile = Carrossel Horizontal) */
.ah-atuacao-steps {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    /* Esconder scrollbar nativa para visual mais limpo */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ah-atuacao-steps::-webkit-scrollbar {
    display: none;
}

.ah-step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    padding: 20px;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;

    /* Comportamento de Carrossel no Mobile */
    flex-shrink: 0;
    width: 80vw;
    max-width: 300px;
    scroll-snap-align: center;
}

.ah-step-card:hover {
    transform: translateY(-8px) !important;
    background-color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(107, 39, 55, 0.05);
}

.ah-step-card:hover .ah-step-icon svg {
    transform: scale(1.1);
}

/* Ícone */
.ah-step-icon {
    height: 60px;
    display: flex;
    align-items: flex-end;
    align-self: center;
    margin-bottom: 30px;
}

.ah-step-icon svg {
    width: auto;
    height: 100%;
    max-height: 50px;
    fill: none;
    stroke: var(--color-bordo);
    stroke-width: 1;
    transition: transform 0.4s ease;
}

/* Título do Card */
.ah-step-title {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-bordo);
    line-height: 1.3;
    margin-bottom: 15px;
    min-height: 78px;
    width: 100%;
}

.ah-step-title span {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

/* Texto Descritivo */
.ah-step-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Setas (Absolutas para alinhamento perfeito) */
.ah-step-arrow {
    display: none;
    color: var(--color-text-light);
}

.ah-step-arrow svg {
    stroke-width: 1;
    stroke: var(--color-text-light);
    width: 40px;
    height: 20px;
}

/* Animação */
.ah-animating .ah-step-card,
.ah-animating .ah-step-arrow {
    opacity: 0;
    transform: translateX(-30px);
}

.ah-animating .ah-step-arrow {
    transform: translate(-30px, -50%);
}

.ah-animate.ah-step-card {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ah-animate.ah-step-arrow {
    animation: slideInRightArrow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightArrow {
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* Responsividade (Desktop) */
@media (min-width: 992px) {
    .ah-atuacao-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .ah-step-card {
        padding: 30px 15px;
        flex: 1;
        max-width: none;
        width: auto;
    }

    .ah-step-arrow {
        display: block;
        position: absolute;
        left: 100%;
        top: 60px;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .ah-step-arrow:not(.ah-animate):not(.ah-animating) {
        transform: translate(-50%, -50%);
    }

    @keyframes slideInRightArrow {
        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }
}

/* ==============================================
   SERVIÇOS
   ============================================== */
.fb-servicos-wrapper {
    background-color: #FFFFFF;
    padding: 100px 0 60px 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.fb-servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 20px;
}

.fb-servico-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    border-right: 1px solid var(--color-cinza-claro);
    text-decoration: none; /* Para quando for transformado em link */
    transition: transform 0.3s ease;
}

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

.fb-servico-card:hover .fb-servico-icon {
    transform: scale(1.05);
}

/* O usuário pediu para usar as imagens da pasta imagens no card */
.fb-servico-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.fb-servico-title {
    font-family: var(--font-title);
    color: var(--color-bordo);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px;
}

.fb-servico-text {
    font-size: 13px;
    color: var(--color-cinza);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .fb-servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
    .fb-servico-card {
        border-right: none;
        padding: 0 15px;
    }
    /* Em duas colunas, o primeiro elemento ganha border-right, mas deixaremos sem borda no mobile pra simplificar */
}

@media (max-width: 767px) {
    .fb-servicos-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   DIVISÓRIA
   ============================================== */
.ah-divisoria-container {
    width: 100%;
    display: flex;
    align-items: flex-end; /* Alinha as linhas e o SVG pelo fundo */
    overflow: hidden; /* Impede vazamento em telas ultra pequenas */
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0; /* Remove ghost-spacing do HTML */
    gap: 0 !important; /* Força o Elementor a não colocar buracos entre os blocos */
    background-color: #FFFFFF; /* Fundo branco puro para fundir com a seção Equipe */
}

.ah-divisoria-container > div {
    margin: 0;
    padding: 0;
}

/* Linha Esquerda: Cálculo matemático para manter o centro do SVG em 25% da tela */
.ah-divisoria-left {
    flex-basis: calc(25% - 100px); 
    flex-grow: 0;
    flex-shrink: 1; /* Permite encolher no mobile */
    height: 2px;
    background-color: var(--color-bordo);
    min-width: 0;
    margin-right: -1px; /* Overlap milimétrico para conectar ao SVG */
    z-index: 1;
}

/* O Bloco do Desenho (SVG) */
.ah-divisoria-svg {
    width: 200px;
    height: 60px;
    flex-shrink: 0;
    display: block;
}

/* Linha Direita: Preenche todo o resto */
.ah-divisoria-right {
    flex-grow: 1; 
    height: 2px;
    background-color: var(--color-bordo);
    margin-left: -1px; /* Overlap milimétrico para conectar ao SVG */
    z-index: 1;
}

/* Estilização do Vetor */
.ah-divisoria-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==============================================
   AVALIAÇÕES
   ============================================== */
.ah-avaliacoes-section {
    display: block;
    width: 100%;
    /* margin-top: -100px para cobrir a logo free do Elfsight e padding-top para compensar o conteúdo */
    background-color: #FAFAFA; /* Offwhite para contrastar com a divisória e destacar os cards brancos */
    margin-top: -100px;
    padding: 100px 20px 100px 20px; 
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ah-avaliacoes-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Cabeçalho da Seção */
.ah-avaliacoes-header {
    text-align: center;
    margin-bottom: 60px;
}

.ah-avaliacoes-title {
    font-family: 'Lora', serif;
    font-size: 36px;
    color: var(--color-bordo);
    font-weight: 400;
    margin-bottom: 15px;
}

.ah-avaliacoes-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-bordo);
    margin: 0 auto;
}

/* Layout 1/3 Esq e 2/3 Dir */
.ah-avaliacoes-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center; /* Centraliza verticalmente a citação com o widget */
}

@media (min-width: 1024px) {
    .ah-avaliacoes-content {
        grid-template-columns: 1fr 2fr;
        gap: 80px; /* Muito espaço em branco para respirar */
    }
}

/* Coluna da Esquerda (Citação) */
.ah-avaliacoes-quote-col {
    text-align: center;
}

@media (min-width: 1024px) {
    .ah-avaliacoes-quote-col {
        text-align: left;
        padding-right: 20px;
    }
}

.ah-avaliacoes-quote {
    font-family: 'Lora', serif;
    font-size: 34px;
    color: var(--color-bordo);
    font-weight: 400;
    line-height: 1.35;
}

/* Coluna da Direita (Trustindex) */
.ah-avaliacoes-trustindex-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ah-trustindex-wrapper {
    width: 100%;
    min-height: 250px; /* Respiro seguro para quando o Elementor injetar o shortcode */
}

/* Rodapé interno (Ver todas as avaliações) */
.ah-avaliacoes-footer {
    text-align: center;
    margin-top: 15px;
}

@media (min-width: 1024px) {
    .ah-avaliacoes-footer {
        text-align: right; /* Alinha à direita acompanhando a estética da coluna de 2/3 */
    }
}

.ah-avaliacoes-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: var(--color-bordo) !important;
    font-weight: 500;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease, gap 0.3s ease;
}

.ah-avaliacoes-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.ah-avaliacoes-link:hover {
    opacity: 0.8;
    gap: 12px;
}

/* Sistema de Animação Seguro para Elementor */
.ah-animating .ah-avaliacoes-header,
.ah-animating .ah-avaliacoes-quote-col,
.ah-animating .ah-avaliacoes-trustindex-col {
    opacity: 0;
    transform: translateY(30px);
}

.ah-animate.ah-avaliacoes-header,
.ah-animate.ah-avaliacoes-quote-col,
.ah-animate.ah-avaliacoes-trustindex-col {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ==============================================
   GOOGLE REVIEWS DYNAMIC
   ============================================== */
.ah-reviews-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: #FAFAFA;
    padding: 15px 25px;
    border-radius: 0;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ah-summary-rating {
    font-size: 2.5rem;
    font-family: 'Lora', serif;
    color: var(--color-text-dark);
    line-height: 1;
}

.ah-summary-stars {
    display: flex;
    gap: 2px;
}

.ah-summary-stars svg {
    width: 20px;
    height: 20px;
}

.ah-summary-text {
    font-family: 'Work Sans', sans-serif;
    color: var(--color-text-light);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.ah-summary-text span {
    font-weight: 600;
    color: var(--color-text-dark);
}

.ah-reviews-carousel-wrapper {
    position: relative;
    width: 100%;
}

.ah-reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.ah-reviews-grid::-webkit-scrollbar {
    display: none;
}

.ah-review-card {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 0;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc(100% - 20px);
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .ah-review-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Botões do Carrossel */
.ah-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--color-text-dark);
}

.ah-carousel-btn:hover {
    background: var(--color-bordo);
    color: #FFFFFF;
    border-color: var(--color-bordo);
}

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

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

@media (max-width: 768px) {
    .ah-carousel-btn {
        display: none;
    }
}

.ah-review-card {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 0;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ah-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 39, 55, 0.08); /* Sombra bordo sutil */
    border-color: rgba(107, 39, 55, 0.2);
}

.ah-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ah-review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.ah-review-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ah-review-author {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.ah-review-time {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    color: #888;
}

.ah-review-stars {
    display: flex;
    gap: 2px;
}
.ah-review-stars svg {
    width: 14px;
    height: 14px;
    fill: #F4B400;
}

.ah-review-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==========================================
   Seção: Blog (Últimas Postagens)
   ========================================== */
.ah-blog-section {
    background-color: #FFFFFF;
    padding: 45px 20px 80px 20px;
    width: 100%;
    position: relative;
    border-top: 3px solid rgba(107, 39, 55, 0.4); /* Linha mais forte */
}

/* Efeito degradê superior (sombra suave bordô) */
.ah-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(107, 39, 55, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.ah-blog-container {
    max-width: 1530px;
    margin: 0 auto;
}

.ah-blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.ah-blog-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--color-bordo);
    margin-bottom: 15px;
}

.ah-blog-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.ah-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 40px;
}

/* Skeleton Loading Animation */
.ah-blog-skeleton {
    background: #EAEAEA;
    height: 400px;
    border-radius: 0px;
    animation: skeletonPulse 1.5s infinite ease-in-out;
}

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

.ah-blog-card {
    background-color: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ah-blog-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.ah-blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 230px;
    display: block;
    overflow: hidden;
}

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

.ah-blog-card:hover .ah-blog-img-wrapper img {
    transform: scale(1.05);
}

.ah-blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-bordo);
    color: #FFFFFF;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 12px;
    z-index: 2;
}

.ah-blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ah-blog-meta {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    color: #c995dec; /* Fallback do JSON, vou usar um tom de cinza neutro caso n exista */
    color: #888;
    margin-bottom: 10px;
}

.ah-blog-card-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ah-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ah-blog-card-title a:hover {
    color: var(--color-bordo);
}

.ah-blog-card-excerpt {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ah-blog-readmore {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--color-bordo);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.ah-blog-readmore:hover {
    opacity: 0.8;
}

/* Responsividade Blog */
@media (max-width: 1024px) {
    .ah-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ah-blog-grid {
        grid-template-columns: 1fr;
    }
    .ah-blog-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ==========================================
   Seção: CTA (Call to Action)
   ========================================== */
.ah-cta-wrapper {
    --largura-imagem-desktop: 35%;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-offwhite, #F9F8F6);
    overflow: hidden;
}

@media (min-width: 992px) {
    .ah-cta-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.ah-cta-image-col {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .ah-cta-image-col {
        width: var(--largura-imagem-desktop);
        height: auto;
        min-height: 500px;
    }
}

.ah-cta-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ah-cta-text-col {
    width: 100%;
    padding: 70px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .ah-cta-text-col {
        width: calc(100% - var(--largura-imagem-desktop));
        padding: 80px 5%;
    }
}

.ah-cta-content {
    max-width: 780px;
    width: 100%;
}

.ah-cta-heading {
    font-family: 'Lora', serif;
    font-size: 26px;
    color: var(--color-text-dark);
    font-weight: 400;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .ah-cta-heading {
        font-size: 30px;
    }
}

.ah-cta-line {
    width: 50px;
    height: 2px;
    background-color: var(--color-bordo);
    margin: 35px 0;
}

.ah-cta-desc {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ah-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bordo);
    color: #FFFFFF;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 40px;
    transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.ah-cta-btn:hover {
    background-color: #4d1c27;
    transform: translateY(-3px);
}

/* Animações CTA */
.ah-animating .ah-cta-content {
    opacity: 0;
    transform: translateX(40px);
}

.ah-animating .ah-cta-image-col {
    opacity: 0;
    transform: scale(0.95);
}

.ah-cta-content.ah-animate {
    animation: ctaFadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ah-cta-image-col.ah-animate-img {
    animation: ctaFadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes ctaFadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ctaFadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   Seção: Rodapé (Footer)
   ========================================== */
.ah-footer-section {
    display: block;
    width: 100%;
    background-color: var(--color-bordo, #6B2737);
    padding: 80px 20px 20px 20px;
    box-sizing: border-box;
}

.ah-footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1530px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ah-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.ah-footer-col-logo {
    padding-right: 0;
}

.ah-footer-logo {
    width: 220px;
    height: auto;
    margin-bottom: 25px;
    object-fit: contain;
}

.ah-footer-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F9F8F6;
    margin-bottom: 20px;
    text-transform: none;
}

.ah-footer-text,
.ah-footer-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #F9F8F6;
    text-decoration: none;
    margin: 0;
}

.ah-footer-link {
    transition: opacity 0.3s ease;
}

.ah-footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ah-spacing-top {
    margin-top: 15px;
}

.ah-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.ah-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9F8F6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ah-social-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.ah-social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.ah-footer-divider {
    width: 100%;
    height: 1px;
    background-color: #F9F8F6;
    opacity: 0.2;
    margin-bottom: 25px;
}

.ah-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.ah-footer-copy,
.ah-footer-dev {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #F9F8F6;
    opacity: 0.8;
    margin: 0;
}

.ah-dev-link {
    color: #F9F8F6;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ah-dev-link:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer Responsividade */
@media (min-width: 768px) {
    .ah-footer-col {
        align-items: flex-start;
        text-align: left;
    }

    .ah-footer-col-logo {
        padding-right: 20px;
    }

    .ah-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .ah-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .ah-footer-grid {
        grid-template-columns: 1.8fr 1.2fr 1.2fr 1.2fr auto;
        gap: 0;
    }

    .ah-footer-col {
        padding: 0 30px;
        border-right: 1px solid rgba(249, 248, 246, 0.15);
    }

    .ah-footer-col:first-child {
        padding-left: 0;
    }

    .ah-footer-col:last-child {
        padding-right: 0;
        border-right: none;
    }
}

/* ==========================================
   Botões Flutuantes (WhatsApp + Voltar ao Topo)
   ========================================== */
.ah-floating-btn {
    position: fixed;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ah-floating-btn:hover {
    transform: scale(1.1);
}

.ah-whatsapp-btn {
    bottom: 30px;
    right: 30px;
    background-color: var(--color-bordo);
    color: #F9F8F6;
}

.ah-back-to-top {
    bottom: 30px;
    left: 30px;
    background-color: #F9F8F6;
    border: 2px solid var(--color-bordo);
    color: var(--color-bordo);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ah-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.ah-back-to-top.visible:hover {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .ah-whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    .ah-back-to-top {
        bottom: 20px;
        left: 20px;
    }
    .ah-floating-btn {
        width: 50px;
        height: 50px;
    }
}
/* ==============================================
   PÁGINA EQUIPE (BEM)
   ============================================== */

:root {
    --ah-equipe-primary: #380210;
    --ah-equipe-primary-container: #541724;
    --ah-equipe-on-primary: #ffffff;
    --ah-equipe-secondary: #954456;
    --ah-equipe-surface: #fff8f5;
    --ah-equipe-surface-container-lowest: #ffffff;
    --ah-equipe-surface-container-low: #fbf2ed;
    --ah-equipe-surface-container: #f5ece7;
    --ah-equipe-on-surface: #1e1b18;
    --ah-equipe-on-surface-variant: #534344;
    --ah-equipe-outline: #867274;
    --ah-equipe-outline-variant: #d8c1c3;

    --ah-font-inter: 'Inter', sans-serif;
    --ah-font-garamond: 'EB Garamond', serif;
}

#ah-equipe-main {
    background-color: var(--ah-equipe-surface);
    color: var(--ah-equipe-on-surface);
    font-family: var(--ah-font-inter);
    font-size: 15px;
    line-height: 24px;
}

/* ==============================================
   HERO
   ============================================== */
.ah-equipe-hero {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background-color: var(--ah-equipe-surface);
}
@media (min-width: 768px) {
    .ah-equipe-hero {
        padding-top: 9.5rem;
    }
}

.ah-equipe-hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .ah-equipe-hero-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .ah-equipe-hero-container { padding: 0 2rem; }
}

.ah-equipe-hero-content {
    border-left: 2px solid rgba(56, 2, 16, 0.2);
    padding-left: 1rem;
    max-width: 48rem;
}
@media (min-width: 768px) {
    .ah-equipe-hero-content {
        border-left-width: 3px;
        padding-left: 1.5rem;
    }
}

.ah-equipe-hero-label {
    display: block;
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-secondary);
    margin-bottom: 0.5rem;
}

.ah-equipe-hero-title {
    font-family: var(--ah-font-garamond);
    font-size: 38px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.01em;
    color: var(--ah-equipe-primary);
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
    .ah-equipe-hero-title {
        font-size: 48px;
        line-height: 1;
    }
}
@media (min-width: 1024px) {
    .ah-equipe-hero-title {
        font-size: 60px;
        line-height: 1;
    }
}

.ah-equipe-hero-subtitle {
    font-family: var(--ah-font-garamond);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.375;
    color: var(--ah-equipe-on-surface-variant);
}
@media (min-width: 768px) {
    .ah-equipe-hero-subtitle {
        font-size: 24px;
    }
}

/* ==============================================
   PROFILES
   ============================================== */
.ah-equipe-profiles {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--ah-equipe-surface);
}
@media (min-width: 768px) {
    .ah-equipe-profiles {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.ah-equipe-profiles-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
@media (min-width: 640px) { .ah-equipe-profiles-container { padding: 0 1.5rem; } }
@media (min-width: 768px) { .ah-equipe-profiles-container { gap: 3.5rem; } }
@media (min-width: 1024px) { .ah-equipe-profiles-container { padding: 0 2rem; } }

.ah-profile-card {
    background-color: var(--ah-equipe-surface-container-lowest);
    border: none; /* outline-variant/30 */
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .ah-profile-card {
        flex-direction: row;
        align-items: stretch;
    }
    .ah-profile-card.ah-profile-card--reverse {
        flex-direction: row-reverse;
    }
    
}

.ah-profile-img-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 20rem;
    background-color: var(--ah-equipe-surface-container);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (min-width: 640px) { .ah-profile-img-wrapper { height: 24rem; } }
@media (min-width: 768px) {
    .ah-profile-img-wrapper {
        width: 45%; /* Ligeiramente mais largo que 1/4 (25%) para acomodar melhor a imagem */
        height: auto;
    }
}

.ah-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ah-profile-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(56, 2, 16, 0.1), transparent, transparent);
}
@media (min-width: 768px) { .ah-profile-img-overlay { display: none; } }

.ah-profile-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
@media (min-width: 768px) { .ah-profile-content { padding: 2rem; } }
@media (min-width: 1024px) { .ah-profile-content { padding: 2.5rem; } }

.ah-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ah-profile-badge-line {
    height: 1px;
    width: 1.25rem;
    background-color: var(--ah-equipe-secondary);
}

.ah-profile-badge-text {
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-secondary);
}

.ah-profile-name {
    font-family: var(--ah-font-garamond);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.015em;
    color: var(--ah-equipe-primary);
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .ah-profile-name { font-size: 30px; line-height: 36px; } }
@media (min-width: 1024px) { .ah-profile-name { font-size: 36px; line-height: 40px; } }

.ah-profile-bio {
    font-family: var(--ah-font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ah-equipe-on-surface-variant);
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .ah-profile-bio { font-size: 16px; } }

.ah-profile-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(216, 193, 195, 0.2);
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .ah-profile-meta { grid-template-columns: repeat(2, 1fr); } }

.ah-profile-meta-label {
    display: block;
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-outline);
    margin-bottom: 0.25rem;
}

.ah-profile-meta-value {
    font-family: var(--ah-font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--ah-equipe-on-surface);
}

.ah-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ah-font-garamond);
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--ah-equipe-primary);
    text-decoration: none;
    transition: color 150ms;
}
.ah-profile-link:hover { color: var(--ah-equipe-secondary); }
.ah-profile-link .material-symbols-outlined {
    font-size: 16px;
    transition: transform 200ms;
}
.ah-profile-link:hover .material-symbols-outlined { transform: translateX(4px); }
@media (min-width: 768px) { .ah-profile-link { font-size: 20px; } }


/* ==============================================
   FILOSOFIA (PILARES)
   ============================================== */
.ah-equipe-filosofia {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: rgba(251, 242, 237, 0.5); /* surface-container-low / 50 */
    border-top: 1px solid rgba(216, 193, 195, 0.2);
    border-bottom: 1px solid rgba(216, 193, 195, 0.2);
}
@media (min-width: 768px) {
    .ah-equipe-filosofia {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.ah-equipe-filosofia-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .ah-equipe-filosofia-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ah-equipe-filosofia-container { padding: 0 2rem; } }

.ah-equipe-filosofia-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem auto;
}
@media (min-width: 768px) { .ah-equipe-filosofia-header { margin-bottom: 3.5rem; } }

.ah-equipe-filosofia-label {
    display: block;
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-secondary);
    margin-bottom: 0.5rem;
}

.ah-equipe-filosofia-title {
    font-family: var(--ah-font-garamond);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ah-equipe-primary);
}
@media (min-width: 768px) { .ah-equipe-filosofia-title { font-size: 30px; } }
@media (min-width: 1024px) { .ah-equipe-filosofia-title { font-size: 36px; } }

.ah-equipe-filosofia-divider {
    width: 3rem;
    height: 2px;
    background-color: var(--ah-equipe-primary-container);
    margin: 1rem auto 0 auto;
}

.ah-equipe-filosofia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .ah-equipe-filosofia-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ah-equipe-filosofia-grid { grid-template-columns: repeat(3, 1fr); } }

.ah-filosofia-card {
    background-color: var(--ah-equipe-surface-container-lowest);
    padding: 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(216, 193, 195, 0.2);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
@media (min-width: 768px) { .ah-filosofia-card { padding: 2rem; } }

.ah-filosofia-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0;
    background-color: var(--ah-equipe-surface-container);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ah-equipe-primary);
    margin-bottom: 1.25rem;
}
.ah-filosofia-icon .material-symbols-outlined { font-size: 20px; }

.ah-filosofia-name {
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-primary);
    margin-bottom: 0.5rem;
}

.ah-filosofia-desc {
    font-family: var(--ah-font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ah-equipe-on-surface-variant);
}


/* ==============================================
   QUOTE
   ============================================== */
.ah-equipe-quote {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--ah-equipe-surface);
}
@media (min-width: 768px) {
    .ah-equipe-quote {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.ah-equipe-quote-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .ah-equipe-quote-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ah-equipe-quote-container { padding: 0 2rem; } }

.ah-quote-block {
    max-width: 56rem;
    margin: 0 auto;
    border-left: 3px solid var(--ah-equipe-primary-container);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: left;
}
@media (min-width: 768px) { .ah-quote-block { padding-left: 2rem; } }

.ah-quote-text {
    font-family: var(--ah-font-garamond);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--ah-equipe-primary);
}
@media (min-width: 640px) { .ah-quote-text { font-size: 24px; } }
@media (min-width: 768px) { .ah-quote-text { font-size: 28px; } }

.ah-quote-author {
    display: block;
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-outline);
    margin-top: 1rem;
    font-style: normal;
}


/* ==============================================
   OFFICES
   ============================================== */
.ah-equipe-offices {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--ah-equipe-surface-container-low);
}
@media (min-width: 768px) {
    .ah-equipe-offices {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.ah-equipe-offices-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .ah-equipe-offices-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ah-equipe-offices-container { padding: 0 2rem; } }

.ah-equipe-offices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .ah-equipe-offices-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 3rem;
    }
}

.ah-offices-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ah-offices-label {
    display: block;
    font-family: var(--ah-font-inter);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ah-equipe-secondary);
}

.ah-offices-title {
    font-family: var(--ah-font-garamond);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ah-equipe-primary);
}
@media (min-width: 1024px) { .ah-offices-title { font-size: 36px; } }

.ah-offices-desc {
    font-family: var(--ah-font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ah-equipe-on-surface-variant);
}
@media (min-width: 768px) { .ah-offices-desc { font-size: 16px; } }

.ah-offices-cta {
    padding-top: 0.75rem;
}

.ah-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background-color: var(--ah-equipe-primary-container);
    color: var(--ah-equipe-on-primary);
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-family: var(--ah-font-inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 150ms ease-out;
    width: 100%;
}
@media (min-width: 640px) { .ah-btn-primary { width: auto; } }
.ah-btn-primary:hover { background-color: var(--ah-equipe-primary); }
.ah-btn-primary:active { transform: scale(0.98); }

.ah-offices-img-col {
    width: 100%;
}

.ah-offices-img-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    aspect-ratio: 4/3;
    background-color: var(--ah-equipe-surface-container);
}

.ah-offices-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ah-offices-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    background-color: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.375rem 0.75rem;
    border-radius: 0;
    border: 1px solid rgba(216, 193, 195, 0.2);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ah-offices-badge-text {
    font-family: var(--ah-font-inter);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ah-equipe-primary);
    text-align: center;
}

