:root {
    --primary-color: #FF8A3D;
    --bg-dark: #050505;
    --bg-section: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #CCCCCC;
    --glass-bg: rgba(5, 5, 5, 0.95);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ================== Sistema de Grid ================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

/* ================== Header & Menu ================== */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
}

.header-container {
    width: 100%;
    max-width: 1440px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }

.header-btn {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.header-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.menu-toggle { display: none; }

/* ================== Hero Section & Carrossel ================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.carousel-container, .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 100%);
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
}

.headline {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight { color: var(--primary-color); }

.sub-headline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Controles do Carrossel */
.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: flex-end; /* Alinha os botões à direita do grid */
    gap: 15px;
    pointer-events: none; /* Permite clicar através da div container */
}

.carousel-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

/* ================== Botões ================== */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.pulse-effect { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(255, 138, 61, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 138, 61, 0); }
}

/* ================== Seção Sobre ================== */
.about-section {
    background-color: var(--bg-section);
    padding: 100px 0;
}
.about-container { text-align: center; }
.section-title { font-size: 1rem; color: var(--primary-color); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.about-subtitle { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; text-transform: uppercase; }
.about-text { font-size: 1.1rem; color: var(--text-gray); max-width: 800px; margin: 0 auto 40px auto; }
.btn-outline { border: 1px solid var(--text-white); color: var(--text-white); padding: 16px 40px; text-transform: uppercase; text-decoration: none; }
.btn-outline:hover { background: var(--text-white); color: var(--bg-dark); }

/* ================== Responsividade (Mobile Fix) ================== */
@media (max-width: 768px) {
    .container, .header-container { padding: 0 24px; }
    
    /* Correção do Menu Mobile */
    .menu-toggle { display: block; cursor: pointer; z-index: 1001; }
    .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--text-white); transition: 0.3s; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        border-left: 1px solid rgba(255,255,255,0.05);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; text-align: center; gap: 40px; margin-bottom: 40px; }
    
    /* Ajustes Hero Mobile */
    .headline { font-size: 2.2rem; margin-top: 60px; }
    .carousel-controls { bottom: 30px; justify-content: flex-start; }
}

/* ... [Mantenha as variáveis e o CSS do Header das respostas anteriores] ... */

/* ================== Hero Section & Imagens ================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.carousel-container, .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Tratamento da tag <img> para preencher toda a tela */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem cobrir o espaço sem distorcer */
    object-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
}

.headline {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight { color: var(--primary-color); }

.sub-headline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    pointer-events: none;
}

.carousel-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

/* ================== Faixa Laranja (Ticker / Marquee) ================== */
.ticker-section {
    width: 100%;
    background-color: var(--primary-color);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-top: 2px solid var(--bg-dark);
    border-bottom: 2px solid var(--bg-dark);
}

.ticker-wrap {
    display: flex;
    width: fit-content;
}

.ticker-move {
    display: flex;
    white-space: nowrap;
    animation: ticker-animation 25s linear infinite;
    align-items: center;
}

.ticker-move span {
    font-size: 18px;
    font-weight: 800;
    color: var(--bg-dark); /* Texto escuro contrastando com o fundo laranja */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-move span.dot {
    margin: 0 30px;
    font-size: 24px;
    opacity: 0.5;
}

@keyframes ticker-animation {
    0% { transform: translateX(0); }
    /* Move 50% para a esquerda. Como repetimos os itens no HTML, o loop será imperceptível */
    100% { transform: translateX(-50%); } 
}

/* ... [Mantenha as seções Sobre, Botões e Mobile do CSS anterior] ... */

/* ================== Galeria (Espaço & Equipe - Clean & Premium) ================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    overflow: hidden; /* Evita quebra de layout horizontal */
}

.gallery-header {
    margin-bottom: 50px;
}

.gallery-track-wrapper {
    width: 100%;
    /* Cálculo avançado: Alinha a 1ª foto exatamente com o texto do container (1440px), 
       mas permite que as outras fotos vazem pela direita da tela */
    padding-left: max(70px, calc((100vw - 1440px) / 2 + 70px));
}

.gallery-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Força o alinhamento perfeito de cada foto */
    scroll-behavior: smooth;
    padding-right: max(70px, calc((100vw - 1440px) / 2 + 70px)); /* Respiro no final do scroll */
    padding-bottom: 40px;
    
    /* Esconde a barra de rolagem (Cross-browser) */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 450px; /* Largura fixa no desktop */
    height: 550px;
    position: relative;
    scroll-snap-align: start; /* Ponto de ancoragem do snap */
    overflow: hidden;
    border-radius: 4px; /* Leve arredondamento para aspecto de luxo */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    filter: grayscale(60%) brightness(0.6); /* Mais dramático no estado inicial */
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1); /* Revela total nitidez e cor */
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 30px 40px 30px; /* Mais respiro superior para o gradiente */
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(255, 138, 61, 0.1) 60%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ================== Mobile ================== */
@media (max-width: 768px) {
    .gallery-track-wrapper { 
        padding-left: 24px; 
    }
    .gallery-track {
        gap: 15px;
        padding-right: 24px;
    }
    .gallery-item { 
        flex: 0 0 85vw; /* Deixa uma ponta da próxima foto visível, indicando o scroll */
        height: 480px; 
    }
    /* No mobile (sem mouse), os textos e cores ficam sempre visíveis */
    .gallery-item img {
        filter: grayscale(0%) brightness(0.8);
    }
    .gallery-info {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.6) 60%, transparent 100%);
        padding: 40px 20px 30px 20px;
    }
}

/* ================== Seção Experiência (Fundo Branco / Quebra Visual) ================== */
.experience-section {
    background-color: #FFFFFF; /* Quebra de cor solicitada */
    color: #050505; /* Texto escuro para contraste */
    padding: 120px 0;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title.dark-mode {
    color: #050505;
    opacity: 0.5; /* Suaviza o título da seção no fundo claro */
}

.experience-headline {
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    color: #050505;
    margin-top: 20px;
}

.experience-headline .highlight {
    color: var(--primary-color);
}

.experience-intro {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #050505;
}

.experience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-list li {
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333333;
}

/* Bullet minimalista laranja */
.list-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: rgba(255, 138, 61, 0.15); /* Fundo laranja translúcido */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.list-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

/* ================== Mobile ================== */
@media (max-width: 992px) {
    .experience-container {
        grid-template-columns: 1fr; /* Quebra para uma coluna no celular/tablet */
        gap: 50px;
    }
    
    .experience-headline {
        font-size: 2.2rem;
    }
}

/* ================== Galeria do Local (Mosaico Grid) ================== */
.venue-gallery {
    padding: 120px 0;
    background-color: var(--bg-dark); /* De volta ao Dark Luxury */
}

.text-center {
    text-align: center;
}

/* Configuração do Grid de Mosaico */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas padrão no desktop */
    grid-auto-rows: 300px; /* Altura padrão de cada linha */
    gap: 25px;
    margin-top: 60px;
}

.venue-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background-color: #111; /* Cor de fundo enquanto a imagem carrega */
}

/* Tamanhos Especiais do Mosaico */
.venue-wide {
    grid-column: span 2; /* Ocupa 2 colunas */
}

.venue-tall {
    grid-row: span 2; /* Ocupa 2 linhas de altura */
    height: 100%;
}

.venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    filter: grayscale(100%) brightness(0.7); /* EstiloDark Luxury inicial */
}

/* Efeito Hover Luxuoso */
.venue-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1); /* Revela a cor e brilho total */
}

/* Sobreposição com o Nome da Área */
.venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.venue-item:hover .venue-overlay {
    opacity: 1;
}

.venue-overlay span {
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
}

/* ================== Mobile/Tablet Galeria Local ================== */
@media (max-width: 992px) {
    .venue-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
        gap: 15px;
    }
    
    /* Reseta tamanhos especiais no mobile para não quebrar o grid */
    .venue-wide, .venue-tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    
    .venue-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
        grid-auto-rows: 250px;
    }
    
    .venue-wide, .venue-tall {
        height: 250px;
    }
    
    /* No mobile, mostramos as infos sempre */
    .venue-item img {
        filter: grayscale(0%) brightness(0.8);
    }
    .venue-overlay {
        opacity: 1;
        padding: 15px;
    }
}

/* ================== Seção Mindset (Fundo Branco / Quebra Visual) ================== */
.mindset-section {
    background-color: #F4F4F4; /* Quebra de cor para um tom off-white elegante */
    padding: 120px 0;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

.mindset-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Esquerda */
.mindset-headline {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.mindset-headline .text-dark {
    color: #050505;
}

.mindset-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mindset-list li {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mindset-icon {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 2px; /* Um quadrado minimalista, diferente do bullet redondo anterior */
    display: inline-block;
    transform: rotate(45deg); /* Transforma o quadrado em um losango elegante */
}

/* Direita */
.mindset-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid rgba(5, 5, 5, 0.1);
    padding-left: 60px;
}

.punchline {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: #050505;
    letter-spacing: -1px;
}

.punchline.highlight {
    color: var(--primary-color);
}

/* ================== Mobile Mindset ================== */
@media (max-width: 992px) {
    .mindset-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mindset-right {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(5, 5, 5, 0.1);
        padding-top: 40px;
    }
    
    .mindset-headline {
        font-size: 2rem;
    }
    
    .punchline {
        font-size: 2.8rem;
    }
}

/* ================== Seção CTA Planos (Sem Valores) ================== */
.cta-plans-section {
    background-color: var(--bg-dark); /* Retorno ao Dark Mode para contraste com a seção anterior */
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Efeito de luz de fundo (Glow radial sutil) */
.cta-plans-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.06) 0%, rgba(5,5,5,0) 60%);
    z-index: 0;
    pointer-events: none;
}

.cta-plans-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px; /* Container mais estreito para forçar a quebra de linha elegante do texto */
    margin: 0 auto;
}

.plans-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 20px 0 30px 0;
}

.plans-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* ================== Mobile CTA Planos ================== */
@media (max-width: 768px) {
    .cta-plans-section {
        padding: 90px 0;
    }
    
    .plans-headline {
        font-size: 2.5rem;
    }
    
    .plans-subheadline {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* ================== Seção Localidade ================== */
.location-section {
    padding: 120px 0;
    background-color: var(--bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.location-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.location-address, .location-contact {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.location-address strong {
    color: var(--text-white);
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 5px;
}

.location-map {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

/* ================== Footer ================== */
.main-footer {
    background-color: var(--bg-dark);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================== Botões Flutuantes ================== */
.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    border: none;
}

.whatsapp-btn {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.whatsapp-btn:hover {
    background-color: #ff9b57;
    transform: scale(1.1);
}

.scroll-top-btn {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(5px);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

/* ================== Mobile Responsivo ================== */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 300px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
}

/* ================== Seção Profissionais / Equipe (Fluida e Otimizada) ================== */
.professionals-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    overflow: hidden; /* Evita qualquer vazamento horizontal que "trave" a tela */
}

.gallery-header.text-center {
    text-align: center;
}

.professionals-grid {
    display: grid;
    /* Grid dinâmico: tenta encaixar 5, mas se a tela apertar, ele desce as fotos graciosamente */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 25px; 
    margin-top: 60px;
}

.prof-card {
    position: relative;
    height: 400px; /* Um pouco mais alto para as fotos não ficarem achatadas */
    border-radius: 6px; /* Borda levemente maior para um acabamento fino */
    overflow: hidden;
    cursor: pointer;
    background-color: #111;
    /* Sombras para dar profundidade e soltar o card do fundo escuro */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prof-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* O SEGREDO DA FLUIDEZ: Aceleração por Hardware */
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.prof-card:hover img {
    /* translateZ(0) força a GPU a renderizar, acabando com as "travadas" */
    transform: scale(1.08) translateZ(0); 
}

/* Textos da Equipe (Ocultos mas com transição suave caso você descomente o HTML) */
.prof-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px 20px;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, transparent 100%);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
}

.prof-card:hover .prof-info {
    transform: translateY(0);
    opacity: 1;
}

/* ================== Responsividade Suave ================== */
@media (max-width: 1200px) {
    .professionals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .professionals-section { padding: 80px 0; }
    .professionals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .prof-card { height: 320px; }
}

@media (max-width: 480px) {
    .professionals-grid {
        grid-template-columns: 1fr; 
    }
    .prof-card { height: 420px; }
}

/* ================== Ajustes de Contato com Ícones (Premium) ================== */

.location-socials {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza no Desktop pois a seção toda é centralizada */
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-icon {
    transition: var(--transition);
}

/* Efeito Hover Premium: Laranja + Glow */
.contact-link:hover {
    color: var(--text-white);
    background-color: rgba(255, 138, 61, 0.08);
    border-color: rgba(255, 138, 61, 0.3);
    box-shadow: 0 5px 20px rgba(255, 138, 61, 0.15);
}

/* Garante que o ícone mude de cor no hover do link */
.contact-link:hover .contact-icon {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .location-section {
        padding: 80px 0;
    }
    
    .location-headline {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .location-address Strong {
        font-size: 1.3rem;
    }
    
    .contact-link {
        font-size: 1.05rem;
        padding: 8px 15px;
        max-width: 100%;
        justify-content: center;
    }
}