 /* Variáveis de Cores e Estilo - Atualizado para Vermelho e Preto */
        :root {
            --primary: #E60000; /* Vermelho energético */
            --dark: #0d0d0d;    /* Fundo principal escuro */
            --darker: #000000;  /* Preto puro para contraste */
            --light: #f4f4f4;   /* Texto claro */
            --white: #ffffff;
            --gray: #1a1a1a;    /* Cinza muito escuro para cards */
            --font-main: 'Poppins', sans-serif;
            --transition: all 0.3s ease;
        }

        /* Reset Básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-main);
        }

        html {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden; /* Evita rolagem horizontal acidental */
        }

        h1, h2, h3 {
            text-transform: uppercase;
            font-weight: 800;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Botões */
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white); /* Texto branco para destacar no vermelho */
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            text-transform: uppercase;
            transition: var(--transition);
            border: 2px solid var(--primary);
            cursor: pointer;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--primary);
        }

        /* Títulos de Seção */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--white);
        }
        .section-title span {
            color: var(--primary);
        }

        section {
            padding: 5rem 10%;
        }

        /* --- Header / Navbar --- */
        header {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background: #111; /* Fundo escuro padrão do seu site */
            display: flex;
            flex-direction: column; /* Coloca a top-bar em cima e o nav-container embaixo */
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
            transition: var(--transition);
            box-sizing: border-box; /* CORREÇÃO: Garante que o header não vaze a tela */
        }

        /* Estilos da faixinha de cima */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 5%;
            background-color: var(--primary); /* Usa o vermelho padrão da academia */
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 500;
            width: 100%;
            box-sizing: border-box; /* CORREÇÃO */
        }

        .top-bar-info {
            flex: 1; /* Permite que a div se adapte ao espaço */
        }

        .top-bar-info i {
            margin-right: 5px;
        }

        .top-bar-social {
            flex-shrink: 0; /* Impede que os ícones sejam esmagados */
        }

        .top-bar-social a {
            color: var(--white);
            margin-left: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .top-bar-social a:hover {
            color: #111;
            transform: scale(1.1);
        }

        /* Contêiner que segura o Logo e os Links (Menu Antigo) */
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            width: 100%;
            box-sizing: border-box; /* CORREÇÃO */
        }

       .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            max-height: 50px; /* Ajuste este valor para deixar a logo maior ou menor */
            width: auto;      /* Mantém a proporção original da imagem */
            display: block;
        }

        /* Ajustes para o Celular */
        @media (max-width: 768px) {
            .logo img {
                max-height: 40px; /* Deixa a logo um pouquinho menor no celular para economizar espaço */
            }
        }
       
        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* --- Ajustes para o Celular --- */
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 5px;
                text-align: center;
                padding: 6px 10px;
            }
            
            .top-bar-info {
                width: 100%;
                font-size: 0.70rem; /* Diminuí um pouquinho para caber melhor */
                line-height: 1.5; 
                white-space: normal;
                word-wrap: break-word; /* Força a quebra do texto se for maior que a tela */
                padding: 0 5px;
            }

            .top-bar-social a {
                margin: 0 10px; 
                font-size: 1.2rem; /* Deixa os ícones um pouco maiores no celular pra facilitar o clique */ 
            }
        }

        /* --- Hero Section --- */
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1470&auto=format&fit=crop') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 130px;
            padding-bottom: 40px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .rating-badge {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 2rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(230, 0, 0, 0.4); /* Borda avermelhada translúcida */
        }

        .stars {
            color: var(--primary);
            white-space: nowrap; /* Impede que as estrelas quebrem de linha */
        }

        /* --- Sobre Nós --- */
        .sobre {
            background-color: var(--darker);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .sobre-img {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px; /* Garante uma altura mínima para as fotos não sumirem */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .slide-sobre {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Garante que a foto preencha o espaço sem amassar */
            opacity: 0; /* Começa invisível */
            transition: opacity 1s ease-in-out; /* O segredo do efeito suave de 1 segundo */
        }

        .slide-sobre.ativo {
            opacity: 1; /* Apenas a imagem com a classe 'ativo' aparece */
        }

        /* Ajuste de altura para o celular */
        @media (max-width: 768px) {
            .sobre-img {
                min-height: 300px;
            }
        }

        .sobre-img img {
            width: 100%;
            border-radius: 10px;
            border-left: 5px solid var(--primary);
            border-bottom: 5px solid var(--primary);
        }

        .sobre-texto ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .sobre-texto li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .sobre-texto li i {
            color: var(--primary);
            margin-top: 5px;
        }

        /* --- Serviços & Diferenciais --- */
        .grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .card {
            background-color: var(--gray);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }

        .card:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid var(--primary);
        }

        .card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .card h3 {
            margin-bottom: 1rem;
        }

        /* --- Avaliações --- */
        .avaliacoes {
            background-color: var(--darker);
        }

        .depoimento {
            background-color: var(--dark);
            padding: 2rem 2rem 2rem 3.5rem; /* Ajuste no padding esquerdo para aspas */
            border-radius: 10px;
            border: 1px solid var(--gray);
            position: relative;
        }
        .depoimento i.fa-quote-left {
            font-size: 2rem;
            color: rgba(230, 0, 0, 0.15); /* Aspas vermelhas translúcidas */
            position: absolute;
            top: 20px;
            left: 15px;
        }

        /* --- Galeria --- */
        .galeria-grid {
            display: grid;
            /* Aumentei o tamanho mínimo para as fotos terem mais destaque */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .galeria-grid img {
            width: 100%;
            /* Substitui o height por aspect-ratio. 4/3 cria um retângulo clássico de fotografia. 
               Se preferir fotos totalmente quadradas, troque para 1 / 1 */
            aspect-ratio: 4 / 3; 
            object-fit: cover;
            object-position: center; /* Garante que o foco do corte seja sempre o centro */
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.6); /* Adiciona uma sombra para dar profundidade */
            transition: var(--transition);
            cursor: pointer;
        }

        .galeria-grid img:hover {
            transform: scale(1.05);
            opacity: 0.8;
            z-index: 2;
            position: relative;
            box-shadow: 0 8px 25px rgba(230, 0, 0, 0.4); /* Sombra avermelhada no hover */
        }

        /* --- Lightbox / Modal de Imagem --- */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            overflow: hidden; /* CORREÇÃO: Impede qualquer barra de rolagem no modal */
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            width: 85vw; /* Trava a caixa da imagem em 85% da largura da tela */
            height: 85vh; /* Trava a caixa da imagem em 85% da altura da tela */
            object-fit: contain; /* Encaixa a foto perfeitamente dentro da caixa travada */
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
            animation: zoomIn 0.3s ease;
        }

        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 40px;
            color: var(--white);
            font-size: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            z-index: 2001;
        }

        /* Estilo das Setas */
        .prev-lightbox, .next-lightbox {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            padding: 15px;
            user-select: none;
            z-index: 2001;
        }

        .prev-lightbox { left: 5%; }
        .next-lightbox { right: 5%; }

        .close-lightbox:hover, .prev-lightbox:hover, .next-lightbox:hover {
            color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }
        
        .close-lightbox:hover {
            transform: scale(1.1);
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Ajustes ESPECÍFICOS para Celular */
        @media (max-width: 768px) {
            .lightbox-content {
                width: 95vw; /* No celular, a caixa ocupa 95% da largura */
                height: 75vh;
                box-shadow: none;
            }
            
            .prev-lightbox, .next-lightbox {
                font-size: 24px;
                padding: 12px 15px;
                background-color: rgba(0, 0, 0, 0.6);
                border-radius: 5px;
            }
            .prev-lightbox { left: 10px; }
            .next-lightbox { right: 10px; }

            .close-lightbox {
                top: 10px;
                right: 20px;
                font-size: 45px;
            }
        }
        
        /* --- Contato --- */
        .contato {
            background-color: var(--darker);
        }
        .contato-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .info-box {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-box i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-top: 5px;
            min-width: 25px; /* Mantém o ícone alinhado mesmo com texto grande */
            text-align: center;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        form input, form textarea {
            padding: 15px;
            border-radius: 5px;
            border: 1px solid transparent;
            background-color: var(--gray);
            color: var(--white);
            font-family: var(--font-main);
            transition: var(--transition);
            width: 100%; /* Garante que os inputs não vazem no mobile */
        }
        
        form input:focus, form textarea:focus {
            outline: none;
            border: 1px solid var(--primary);
            background-color: rgba(230, 0, 0, 0.05);
        }

        /* --- Footer --- */
        footer {
            background-color: #000;
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--gray);
        }

        /* --- Floating WhatsApp --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
            z-index: 1000;
            transition: var(--transition);
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }

        /* --- Responsividade (Foco nas correções Mobile) --- */
        @media (max-width: 768px) {
            section {
                padding: 4rem 5%; /* Reduz padding lateral para aproveitar mais a tela */
            }
            
            header {
                padding: 1rem 5%; /* Ajusta cabeçalho */
            }

            .nav-links {
                position: absolute;
                top: 100%; /* Cola exatamente abaixo do header, evitando buracos */
                left: -100%;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.8);
            }
            .nav-links.active {
                left: 0;
            }
            .menu-btn {
                display: block;
            }

            .sobre, .contato-container {
                grid-template-columns: 1fr; /* Força 1 coluna em telas menores */
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem; /* Reduz título principal */
            }
            
            .section-title {
                font-size: 2rem; /* Reduz subtítulos */
                margin-bottom: 2rem;
            }

            .rating-badge {
                flex-direction: column; /* Empilha as estrelas e o texto */
                text-align: center;
                padding: 15px;
            }

            .info-contato, .formulario-mapa {
                width: 100%;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 1.8rem;
            }
        }
        
        /* Ajuste extra para celulares bem pequenos */
        /* --- Seção Home (Hero) --- */
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 2rem;
            }
            .grid-cards {
                grid-template-columns: 1fr;
            }
        }
       
        .hero {
            padding-top: 130px;
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 160px;
            }
        }