/* Reset e Variáveis */
:root {
    --primary-color: #ffffff;
    --bg-dark: #000000;
    --text-color: #333333;
    --sidebar-width: 300px;
}

/* Forçar visibilidade das imagens globalmente para evitar conflitos */
.mosaic-item img, .carousel-slide img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #000000; /* Forçar fundo preto global */
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: #000000; /* Alterado de #f4f4f4 para #000000 */
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-dark);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}

.logo-area .main-logo {
    height: 70px;
    width: auto;
}

/* Sidebar Styles (Reconstruído completo) */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Escondido à direita */
    width: 300px;
    height: 100%;
    background-color: #000000;
    z-index: 2000; /* Acima do header (1000) */
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    border-left: 1px solid #222;
}

.sidebar.active {
    right: 0 !important;
    box-shadow: -5px 0 30px rgba(0,0,0,0.8);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.sidebar-logo img {
    max-height: 40px;
    width: auto;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.sidebar.active .sidebar-nav li {
    opacity: 1;
    transform: translateX(0);
}

/* Delay escalonado para itens do menu */
.sidebar.active .sidebar-nav li:nth-child(1) { transition-delay: 0.1s; }
.sidebar.active .sidebar-nav li:nth-child(2) { transition-delay: 0.2s; }
.sidebar.active .sidebar-nav li:nth-child(3) { transition-delay: 0.3s; }
.sidebar.active .sidebar-nav li:nth-child(4) { transition-delay: 0.4s; }
.sidebar.active .sidebar-nav li:nth-child(5) { transition-delay: 0.5s; }
.sidebar.active .sidebar-nav li:nth-child(6) { transition-delay: 0.6s; }

.sidebar-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
    border-bottom: 1px solid transparent;
}

.sidebar-nav a:hover {
    color: #877045; /* Dourado */
    padding-left: 10px;
    border-bottom-color: #222;
}

.hamburger-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1001; /* Ensure it's clickable */
    position: relative;
    padding: 10px; /* Increase click area */
}

.hamburger-btn:hover {
    color: #877045;
    transform: scale(1.1);
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 5px;
}

.close-btn:hover {
    color: #877045;
    transform: rotate(90deg);
}

/* Overlay removido
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(3px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
*/

/* Hero Section Styles (Ajustado para Referência Visual) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('https://retratos.felipezidane.com.br/wp-content/uploads/2026/01/foto-zidane.webp');
    background-size: cover;
    background-position: center left; /* Foco no sujeito à esquerda */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Conteúdo alinhado à direita */
}

/* Overlay gradiente focado na direita para legibilidade do texto */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente transparente na esquerda (sujeito) e escuro na direita (texto) */
    /* Ajustado para deixar a foto mais limpa e concentrar o escuro na direita */
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Garante que o conteúdo fique à direita */
}

.hero-content {
    max-width: 550px; /* Largura controlada */
    text-align: center; /* Texto centralizado dentro do bloco */
    animation: fadeInUp 1s ease-out;
    margin-right: 5%; /* Afastamento da borda direita */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza itens (como a linha e botão) */
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: none;
    position: relative;
    padding-bottom: 25px;
}

/* Linha Dourada Decorativa */
.hero-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #A0885C;
}

.hero-description {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Sombra para melhorar leitura */
}

.hero-description strong {
    color: #fff;
    font-weight: 700;
}

.description-main {
    margin-bottom: 20px;
}

.description-sub {
    margin-bottom: 40px;
    font-size: 1rem;
    color: #ddd;
}

.hero-cta {
    margin-top: 10px;
}

.hero-cta .cta-btn {
    border-radius: 50px; /* Botão Pill Shape */
    padding: 18px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(160, 136, 92, 0.4); /* Glow Dourado */
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-cta .cta-btn:hover {
    background-color: #bfa36f;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(160, 136, 92, 0.6);
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade Hero */
@media (min-width: 1024px) {
    .hero-section {
        background-size: contain; /* Imagem inteira no desktop */
        background-position: center bottom; /* Centraliza imagem na horizontal e alinha na base */
        background-color: #050505; /* Fundo escuro para completar */
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.6rem; /* Reduzido ainda mais para garantir 2 linhas */
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem; /* Reduzido para mobile */
        line-height: 1.4;
    }

    .description-sub {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-section {
        background-position: 70% center; /* Ajuste para focar melhor no mobile */
        justify-content: center; /* Centraliza conteúdo no mobile */
        align-items: center;
    }

    .hero-container {
        justify-content: center; /* Centraliza conteúdo no mobile */
        align-items: center;
    }

    .hero-content {
        margin-right: 0; /* Remove margem direita no mobile */
        padding: 0 20px; /* Adiciona padding lateral */
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-cta {
        margin-top: 10px;
        order: 99; /* Garante que o botão fique abaixo do texto */
    }

    /* Ajustes Seção Vídeo Mobile */
    .video-header-center .section-headline {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .video-footer-center .section-subheadline {
        font-size: 0.95rem;
    }

    /* Ajustes Seção Portfólio Mobile (Referências) */
    #section-saude .section-headline,
    #section-empresarial .section-headline {
        font-size: 1.5rem !important; /* Reduzido para garantir 2 linhas */
        line-height: 1.3;
        padding: 0 15px;
    }

    /* Ajustes Seção Bio Mobile (Quem é Felipe Zidane) */
    .bio-container {
        flex-direction: column;
        gap: 30px;
    }

    .bio-photo {
        width: 100%;
        max-width: 400px; /* Limitar largura para não ficar gigante */
        margin: 0 auto;
    }

    .bio-text {
        width: 100%;
        text-align: center;
    }

    .bio-text .section-headline {
        text-align: center;
    }

    .bio-text .section-headline::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Ajustes Headlines Específicos Mobile */
    .studio-video-headline {
        font-size: 1.3rem !important; /* Reduzido ainda mais */
        line-height: 1.3;
        padding: 0 10px;
    }

    .experience-headline {
        font-size: 1.5rem !important;
        line-height: 1.3;
        padding: 0 10px;
    }
}


/* Impact Section Styles (Reconstruído) */
.impact-section {
    padding: 80px 0;
    background-color: #000000;
    display: flex;
    align-items: center;
}

.impact-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.impact-left-col {
    flex: 1;
}

.impact-right-col {
    flex: 1;
}

.impact-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.impact-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #A0885C;
    margin-bottom: 20px;
}

.impact-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #cccccc;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #877045;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #6b5836;
}

/* Video Section (Reformatado - Tela Única) */
.video-section {
    padding: 30px 0; /* Espaçamento reduzido e fixo */
    height: auto; /* Remove altura forçada de 100vh */
    min-height: auto; /* Remove altura mínima excessiva */
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    display: flex; /* Flexbox para centralização */
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
}

/* Container interno para agrupar os elementos */
.video-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; /* Ajusta ao conteúdo */
    width: 100%;
}

.video-header-center {
    margin-bottom: 30px; /* Margem fixa em pixels */
}

.video-header-center .section-headline {
    text-align: center;
    margin: 0 auto 20px auto;
    font-size: 2.5rem; /* Ajuste de tamanho se necessário */
}

.video-container-center {
    width: 80%; /* Largura relativa */
    max-width: 800px;
    margin: 0 auto 30px auto; /* Margem fixa em pixels */
    position: relative;
    padding-bottom: 45%; /* Mantém proporção */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid #333;
    flex-shrink: 0; /* Evita que o vídeo encolha demais */
    transition: box-shadow 0.4s ease, border-color 0.4s ease; /* Transição suave para o glow */
}

/* Efeito Glow Dourado no Hover - Aplicado a todos os vídeos */
.video-container-center:hover {
    box-shadow: 0 0 25px rgba(135, 112, 69, 0.6), 0 0 50px rgba(135, 112, 69, 0.3);
    border-color: #877045;
}

.video-container-center iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Placeholder Styles */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

/* Mosaic Gallery Section (Nova) */
.mosaic-gallery-section {
    padding: 80px 0 0 0;
    background-color: #000000;
    /* Adicionar min-height para garantir que a seção ocupe espaço mesmo se vazia */
    min-height: 500px; 
    position: relative;
    z-index: 10;
}

.mosaic-grid {
    display: grid;
    /* 4 colunas por padrão */
    grid-template-columns: repeat(4, 1fr);
    /* Remover espaçamento */
    gap: 0;
    width: 100%;
    /* Permitir largura total */
    max-width: 100%;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer; /* Adicionado cursor pointer para indicar clicável */
    /* Remover aspect-ratio e usar padding-hack para compatibilidade total */
    /* aspect-ratio: 2 / 3; */
    background-color: #1a1a1a; /* Fundo cinza escuro para debug visual */
    border: none;
    border-radius: 0;
    opacity: 1 !important; /* Forçar visibilidade */
    transform: none !important;
}

/* Garante a proporção 2:3 (150% de altura) */
.mosaic-item::before {
    content: "";
    display: block;
    padding-bottom: 150%; 
}

.mosaic-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    /* Garantir visibilidade */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Efeito de zoom suave ao passar o mouse */
.mosaic-item:hover img {
    transform: scale(1.1); /* Aumentado para 1.1 para mais impacto */
    /* Remover opacidade reduzida se houver */
    opacity: 1;
}

/* Responsividade Mosaico */
@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em mobile para manter fotos grandes */
    }
}

.section-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Aumentado de 2.5rem */
    margin-bottom: 30px; /* Aumentado espaço para linha */
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none; /* Garantir que não force uppercase */
    
    /* Linha abaixo (copiado da hero) */
    position: relative;
    padding-bottom: 25px; 
    display: block; /* Mudar para block para garantir largura */
    width: 100%; /* Ocupar largura total */
    text-align: center; /* Centralizar texto e linha */
}

.section-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #877045; /* Cor dourada */
}

.section-subheadline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    color: #cccccc;
}

/* Bio Section (Quem é Felipe Zidane) */
.bio-section {
    padding: 100px 0; /* Aumentado de 40px */
    background-color: #000000; /* Preto opaco original */
    color: #ffffff;
    min-height: auto; /* Remover min-height: 100vh para permitir altura menor */
    display: flex;
    align-items: center;
}

.bio-section.bg-black {
    background-color: #000000; /* Mantém preto */
    box-shadow: none; /* Remove efeito de luz negra */
}

.bio-container {
    display: flex;
    align-items: center;
    gap: 50px; /* Reduzido de 60px */
    max-width: 1200px;
    margin: 0 auto;
}

.bio-photo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bio-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.bio-text {
    flex: 1.2;
}

.bio-text .section-headline {
    text-align: left;
    margin-bottom: 20px; /* Reduzido de 30px */
    color: #A0885C; /* Cor dourada solicitada */
}

.bio-text .section-headline::after {
    left: 0;
    transform: none;
}

.bio-text p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6; /* Reduzido de 1.8 para compactar texto */
    color: #cccccc;
    margin-bottom: 15px; /* Reduzido de 20px */
    font-weight: 300;
    text-align: justify;
}

/* Highlight Text on Scroll */
.highlight-text {
    transition: background-color 1s ease, color 1s ease;
    padding: 0 5px;
    border-radius: 4px;
    display: inline-block; /* Ensure padding works correctly */
}

.highlight-text.active {
    background-color: #A0885C;
    color: #fff;
    box-shadow: 0 0 10px rgba(160, 136, 92, 0.5);
}

/* --- RECONSTRUCTED STYLES (Restoring Missing Sections) --- */

/* Studio Section */
.studio-section {
    padding: 80px 0;
    background-color: #050505;
    color: #fff;
}
.studio-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #A0885C;
    margin-bottom: 20px;
}
.studio-subheadline {
    text-align: center;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}
.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
@media (min-width: 1200px) {
    .studio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.studio-card {
    background: #111;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.studio-card:hover {
    transform: translateY(-5px);
    border-color: #A0885C;
    box-shadow: 0 10px 25px rgba(160, 136, 92, 0.2);
}
.card-title {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3rem;
}
.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}
.studio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.studio-card:hover .studio-card-img {
    transform: scale(1.1);
}
.card-details ul {
    list-style: none;
    padding: 0;
}
.card-details li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #ccc;
    position: relative;
    padding-left: 0;
    line-height: 1.4;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}
.card-details li:last-child {
    border-bottom: none;
}
.card-details li::before {
    display: none;
}
.studio-location {
    text-align: center;
    color: #A0885C;
    font-size: 1.1rem;
    margin-top: 30px;
    font-weight: 500;
}

/* Studio Video Section */
.studio-video-section {
    padding: 60px 0;
    background-color: #000;
    text-align: center;
}
.studio-video-headline {
    color: #fff;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #080808;
    overflow: hidden;
}
.reviews-container-split {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* Mask para suavizar as bordas */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 10px 0;
}
/* Animação para Esquerda */
.marquee-left .marquee-content {
    animation: marquee-left 120s linear infinite;
    display: flex;
    gap: 30px;
}
/* Animação para Direita */
.marquee-right .marquee-content {
    animation: marquee-right 120s linear infinite;
    display: flex;
    gap: 30px;
}

/* Pause on hover */
.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.review-card {
    width: 350px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    border-color: #877045;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #877045;
}
.review-name {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}
.review-stars {
    color: #A0885C;
    font-size: 0.8rem;
}
.review-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Investment Section */
.investment-section {
    padding: 80px 0;
    background-color: #000;
    display: flex;
    align-items: center;
    border-top: 1px solid #222;
}
.investment-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.investment-text {
    flex: 1;
    color: #fff;
}
.investment-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}
.investment-image {
    flex: 1;
}
.investment-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}
.investment-cta {
    margin-top: 30px;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: #000;
}
.experience-headline {
    text-align: center;
    color: #fff;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000, #0a0a0a);
    border-top: 1px solid #222;
}
.contact-headline {
    color: #A0885C;
    margin-bottom: 20px;
}
.multi-step-form {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.progress-container {
    margin-bottom: 30px;
}
.progress-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    position: relative;
    margin-bottom: 15px;
}
.progress-fill {
    height: 100%;
    background: #A0885C;
    width: 33%;
    transition: width 0.3s ease;
}
.progress-steps {
    display: flex;
    justify-content: space-between;
}
.step-indicator {
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.step-indicator.active {
    background: #A0885C;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 0.95rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #A0885C;
    outline: none;
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    background: #000;
    border-radius: 6px;
    border: 1px solid #333;
    transition: border-color 0.3s;
}
.radio-option:hover {
    border-color: #666;
}
.radio-option input {
    width: auto;
}
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.submit-btn {
    background-color: #25D366; /* Green for success/action */
    border: none;
}
.submit-btn:hover {
    background-color: #128C7E;
}

/* Footer */
.site-footer {
    padding: 50px 0 20px;
    background-color: #050505;
    border-top: 1px solid #222;
    margin-top: 50px;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.footer-logo img {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.footer-logo img:hover {
    opacity: 1;
}
.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s, transform 0.3s;
}
.footer-social a:hover {
    color: #A0885C;
    transform: translateY(-3px);
}
.footer-copyright {
    color: #555;
    font-size: 0.9rem;
    text-align: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border: 2px solid #333;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    border-radius: 4px;
}
.close-lightbox {
    position: absolute;
    top: -40px;
    right: -10px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}
.close-lightbox:hover {
    color: #A0885C;
}

/* Custom Modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.custom-modal-content {
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #A0885C;
    box-shadow: 0 0 30px rgba(160, 136, 92, 0.2);
}
.custom-modal-header {
    margin-bottom: 20px;
}
.custom-modal-header h3 {
    margin-top: 10px;
    color: #d4af37;
}
.close-custom-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}
.close-custom-modal:hover {
    color: #fff;
}
.custom-modal-body p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366; /* Whatsapp green */
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2500;
    display: none; /* Desktop: hidden */
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s;
}
.floating-cta:hover {
    transform: scale(1.05);
}

/* Responsividade Geral Adicional */
@media (max-width: 992px) {
    .investment-container {
        flex-direction: column;
    }
    .impact-container {
        flex-direction: column-reverse; /* Imagem acima no mobile? Ou abaixo. */
    }
}

@media (max-width: 768px) {
    .floating-cta {
        display: block; /* Show on mobile */
    }
    .impact-container {
        flex-direction: column;
        text-align: center;
    }
    .section-headline {
        font-size: 2.2rem;
    }
    .video-container-center {
        width: 95%;
    }
}
