*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;  
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #0f0f1e;
    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: #0ad8dfe3;
    backdrop-filter: blur(10px);
    transition: height 0.3s ease;
}

.logo{
    width: 20%;
    padding: 1px 1px;
}

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;

}

nav a:hover {
    color: #01144b; 
    text-shadow: 1px 1px 10px rgba(66, 15, 207, 0.5);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0; 
    background-color: #032a9e;
    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: 86vh;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 1vw;
    color: #fff;
    position: relative;
    margin-top: 104px;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; 
    z-index: -1;
    background-image: linear-gradient(to right, 
            rgba(0, 0, 0, 0.9) 0%,   
            rgba(0, 0, 0, 0.8) 40%,    
            rgba(0, 0, 0, 0.2) 65%    
        ), url('new-back-3.jpg');
    background-size: cover;
    background-position: center;
    transform: translateY(var(--parallax-offset, 0px)); /* Conecta com o JavaScript */
    background-size: cover;
    background-position: center;
}



/* Conteúdo da seção (título, parágrafo e botão) */
.hero-content {
    position: absolute;
    top: 15%;
    left: 2%;
    z-index: 2; /* Garante que o conteúdo fique acima da camada escura */
    max-width: 800px; /* Limita a largura do texto */
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem; /* Tamanho do título principal */
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 27, 87, 0.842);
    width: 60%;
    color: #ffffff;
    text-align: left;
    border-radius: 20px;
}

.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;
    text-shadow: 3px 3px 10px rgba(0, 27, 87, 0.842);
    color: #ffffff;
    text-align: left;
    width: 60%;
    text-align: justify;
    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: none;
    color: #ffffff;
    background: linear-gradient(90deg, #00f7ff, #0066ff);
}


.container{
        height: 100vh;
        position: relative;
        background: #01144b;
        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: 80%;
    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: 10px;
    /*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: 1rem;
    text-transform: uppercase;
    color: #00f7ff;
    font-weight: 600;
    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, #00f7ff, #0066ff);
    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: rgba(0, 247, 255, 0.2); 
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.arrow-btn:hover{
    background-color: rgba(10, 216, 223, 0.89);
    border-color: #00f7ff;
}

.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: #00f7ff;
}


/* Styles for additional sections */
        .about-us-section {
            display: flex;
            min-height: 82vh;
            padding: 50px 30px;
            background-color: #1f1f3a;
            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: #b8b8d0;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto 40px auto;
            text-align: justify;
        }

          .address-section {
            height: 90vh;
            padding: 30px 30px;
            background-color: #0f0f1e;
            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: #b8b8d0;
            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: #1f1f3a;
            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 rgba(0, 247, 255, 0.5), 0 0 5px rgba(0, 247, 255, 0.7); /* Cria o brilho azul */
}
        .contact-card h3 {
            font-family: 'Playfair Display', serif;
            color: #00f7ff;
            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: rgba(0, 247, 255, 0.5); /* 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: #0a0a14;
            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: #1f1f3a; /* Cor escura do tema */
    border-top: 1px solid #00f7ff;
    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) {
.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 */
  }

  .logo{
    width: 70%;
  }

  .hero-section{
   position: relative;
   height: 100vh;
   margin-top: 99px;
  }

  .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('new-back-3.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(60%) contrast(90%);
}

  .hero-content{
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
   
    
    
  }

  .hero-content h1 {
    font-size: 3rem;
    width: 90%;
    text-align: center;
    align-items: center;
    color: #fff;
}

.hero-content p {
    font-size: 1rem;
    justify-content: center;
    width: 90%;
    text-align: center;
    color: #fff;
}

.hero-content .btn {
    width: 70%;           /* Define uma largura para o botão. 70% é um bom começo. */
    max-width: 300px;     /* Impede que o botão fique grande demais em telas maiores. */
    padding: 15px 10px;   /* Ajusta o espaçamento interno para o texto caber bem. */
    text-align: center;   /* Garante que o texto DENTRO do botão fique centralizado. */
    box-sizing: border-box; /* Garante que o padding não aumente a largura total. */
}

.container {
    min-height: 85vh;
    padding: 0; 
}


.item {
    display: flex;
    flex-direction: column;
    gap: 1px; 
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    justify-content: flex-start;    
    align-items: center;   
    padding: 5vh;
    box-sizing: border-box;
    
}

.product-img{
    display: flex;
    width: 100%;
    height: auto; /* Faz a altura do container se ajustar à imagem */
    justify-content: center;
    padding-right: 0;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    transform: none;
    opacity: 1;
    transition: none;
    bottom: 0px;
  }

.content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os itens de texto */
    text-align: center;
  }


.product-tag,

.product-name{
    top: 10px;
    justify-content: center;
    width: 90%;
    text-align: center;
}

.description{
    justify-content: center;
    width: 90%;
    text-align: center;
}
.btn {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

.product-tag{
    font-size: 0.8rem;
  }

.product-name {
    font-size: 2rem;
  }

.description {
    font-size: 1rem;
    text-align: justify;
    bottom: 10px;
  }

.btn {
    width: 35%;
    padding: 10px 15px;
    font-size: 0.8rem;
  }

.arrows {
    width: 100%;
    top: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

.indicators {
    top: 600px;

  }

header {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    transition: background-color 0.3s ease;
  }

  header.open {
    background: linear-gradient(135deg, #01144b 0%, #1f1f3a 100%);
    width: auto;
    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: linear-gradient(135deg, #01144b 0%, #1f1f3a 100%);

  }

    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;
}

.logo a {
    font-size: 2rem;
  }

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;
    
}


/* 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 p {
    word-wrap: break-word;   /* Para navegadores mais antigos */
    overflow-wrap: break-word; /* A propriedade preferida para navegadores modernos */
}
 .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;
    }

}