*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;  
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #1f1f3a;
    color: #fff;
    font-size: 16px;
}

header{
    position: fixed;
    top: 0;
    padding: 20px 20px;
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
    align-items: center; 
    z-index: 100;
    background: #2E7D8A;
    backdrop-filter: blur(10px);
    transition: height 0.3s ease;
}

/* Estilos para o link da logo (agora mais restrito) */
.logo-link {
    text-decoration: none; /* Remove o sublinhado padrão do link */
    display: flex; /* Mantém o flex para alinhamento da imagem dentro dele */
    align-items: center; /* Centraliza a imagem verticalmente */
    
    /* ***** MUDANÇA IMPORTANTE AQUI: ***** */
    /* Defina uma largura máxima para o link para que ele não se estenda muito. */
    /* 20% da largura do header pode ser demais para o link,
       especialmente se a imagem for menor que isso.
       Vamos usar uma largura fixa ou um max-content para que se ajuste ao conteúdo. */
    width: fit-content; /* Faz a largura do link se ajustar ao conteúdo (a imagem) */
    max-width: 200px; /* Um limite superior razoável para a logo */
    flex-shrink: 0; /* Impede que o link encolha mais do que o necessário em telas menores */
    padding: 0; /* Remova qualquer padding indesejado do link */
    
    /* Se a logo estiver muito próxima da borda, ajuste o padding do HEADER, não do link. */
}

/* Estilos para a logo (a imagem real) */
.logo {
    width: 100%; /* A imagem ocupa 100% da largura do seu pai (.logo-link) */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Garante que a imagem se comporte como um bloco para respeitar larguras */
    max-width: 150px; /* Defina uma largura máxima para a imagem em pixels */
    /* O valor de 20% que você tinha antes para .logo pode ter sido a causa.
       Com `width: 100%` aqui, a imagem se adapta ao `max-width` do `.logo-link`
       ou o `max-width` definido na própria `.logo`.
    */
    padding: 0; /* Garanta que a imagem não tenha padding próprio */
    transition: transform 0.0s ease; /* Adicione esta linha para uma animação suave */
}

/* Se você tinha `width: 20%;` direto na `.logo`, considere removê-lo
   e usar as propriedades acima para `.logo-link` e `.logo`. */

   /* Agora, adicione o efeito de crescimento (zoom) ao passar o mouse */
.logo-link:hover .logo { /* Quando o mouse passar sobre o link da logo, a imagem dentro dele cresce */
    transform: scale(1.1); /* Aumenta a logo em 10% (1.1 = 110%). Ajuste o valor se quiser mais ou menos zoom. */
}

/* Opcional: Efeito para o link quando tocado em dispositivos móveis */
.logo-link.touch-feedback-active .logo {
    transform: scale(1.05); /* Um zoom menor para toque, para não ser exagerado */
}

header nav ul{
    display: flex;
    gap: 36px; 
    margin-right: 20px;
    margin-top: 20px;
    align-items: center; /* 1. Garante que TODOS os itens do menu fiquem alinhados verticalmente */
}

nav a{
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    /*Adicione esta linha: */
    transform: scale(1); /* Garante o estado inicial do zoom */
    display: inline-block; /* Importante para o transform: scale funcionar bem em elementos inline */

}

nav a:hover {
    color: #FC6A30; 
    text-shadow: 1px 1px 2px rgb(255, 97, 6);
    /* Adicione esta linha: */
    transform: scale(1.05); /* Aumenta 5%. Ajuste o valor se quiser mais ou menos. */
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0; 
    background-color: #FC6A30;
    transition: width 0.3s ease;
    
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px; /* Cria um espaço entre o ícone e o número */
}

/* 2. Aumenta o tamanho do ícone do WhatsApp */
.whatsapp-link i {
    font-size: 28px; /* Você pode ajustar este valor se quiser maior ou menor */
    line-height: 0;  /* Melhora o alinhamento vertical do ícone */
}

/* 3. Garante que o texto do número mantenha o estilo correto */
.whatsapp-link span {
    font-size: 20px;
    font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 11;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
}

#produtos, #sobre, #contato, #endereco {
  scroll-margin-top: 100px; /* Espaço no topo para não ficar atrás do menu */
}

.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
    padding-top: 100px;
    color: #fff;
    position: relative;
    margin-top: 0px;
    overflow: hidden;
    background-color: #0f0f1e;
    /* ***** NOVAS PROPRIEDADES PARA A IMAGEM DE FUNDO DA HERO ***** */
    background-image: url('hero-background.jpg'); /* <-- SUBSTITUA PELO CAMINHO DA SUA IMAGEM */
    background-size: cover; /* Faz a imagem cobrir toda a área, cortando se necessário */
    background-position: center center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita a repetição da imagem */
    background-attachment: fixed; /* Opcional: para efeito parallax (se quiser) */
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fica por baixo do conteúdo e do vídeo, mas acima da imagem de fundo */
    /* Escolha um destes: */
    /* Opção 1: Overlay escuro simples */
   /* background-color: rgba(0, 0, 0, 0.5);  50% de opacidade preta */
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    /* Opção 2: Gradiente escuro (similar ao que você tinha) */
    /* background: linear-gradient(to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    ); */
}



/* Conteúdo da seção (título, parágrafo e botão) */
.hero-content {
    position: relative;
    width: 45%;
    z-index: 2;
    text-align: left;
    padding-left: 1vw;
    top: -10%;
   }

.hero-content h1 {
    font-size: 2.5rem; /* Tamanho do título principal */
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    width: 100%;
    color: #ffffff;
    text-align: left;
    border-radius: 20px;
}

.highlight-orange {
    color: #FC6A30; /* Este é um tom de laranja baseado na sua logo. */
    /* Você pode adicionar mais estilos se quiser, por exemplo: */
    /* font-weight: bold; */ /* Se quiser que fiquem em negrito */
    /* text-shadow: 1px 1px 5px rgba(252, 106, 48, 0.5); */ /* Uma leve sombra */
}

.highlight-blue{
    color: #1beedc;
}

.hero-content p {
    font-size: 1.2rem; /* Tamanho do parágrafo */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.6;
   
    color: #ffffff;
    text-align: left;
    width: 100%;
    text-align: left;
    border-radius: 20px;
}

/* Ajustes para o botão, se necessário (ele já usa a classe .btn) */
.hero-content .btn {
    padding: 15px 30px;
    font-size: 1rem;
    opacity: 1;
    transform: scale(1);
    color: #ffffff;
    background: linear-gradient(90deg, #159987c2, #00ffddc7);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.6s ease, background 0.3s ease;
    display: inline-block;
}

.active .btn {
    transform: scale(1); /* Estado inicial para o zoom no hover */
    opacity: 1;
}

.hero-content .btn:hover {
    transform: scale(1.05); /* Aumenta 5%. Ajuste o valor se quiser mais ou menos. */
    /* Opcional: mude a cor do gradiente ou adicione uma sombra */
    /* background: linear-gradient(90deg, #FF8C00, #FC6A30); */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
}

.hero-video-container {
    position: relative; /* Para posicionar os controles dentro */
    width: 50%; /* Largura para o vídeo */
    height: 70vh; /* Altura do vídeo, ajuste conforme preferir */
    overflow: hidden; /* Garante que o vídeo não saia do container */
    border-radius: 15px; /* Bordas arredondadas para o container do vídeo */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Sombra para destaque */
    z-index: 2;
}

.hero-right-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo preencha o container */
    display: block; /* Remove espaço extra abaixo do vídeo */
    filter: brightness(80%) contrast(100%); /* Ajuste a claridade do vídeo aqui */
}

.video-controls {
    position: absolute;
    bottom: 20px; /* Distância do fundo do vídeo */
    top: 3%;
    right: 3%; /* Centraliza horizontalmente */
    display: flex;
    gap: 10px;
    z-index: 10; /* Garante que os botões fiquem acima do vídeo */
}

.video-control-btn {
    background-color: rgba(255, 255, 255, 0.6); /* Fundo semi-transparente */
    color: #fff;
    border: 1px solid #868686;
    border-radius: 50%; /* Botão circular */
    width: 45px; /* Tamanho do botão */
    height: 45px; /* Tamanho do botão */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.video-control-btn:hover {
    background-color: #2E7D8A;
    border-color: #868686;
    transform: scale(1.05); /* Pequeno efeito de zoom */
}

.container{
        height: 100vh;
        position: relative;
        background: #000000af;
        overflow: hidden;
        z-index: 3;
    
    
}

.container::before{
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, rgba(15, 15, 30, 0) 70%);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: blur(50px);
        z-index: 1;
        animation: pulse 2s infinite alternate;
    }

@keyframes pulse{
    0%{
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%) scale(3);
    }
}

.list {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    gap: 50px;
    /*animação*/
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 2;

}

.active {
    opacity: 1;
    /*animação*/
    transform: translateX(0);
}

.product-img {
    width: 50%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    position: relative;
    z-index: 2;
}

.product-img img {
    max-width: 80%;
    max-height: 60%;
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.3));
    /*animação*/
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

/*animação*/
.active .product-img img{
    transform: translateX(0);
    opacity: 1;
}

.content{
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 2;
    flex-direction: column;
}

.product-tag{
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #FC6A30;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    /*animação*/
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

/*animação*/
.active .product-tag{
    transform: translateX(0);
    opacity: 1;
}

.product-name{
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    margin-bottom: 10px;
    /*animação*/
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

/*animação*/
.active .product-name{
    transform: translateX(0);
    opacity: 1;
   
}

.description{
    font-size: 1rem;
    color: #b8b8d0;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    text-align: justify;
    /*animação*/
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

/*animação*/
.active .description{
    transform: translateX(0);
    opacity: 1;
}

.btn{
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 30px;
    border: none;
    color: #ffffff;
    background: linear-gradient(90deg, #159987c2, #00ffddc7);
    cursor: pointer;
    text-decoration: none;
    /*animação*/
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}



/*animação*/
.active .btn{
    transform: translateX(0);
    opacity: 1;
}
.arrows{
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background-color: rgb(112, 112, 112); 
    border: 1px solid #ffffff;
}

.arrow-btn:hover{
    background-color: #FC6A30;
    border-color: #ffffff;
}

.indicators{
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15%;
    z-index: 5;
}

.numbers{
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots{
    display: flex;
    gap: 10px;
    top: 10px;
}

.dot{
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;

}

.dot.active{
    background-color: #FC6A30;
}


/* Styles for additional sections */
        .about-us-section {
            display: flex;
            min-height: 82vh;
            padding: 50px 30px;
            background-color: #FC6A30;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 2px;

        }
        .about-us-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem; /* Adjusted font size */
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
        }
        .about-us-section p {
            font-size: 1.2rem;
            color: #ffffff;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto 40px auto;
            text-align: justify;
        }

          .address-section {
            height: 90vh;
            padding: 30px 30px;
            background-color: #000000c7;
            text-align: center;

        }
        .address-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem; /* Adjusted font size */
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
        }
        .address-section p {
            font-size: 1.1rem;
            text-align: center;
            color: #b8b8d0;
            line-height: 1.7;
            max-width: 800px;
            /* A linha abaixo é a correta para centralizar */
            margin: 0 auto 10px;
        }

        /* Estilo para o container do mapa */
    .map-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 250px; /* Você pode ajustar a altura conforme necessário */
        border-radius: 15px; /* Bordas arredondadas para um visual mais moderno */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-bottom: 1px;
        top: 20px;
    }

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        
    }

    /* Camada de sobreposição para evitar o "roubo" de scroll */
    .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Fundo escuro semi-transparente */
        cursor: pointer;
        transition: opacity 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-family: 'Montserrat', sans-serif; /* Usando a mesma fonte do seu site */
        font-size: 1.2rem;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;

    }

    /* Mensagem na camada de sobreposição */
    .map-overlay::after {
        content: 'Clique aqui para interagir com o mapa';
        font-weight: 600;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    /* Faz a camada desaparecer ao ser clicada (via JS) */
    .map-overlay.hidden {
        opacity: 0;
        pointer-events: none; /* Impede que a camada bloqueie o mapa após ser escondida */
    }

        .contact-section {
            height: auto;
            min-height: 90vh;
            padding: 30px 30px;
            background-color: #0f0f1e;
            text-align: center;
            

        }
        .contact-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem; /* Adjusted font size */
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
        }
        .contact-section p {
            font-size: 1.1rem;
            color: #ffffff;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        
        .contact-cards {
            display: flex;
            flex-direction: row; /* Garante que fiquem lado a lado */
            justify-content: center; /* Centraliza os cards na horizontal */
            align-items: center;
            gap: 60px;
            width: 100%;
            margin-top: 10px;
}
        .contact-card {
            background: #282829;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(0, 247, 255, 0.2);
            min-width: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* LINHA ADICIONADA */
        }

        /* EFEITO DE BRILHO NOS CARDS DE CONTATO */
        .contact-card:hover {
            transform: translateY(-5px); /* Levanta o card um pouco */
            box-shadow: 0 0 15px rgb(255, 115, 0), 0 0 5px rgb(255, 94, 0); /* Cria o brilho azul */
}
        .contact-card h3 {
            font-family: 'Playfair Display', serif;
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .contact-card .btn {
            opacity: 1;
            transform: none;
            margin-top: 20px;
            display: inline-block;
}

/* ================================== */
/* BARRA FIXA DE ÍCONES SOCIAIS       */
/* ================================== */

.social-bar {
    position: fixed; /* Mantém os ícones fixos na tela */
    bottom: 20px;    /* Distância da parte de baixo da tela */
    left: 50%;       /* Posiciona o início no meio da tela */
    transform: translateX(-50%); /* Centraliza o elemento horizontalmente */
    z-index: 1000;   /* Garante que fique acima de outros conteúdos */
    display: flex;   /* Alinha os ícones um ao lado do outro */
    gap: 15px;       /* Espaço entre os ícones */
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;         /* Largura do círculo */
    height: 45px;        /* Altura do círculo */
    color: #ffffff;      /* Cor do ícone (branco) */
    font-size: 22px;     /* Tamanho do ícone */
    text-decoration: none;
    background-color: #2E7D8A; /* Cor de fundo azul com 50% de transparência */
    border-radius: 50%;  /* Deixa o fundo perfeitamente redondo */
    transition: all 0.3s ease; /* Efeito suave para a transição */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ================================================= */
/* CORES ESPECÍFICAS NO HOVER DOS ÍCONES SOCIAIS       */
/* ================================================= */

/* Efeito geral de levantar o ícone ao passar o mouse (para todos) */
.social-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Cor específica para o Facebook (:hover) */
.social-bar a[href*="facebook.com"]:hover {
    background-color: #004eb4; /* Azul oficial do Facebook */
}

/* Cor específica para o WhatsApp (:hover) */
.social-bar a[href*="wa.me"]:hover {
    background-color: #25D366; /* Verde oficial do WhatsApp */
}

/* Cor específica para o Instagram (:hover) */
.social-bar a[href*="instagram.com"]:hover {
    /* Gradiente oficial do Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


      footer {
            background-color: #424242be;
            padding: 40px 20px;
            padding-bottom: 90px;
            text-align: center;
            color: #b8b8d0;
        }

/* ========================================================= */
/* ESTILOS PARA PÁGINAS LEGAIS (TERMOS E PRIVACIDADE)        */
/* ========================================================= */

.legal-page-content {
    background-color: #0f0f1e;
    color: #b8b8d0;
    max-width: 800px; /* Limita a largura do texto para melhor leitura */
    margin: 0 auto; /* Centraliza o bloco de conteúdo */
    padding: 150px 20px 50px 20px; /* Espaçamento interno (topo, lados, fundo) */
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #00f7ff;
    padding-bottom: 10px;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page-content p, .legal-page-content li {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.legal-page-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-page-content p em {
    color: #fff;
    font-style: italic;
}

/* Estilo para os links no rodapé */
.footer-links {
    margin-bottom: 20px;
    font-size: 90%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ========================================================= */
/* ESTILOS PARA O BANNER DE CONSENTIMENTO (LGPD/COOKIES)     */
/* ========================================================= */

#consent-banner {
    position: fixed; /* Fixo na tela */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000; /* Cor escura do tema */
    border-top: none;
    padding: 20px 30px;
    z-index: 2000; /* Z-index alto para ficar sobre todos os elementos */

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    /* Animação suave para aparecer e desaparecer */
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

/* Estilo para o estado escondido do banner */
#consent-banner.hidden {
    transform: translateY(150%); /* Move o banner para fora da tela */
}

.consent-text {
    color: #b8b8d0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Estilo para os links de Termos e Privacidade dentro do banner */
.consent-text a {
    color: #00f7ff;
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: #fff;
}

/* Ajustes no botão do banner */
#accept-consent-btn {
    flex-shrink: 0; /* Impede que o botão encolha */
    opacity: 1; /* Garante que o botão esteja visível */
    transform: none; /* Remove qualquer animação de entrada padrão */
}

@media (max-width: 768px) {

.logo{
    width: 70%;
  }

.logo a {
    font-size: 2rem;
  }
    
header {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    transition: background-color 0.3s ease;
  }

  header.open {
    background: #2E7D8A;
    width: 100%;
    height: auto;
   }
  
  header nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 0px;
    margin-top: 2px;
  }

    header.open nav {
    display: flex;
    background: #2E7D8A;

  }

    header nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 20px 0;
  }

  header nav ul li a {
  text-align: center;
  font-size: 18px;
}


nav a {
    font-size: 16px;
  }

  nav a:hover {
    color: #03f7ff; 
    text-shadow: 1px 1px 10px rgba(28, 2, 177, 0.726);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0; 
    background-color: #0ad8dfe3;
    transition: width 0.3s ease;
    
}
.menu-toggle {
    display: flex;
    position: absolute;
    top: 45px;
    right: 25px;
  }
  
    #produtos, #sobre, #contato, #endereco {
    scroll-margin-top: 12vh; /* Ajuste para a altura do menu no celular */
  }

.hero-section {
        flex-direction: column; /* Empilha conteúdo e vídeo */
        height: auto; /* Altura automática */
        min-height: 100vh; /* Altura mínima para a seção */
        padding: 20px 20px 80px; /* Mais padding no final para os botões sociais */
        justify-content: flex-start; /* Alinha no topo */
    }


  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(60%) contrast(90%);
}

.hero-content {
        width: 100%; /* Ocupa toda a largura */
        margin-bottom: 30px; /* Espaço entre texto e vídeo */
        padding-left: 0; /* Remove padding lateral */
        text-align: center; /* Centraliza texto em mobile */
        padding-top: 80px; /* Espaço do topo (ajuste se precisar) */
    }

 .hero-content h1{
        width: 100%; /* Ajuste a largura do texto para centralizar */
        font-size: 2rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center; /* Centraliza o texto */
 }
    .hero-content p {
        width: 90%; /* Ajuste a largura do texto para centralizar */
        margin-left: auto;
        margin-right: auto;
        text-align: center; /* Centraliza o texto */
    }

.hero-content .btn {
        width: 80%; /* Botão maior em mobile */
        max-width: 350px; /* Limite */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-video-container {
        width: 90%; /* Largura do vídeo em mobile */
        height: 40vh; /* Altura do vídeo em mobile, ajuste se quiser */
        margin-top: 20px; /* Espaço entre o conteúdo e o vídeo */
    }

    .video-controls {
        bottom: 10px; /* Ajuste a posição dos controles em mobile */
    }

.container {
    min-height: 85vh;
    padding: 0; 
}


.item {
    display: flex;
    flex-direction: column;
    gap: 0px; 
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    justify-content: center;    
    align-items: center;   
    padding: 20px;
    box-sizing: border-box;
    margin-top: 0%;
    
}

.product-img{
    display: flex;
    width: 100%;
    height: 300px;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 0px;
    margin-bottom: 15px;
    margin-top: 90px;
}

.product-img img {
        max-width: 100%;
        max-height: 100%; 
        margin-bottom: 0;
        padding-bottom: 0px;
    }

.content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os itens de texto */
    text-align: center;
    margin-top: 0px;
    padding-top: 0px;
  }

  .product-tag{
    font-size: 0.8rem;
  }

.product-name{
    justify-content: center;
    width: 90%;
    font-size: 2rem;
    text-align: center;
}

.description{
    justify-content: center;
    width: 90%;
    text-align: center;
}
.btn {
    transform: none;
    opacity: 1;
    transition: none;
  }

.arrows {
    width: 100%;
    top: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

.indicators {
    bottom: 2%;
  }



/* 1. Remove a altura fixa das seções de conteúdo */
.about-us-section,
.address-section,
.contact-section {
    height: auto; /* ESSENCIAL: Permite que a altura se ajuste ao conteúdo */
    padding: 80px 25px; /* Adiciona um bom espaçamento interno (topo/base e laterais) */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2. Garante que os títulos não fiquem tão grandes no mobile */
.about-us-section h2,
.address-section h2,
.contact-section h2 {
    font-size: 2.2rem;
    line-height: 1.2;
}

/* 3. Ajusta os cards de contato para ficarem um embaixo do outro */
.contact-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.contact-card {
    width: 100%;
    max-width: 350px; /* Define uma largura máxima para o card */
    min-width: unset; /* Remove a largura mínima do desktop */
}
 .contact-card .btn {
        width: 60%;         /* Aumenta a largura do botão para 60% do card */
        padding: 20px 25px; /* Aumenta o espaçamento interno (altura) */
        font-size: 1rem;      /* Aumenta o tamanho da fonte do texto */
    }
/* 4. Melhora o espaçamento do rodapé */
footer {
    padding: 50px 25px;
    padding-bottom: 80px;
}

footer p, footer P {
    line-height: 1.6;
    margin-bottom: 10px;
}
/* ========================================================= */
/* NOVAS CLASSES DE FEEDBACK (CONTROLADAS PELO JAVASCRIPT)   */
/* ========================================================= */

/* Efeito genérico para os botões de seta quando tocados */
.arrow-feedback-active {
    background-color: rgba(10, 216, 223, 0.89) !important;
    border-color: #00f7ff !important;
}

/* Efeitos com as cores das marcas para os ícones sociais quando tocados */
.facebook-feedback-active {
    background-color: #1877F2 !important;
}

.whatsapp-feedback-active {
    background-color: #25D366 !important;
}

.instagram-feedback-active {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

#consent-banner {
        flex-direction: column; /* Coloca texto e botão um sobre o outro */
        padding: 20px;
        text-align: center;
    }

    .consent-text {
        font-size: 0.8rem;
    }

}