
   *{
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    margin:0;
    padding:0;

   }
     

body {
    color: #111;
    background-color: rgb(34, 34, 34);
    overflow-x: hidden;
}

/* ---------- Header moderno (Desktop) ---------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburguer-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffb400;
    border-radius: 2px;
    margin: 6px 0;
    transition: all 0.3s ease;
}

button {
    background-color: #ffb400;
    color: #111;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ffcc00;
    /* Ajuste: removendo font-size para evitar que o botão encolha ao passar o mouse */
    /* font-size: 0.85rem; */ 
}

.menu {
    display: flex;
    gap: 56px;
    text-align: center;
}

.menu a {
    color: #B8860B;
    text-decoration: none;
    font-weight: 700;
    padding: 4px 20px;
    transition: 0.19s;
    box-sizing: border-box;
}

.menu a:hover {
    color: #ffb400;
}

.logo-nome {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.logo-nome img {
    width: 120px;
    border-radius: 5px;
}

.logo-nome h1 {
    color: #ffb400;
    font-size: 1.2rem;
    line-height: 1.2;
}

.texto-inicial {
    background-image: url(img/capa\ inicio.png );
    background-size: cover;
    background-position: center;
    min-height: 400px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 200px 20px;
}

.texto-inicial p {
    font-size: 1rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 30px;
}

/* ---------- Caixa de textos (Seção Biografia) ---------- */
.caixa-textos {
    /* CORREÇÃO: Padding simétrico e equilibrado */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px; 
    background-color: #111;
    color: #fff;
    min-height: 400px;
    padding: 100px 10%; 
    text-align: left;
}

.caixa-textos-content {
    /* Ocupa a maior parte do espaço */
    flex: 1; 
    max-width: 60%; 
}

.caixa-textos-content p {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 35px;
    text-align: justify;
}

/* Imagem Thiago */
.caixa-imagens img,
.img-thiago {
    /* Garante que a imagem use apenas a parte dela no flexbox */
    max-width: 400px; 
    min-height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 0 0 80px 0;
    margin-left: 0; /* Limpando margens conflitantes */
    margin-top: 0; /* Limpando margens conflitantes */
    margin-right: 0;
    flex-shrink: 0;
    flex: 0 0 auto; 
}

/* ---------- Caixa de conteúdo (Produtos) - CORRIGIDO ---------- */
.caixa-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 150px 10%; 
    background-color: rgb(134, 134, 134); 
    color: #fff;
    text-align: left;
    /* ESSENCIAL: Inverte a ordem para o carrossel (imagem) ficar na direita */
    flex-direction: row-reverse; 
}

/* ---------- CARROSSEL RESPONSIVO (corrigido) ---------- */
.carousel-container {
 	 position: relative;
 	 overflow: hidden;
 	 width: 100%;
 	 max-width: 500px;
 	 aspect-ratio: 16 / 9; /* Mantém a proporção no desktop (você pode mudar para 4 / 3) */
 	 margin: 0 auto;
 	 border-radius: 10px;
 	 background: #f7f6f6;
}

.carousel-slide {
 	 display: flex;
 	 width: 100%; /* Largura total gerenciada PELO JAVASCRIPT (ex: 1000%) */
 	 height: 100%;
 	 transition: transform 0.6s ease-in-out;
}

.carousel-slide img,
.carousel-img {
 	 flex: 0 0 100%; 
 	 width: 100%;
 	 height: 100%;
     /* MUDANÇA: Usar 'contain' para evitar distorção e corte em todas as telas */
 	 object-fit: contain; 
 	 border-radius: 10px;
}

/* ---------- CONTROLES ---------- */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: rgb(19, 17, 17);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 50%;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* ---------- BOLINHAS ---------- */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ffb400;
    transform: scale(1.3);
}

/* ... Seu CSS anterior ... */

@media (max-width: 768px) {

    /* ... (outras regras mobile) ... */

    /* Regras específicas para o Carrossel (PRODUTOS) em Mobile */
    .carousel-container {
        height: 350px; 
        width: 90%;
        max-width: 450px; 
        margin: 30px auto 0;
        flex: none; 
    }
    
    /* REFORÇO CRUCIAL: Garante que o slide e a imagem usem 100% da largura do container */
    .carousel-slide {
        /* Certifica que o slide pai consegue ser largo o suficiente para todas as imagens */
        width: 100%;
    }
    
    .carousel-slide img,
    .carousel-img {
        /* Força a imagem a ocupar 100% do espaço de flex alocado a ela */
        flex: 0 0 100%;
        width: 100%; 
        object-fit: cover;
    }
    
    /* ... (outras regras mobile) ... */
}

/* ... Seu CSS restante ... */


h2#PRODUTOS,
#RESULTADOS h2,
#VIDEO h2,
#CONTATO h2,
#DUVIDAS h2 {
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}


h2#SOBRE,
h2#PRODUTOS {
    color: #fff;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    padding-top: 50px;
}

#RESULTADOS {
    /* ADICIONE ESTAS DUAS LINHAS: */
    position: relative; 
    overflow: hidden; 
    
    background-color: #000;
    color: #fff;
    padding: 60px 10%;
    text-align: center;
    border-top: 2.5px solid #ffb400;
    border-bottom: 2.5px solid #ffb400;
    /* Adicione um z-index para garantir que o conteúdo fique acima do fundo */
    z-index: 1; 
}
/* ---------- Pseudo-elemento para Fundo Desfocado ---------- */
/* ---------- Pseudo-elemento para Fundo Desfocado (CORREÇÃO DE MISTURA) ---------- */
/* ---------- Pseudo-elemento para Fundo Desfocado (QUADRICULADO) ---------- */
#RESULTADOS::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    
    /* NOVO BACKGROUND: Camada de sobreposição preta + Imagem */
    background: 
        /* 1. Camada de cor escura semi-transparente */
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        
        /* 2. A imagem original */
        url(img/resultados.jpeg); 
        
    /* MUDANÇA ESSENCIAL 1: Define o tamanho de cada "quadrado" */
    /* Use 200px, por exemplo. Ajuste este valor (largura e altura) para o tamanho desejado. */
    background-size: 500px 500px; 
    
    /* MUDANÇA ESSENCIAL 2: Garante que a imagem se repita (se repete por padrão, mas é bom especificar) */
    background-repeat: repeat; 
    
    background-position: center; /* Opcional: Garante que o padrão comece no centro */
    
    /* APLICAR O DESFOQUE (BLUR) */
    filter: blur(2px); 
}


#VIDEO {
    margin-top: 20px;
}

#VIDEO .video-container {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
}

#VIDEO video {
    width: 100%;
    height: 100%;
    /* Impede que o usuário interaja com o vídeo diretamente (clicar para pausar/reiniciar) */
    pointer-events: none;
}


/* ---------- Seção de Dúvidas (Acordeão) ---------- */

#DUVIDAS {
    background-color: rgb(34, 34, 34);
    color: #fff;
    padding: 60px 10%;
    text-align: center;
    border-bottom: 2.5px solid  #363434;
}

#DUVIDAS h2 {
    color: #ffb400;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #1a1a1a;
    color: #ffb400;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2a2a2a;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #111;
    color: #ccc;
    padding: 0 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}

/* ---------- Contato (Desktop) ---------- */
#CONTATO {
    text-align: left;
    color: #000;
    padding: 20px 10%;
    background: linear-gradient(#444141,#99aa16, #00090a);
    line-height: 2.5;
    font-size: 1.2rem;
    display: block;
}

#CONTATO h2 {
    color: #ffb400;
    margin-top: 0px;
}

#localização {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 2px;

    /* REGRAS DE POSICIONAMENTO ABSOLUTO/FLUTUANTE - MELHOR MANTER O LAYOUT FLUIDO */
    margin-left: auto;
    margin-right: 0;
    margin-top: -100px; /* Ajuste para evitar sobreposição */
    line-height: 1.5;
    text-align: right;
}

#localização strong {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.3rem;
    color: #000;
    /* Removido margin-right fixo */
    margin-right: 0;
}

#localização strong img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

#REDE-SOCIAL {
    text-align: right;
    margin-top: 10px;
    margin-right: 0; /* Removido margin-right fixo */
}

#REDE-SOCIAL img {
    width: 32px;
    height: 32px;
    margin-left: 10px;
    vertical-align: middle;
}

#rodape {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #fff;
}



/* ---------- Responsividade (Media Queries) ---------- */

/* Ajuste para tablets (tela média) */
@media (max-width: 992px) {
    .menu {
        gap: 25px;
    }
}

@media (max-width: 768px) {

    /* --- HEADER E MENU HAMBÚRGUER --- */
    .header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 15px;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    .logo-nome {
        order: 2;
        justify-content: flex-end;
        margin-top: 0;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        padding: 10px 0;
        text-align: left;
        order: 3;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        padding: 10px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu a:last-child {
        border-bottom: none;
    }

    .menu-toggle.active .hamburguer-line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburguer-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .hamburguer-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- FIM HEADER E MENU HAMBÚRGUER --- */

    /* [Outras Seções - Ajustes Mobile] */
    #DUVIDAS {
        padding: 40px 5%;
    }

    /* ESSENCIAL: Coloca as caixas em coluna (texto acima, imagem/carrossel abaixo) */
    .caixa-textos,
    .caixa-conteudo {
        gap: 30px;
        flex-direction: column; 
        text-align: center;
        padding: 60px 10%;
    }

    /* O conteúdo de texto ocupa 100% da largura em mobile */
    .caixa-textos-content,
    .caixa-conteudo .caixa-textos-content {
        flex: 1 1 100%;
        max-width: 100%; 
        text-align: center; /* Centraliza o texto do título da seção */
    }
    
    .caixa-textos-content p {
        text-align: justify; 
    }


    /* Imagem SOBRE e Carrossel em Mobile */
    .caixa-textos img,
    .caixa-conteudo img,
    .img-thiago {
        margin: 10px auto;
        width: 90%;
        max-width: 450px; 
        margin-left: auto;
        border-radius: 25px;
        min-height: auto;
        object-fit: contain;
        flex: none;
    }

    /* Regras específicas para o Carrossel (PRODUTOS) em Mobile */
    .carousel-container {
        height: 350px; 
        width: 90%;
        max-width: 450px; 
        margin: 30px auto 0;
        flex: none; 
    }
    .carousel-dots {
        bottom: 10px;
    }
    
    #CONTATO {
        padding-top: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #localização {
        margin-left: 0;
        margin-top: 30px;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    #localização strong {
        margin-right: 0;
        justify-content: center;
    }

    #REDE-SOCIAL {
        text-align: center;
        margin-right: 0;
        margin-top: 15px;
        width: 100%;
    }

    .logo-nome h1 {
        font-size: 1rem;
    }

}

@media (max-width: 420px) {
    .header h1 {
        font-size: 0.9rem;
    }

    .header {
        padding: 10px 15px;
    }
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgb(37, 173, 60);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}