* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #001e44; /* Fundo preto conforme a imagem */
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header simples para exemplo */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 17px;
}

/* --- ESTILO DO BANNER --- */

.flexa-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 5%; /* Padding lateral em % ajuda na responsividade */
    min-height: 80vh; /* Garante que a seção tenha uma boa presença visual */
}

.content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Ajustado para bater com a classe .brand ou h1 do seu HTML */
.brand, h1 {
    font-size: clamp(32px, 5vw, 48px); /* Fonte fluida: diminui em telas menores */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.description {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px; /* Aumentei levemente para equilibrar com o carrossel */
}

.carousel-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px; 
    height: 400px; /* Altura um pouco maior para fotos de engenharia */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Adiciona profundidade */
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
    z-index: 2; /* Garante que a imagem visível sobreponha as outras */
}

/* Responsividade Aprimorada */
@media (max-width: 992px) {
    .flexa-banner {
        flex-direction: column;
        text-align: center; /* Centraliza o texto no tablet/mobile */
        padding: 40px 20px;
    }

    .description {
        max-width: 100%; /* Ocupa a largura total no mobile */
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-container {
        height: 300px; /* Altura menor para telas pequenas */
    }
}
/* --- VERSÃO MOBILE (SMARTPHONES) --- */

@media (max-width: 768px) {
    .flexa-banner {
        flex-direction: column; /* Empilha os itens verticalmente */
        justify-content: flex-start; /* Alinha ao topo */
        gap: 25px; /* Reduz o espaço entre texto e imagem */
        padding: 30px 15px;
        min-height: auto; /* No mobile, deixamos o conteúdo ditar a altura */
        text-align: center;
    }

    .content-col {
        order: 1; /* Garante que o texto venha primeiro */
        align-items: center;
    }

    .brand, h1 {
        font-size: 28px; /* Tamanho fixo legível ou use clamp menor */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 10px; /* Evita que o texto encoste nas bordas */
    }

    .carousel-col {
        order: 2; /* Carrossel logo abaixo do texto */
        width: 100%;
    }

    .carousel-container {
        max-width: 100%; 
        height: 250px; /* Altura reduzida para não "quebrar" a rolagem */
        border-radius: 8px; /* Bordas levemente mais suaves */
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
}

/* Ajuste extra para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 380px) {
    .brand, h1 {
        font-size: 24px;
    }
    
    .carousel-container {
        height: 200px;
    }
}
/* --- COMPARADOR DE IMAGENS --- */

.image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-comparison {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
    cursor: ew-resize;
    border-radius: 4px;
}

.image-comparison img {
    width: 500px; /* Largura fixa igual ao container */
    height: 500px;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden; /* Corta a imagem */
    z-index: 2;
}

/* Isso impede que a imagem interna se mova ou encolha */
.img-overlay img {
    position: absolute;
    top: 0;
    left: 0;
}

.divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    z-index: 3;
    pointer-events: none;
}
/* ESTILO DO CABEÇALHO (HEADER) */
.header {
    background-color: #ffffff; 
    color: #001e44;
    padding: 0px 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link .logo-img {
    max-width: 160px; 
    height: 160px;
}

/* NAVEGAÇÃO */
.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li a {
    color: #001e44;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

.nav-menu ul li a:hover {
    background-color: #d2d2d231;
}

/* MENU HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* BOTÕES GERAIS */
.btn {
    display: inline-block;
    background-color: #1a1a1a; 
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}
.secao-titulo {
    margin-bottom: 60px; /* Distância entre o título e o slide */
}
.btn:hover {
    background-color: #333;
}

/* ==================================== */
/* RESPONSIVIDADE */
/* ==================================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header .container { padding: 3px 15px; }

    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active { display: block; }

    .nav-menu ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-menu ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid #ffffff;
    }

    .hamburger { display: block; }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        text-align: center;
    }

    .split-layout .image-content {
        max-width: 100%;
        order: -1;
        margin-bottom: 25px;
    }

    .split-layout .text-content {
        text-align: center;
    }

    /* Em mobile, texto justificado pode ficar estranho → volta para left */
    .split-layout .text-content p {
        text-align: left;
    }

    .contact-info p {
        justify-content: center;
    }

    .product-grid {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
    }
}
/* Configuração Base do Header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Esconde o link de contato do menu por padrão no Desktop */
.mobile-only {
    display: none;
}

/* --- VERSÃO MOBILE (Até 768px) --- */
@media (max-width: 768px) {
    .header .container { padding: 3px 15px; }

    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active { display: block; }

    .nav-menu ul {
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
    }

    .nav-menu ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid #ffffff;
    }

    .hamburger { display: block; }

    .header-contact {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .logo-link .logo-img {
        width: 60px;
        height: 60px;
        max-width: 60px; /* Garante que ignore o valor de 160px do desktop */
        object-fit: contain; /* Mantém a proporção da imagem sem distorcer */
    }

    /* BANNER MOBILE */
    .flexa-banner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
        justify-content: flex-start;
        min-height: auto;
    }

    .content-col {
        order: 1;
        align-items: center;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 10px;
        margin: 0 auto 25px auto;
    }

    .image-col {
        order: 2;
        width: 100%;
    }

    .image-comparison {
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto;
    }

    .image-comparison img {
        width: 100%;
        height: 100%;
    }

    .img-overlay img {
        width: 400px;
    }

    /* CARROSSEL MOBILE */
    .carousel-col {
        order: 2;
        width: 100%;
    }

    .carousel-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .slides {
        width: max-content;
        gap: 15px;
        transition: none;
        transform: none !important;
    }

    .slide {
        flex: 0 0 85vw;
        scroll-snap-align: center;
    }

    .arrow, .nav-dots, input[name="slider"] {
        display: none !important;
    }

    /* SECTION 2 */
    .section2 {
        min-height: auto;
        padding: 30px 15px;
    }

    /* FAQ MOBILE */
    .faq-wrapper {
        align-items: flex-start;
        padding: 15px;
    }

    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-label,
    .faq-label-no {
        padding: 15px;
        font-size: 15px;
    }

    .faq-content p {
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-input:checked ~ .faq-content {
        max-height: 500px;
    }

    /* MARQUEE MOBILE */
    .marquee-content span {
        font-size: 16px;
        padding: 12px 20px;
    }

    /* SOBRE NÓS MOBILE */
    .sobre-nos {
        padding: 50px 20px;
    }

    .texto-institucional {
        font-size: 1rem;
        text-align: justify;
    }

    /* STATS MOBILE */
    .container-principal {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
    }

    .container-stats {
        flex-direction: column !important;
        gap: 25px !important;
        width: 100%;
    }

    .item-status h2 {
        font-size: 2rem !important;
    }

    /* SPLIT LAYOUT MOBILE */
    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        text-align: center;
    }

    .split-layout .image-content {
        max-width: 100%;
        order: -1;
        margin-bottom: 25px;
    }

    .split-layout .text-content {
        text-align: center;
    }

    .split-layout .text-content p {
        text-align: left;
    }

    .contact-info p {
        justify-content: center;
    }

    .product-grid {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
    }

    /* WHATSAPP BUTTON MOBILE */
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 17px;
    }
    
    .image-comparison {
        height: 300px;
    }

    .brand, h1 {
        font-size: 17px;
    }
}
.btn-header {
  /* Cores: Gradiente linear usando sua cor #001e44 */
  background: linear-gradient(135deg, #003a82 0%, #001e44 100%);
  color: #ffffff !important; /* Texto branco garantido */
  
  /* Formato Redondo */
  padding: 12px 32px;
  border-radius: 50px; /* Faz o botão ficar redondo nas pontas */
  
  /* Tipografia */
  font-family: 'sans-serif';
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  
  /* Efeito de Brilho e Sombra */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 30, 68, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Interação ao passar o mouse */
.btn-header:hover {
  transform: scale(1.05); /* Aumenta levemente o tamanho */
  box-shadow: 0 6px 20px rgba(0, 30, 68, 0.5);
  filter: brightness(1.2); /* Dá um "brilho" extra na cor */
}
.texto-brilhante {
    /* Define um gradiente como fundo */
    background: linear-gradient(
        to right, 
        #ffffff 50%, 
        #001e44 50%, 
        #001e44 50%, 
        #ffffff 50%
    );
    background-size: 200% auto;
    
    /* Faz o gradiente preencher apenas o texto */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Adiciona um brilho suave ao redor (Glow) */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.993));
    
    /* Configura a animação */
    animation: brilho-animado 10s linear infinite;
    
    /* Estilização extra para destaque */
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Define o movimento do brilho */
@keyframes brilho-animado {
    to {
        background-position: 200% center;
    }
}
/* Estilos do Container */
.carousel-container {
    width: 80%;
    max-width: 1200px; /* Aumentado para caber as 4 imagens */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 50px; /* Espaço para as setas não ficarem em cima da imagem */
    box-sizing: border-box;
}

/* Esconde os rádios */
input[name="slider"] {
    display: none;
}

/* Trilho dos Slides */
.slides {
    display: flex;
    width: 100%; /* Agora o trilho é o tamanho do container */
    gap: 15px; /* Espaçamento entre as imagens */
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    flex: 0 0 calc(25% - 12px); /* 25% para cada (4 imagens) subtraindo o gap */
    box-sizing: border-box;
}

/* Wrapper com Zoom */
.square-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.square-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.square-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.square-wrapper:hover img {
    transform: scale(1.1);
}

/* Glass Card */
.glass-card {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-align: center;
    color: white;
}

.glass-card h2 {
    font-size: 1rem;
    margin: 0;
}

/* Estilo das Setas */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    transition: color 0.3s;
}

.arrow:hover { color: #888; }
.prev { left: 10px; }
.next { right: 10px; }

/* Lógica de Navegação (Para carrosséis de 4 itens, geralmente se move em blocos ou um por um. 
   Abaixo a lógica se quiser que eles deslizem caso adicione mais que 4) */
#s1:checked ~ .slides { transform: translateX(0%); }
#s2:checked ~ .slides { transform: translateX(-25%); }

/* Nav-dots */
.nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

#s1:checked ~ .nav-dots label[for="s1"],
#s2:checked ~ .nav-dots label[for="s2"] {
    background: #333;
}
/* --- VERSÃO MOBILE (Até 768px) --- */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 15px; /* Reduz o espaço lateral para ganhar tela */
        width: 100%;
    }

    .slide {
        /* Exibe 1 imagem inteira por vez (ou 50% para ver duas) */
        flex: 0 0 calc(100% - 0px); 
    }

    .slides {
        gap: 10px; /* Gap menor para telas pequenas */
    }

    /* Ajuste das Setas: No mobile, elas ficam sobre a imagem ou sumimos com elas */
    .arrow {
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.5); /* Fundo semi-transparente para legibilidade */
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .prev { left: 5px; }
    .next { right: 5px; }

    /* Ajuste do Card de Vidro */
    .glass-card {
        width: 90%;
        padding: 8px;
    }

    .glass-card h2 {
        font-size: 0.9rem;
    }

    /* Lógica de Navegação Mobile (Ajustada para 100% de deslocamento) */
    #s1:checked ~ .slides { transform: translateX(0%); }
    #s2:checked ~ .slides { transform: translateX(calc(-100% - 10px)); }
    #s3:checked ~ .slides { transform: translateX(calc(-200% - 20px)); }
    #s4:checked ~ .slides { transform: translateX(calc(-300% - 30px)); }
    }
@media (max-width: 768px) {
    /* Permitir scroll horizontal suave */
    .carousel-container {
        padding: 0 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Força a imagem a "grudar" na tela */
        -webkit-overflow-scrolling: touch; /* Melhora a rolagem no iOS */
        scrollbar-width: none; /* Esconde a barra no Firefox */
    }

    .carousel-container::-webkit-scrollbar {
        display: none; /* Esconde a barra no Chrome/Safari */
    }

    .slides {
        display: flex;
        width: max-content; /* Permite que os slides fiquem um ao lado do outro */
        gap: 15px;
        transition: none; /* Desativa a transição do radio para não conflitar com o scroll */
        transform: none !important; /* Anula o movimento dos radios no mobile */
    }

    .slide {
        flex: 0 0 85vw; /* Cada slide ocupa 85% da largura da tela (mostra um pedaço do próximo) */
        scroll-snap-align: center; /* Alinha o slide no centro ao soltar o dedo */
    }

    /* Esconde elementos desnecessários no toque */
    .arrow, .nav-dots, input[name="slider"] {
        display: none !important;
    }
}
.section2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    text-align: center;
    padding: 20px;
}
.btn-acesso1 {
  background: linear-gradient(135deg, #003a82 0%, #001e44 100%);
  color: #ffffff !important;
  padding: 12px 32px;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  width: fit-content;
  max-width: 280px;
  font-family: sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 30, 68, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
/* Interação ao passar o mouse */
.btn-acesso1:hover {
  transform: scale(1.05); /* Aumenta levemente o tamanho */
  box-shadow: 0 6px 20px rgba(0, 30, 68, 0.5);
  filter: brightness(2.0); /* Dá um "brilho" extra na cor */
}
.container-botao {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center;     /* Centraliza verticalmente (se o container tiver altura) */
  width: 100%;             /* Garante que ocupe a largura total */
  padding: 20px 0;         /* Espaçamento opcional */
}
/* Container do vídeo ocupando a tela toda */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1; /* Garante que fique atrás de tudo */
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo cobrir a tela sem distorcer */
}

/* Camada azul semi-transparente por cima do vídeo */
.overlay-azul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001e44f9; /* Ajuste o azul e a transparência (0.7) aqui */
    z-index: 0;
}



/* Garante que o conteúdo principal fique visível e acima do vídeo */
main {
    position: relative;
    z-index: 1;
}
/* Container de centralização */
.faq-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh; /* Garante que fique no meio da altura da tela */
    padding: 50px;
}

.faq-container {
    width: 100%;
    max-width: 600px;
    perspective: 1200px; /* Profundidade para o leque */
}

.faq-title {
    text-align: center;
    margin-bottom: 2rem;
    font-family: sans-serif;
}

.faq-item {
    margin-bottom: 15px;
}

/* Esconde o rádio original */
.faq-input {
    display: none;
}

/* Cabeçalho da pergunta */
.faq-label {
    display: block;
    padding: 20px;
    background: #6365f131; /* Cor de fundo */
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-label:hover {
    background: #4e46e541;
}

/* Seta animada */
.faq-label::after {
    content: '▼';
    position: absolute;
    right: 20px;
    transition: transform 0.4s;
}
/* Conteúdo da resposta (O Leque) */
.faq-content {
    background: #ffffff;
    color: #475569;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-radius: 0 0 8px 8px;
    
    /* Configuração do Efeito Leque */
    transform-origin: top;
    transform: rotateX(-90deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-content p {
    padding: 20px;
    margin: 0;
}

/* Estágio Ativo (Quando clica) */
.faq-input:checked + .faq-label {
    border-radius: 8px 8px 0 0;
    background: #4e46e54b;
}

.faq-input:checked + .faq-label::after {
    transform: rotate(180deg);
}

.faq-input:checked ~ .faq-content {
    max-height: 300px;
    opacity: 1;
    transform: rotateX(0deg); /* Abre o leque */
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
/* --- AJUSTES ESPECÍFICOS PARA MOBILE --- */

@media (max-width: 768px) {
    .faq-wrapper {
        align-items: flex-start; /* No mobile, é melhor começar do topo */
        padding: 15px;
    }

    .faq-title {
        font-size: 1.5rem; /* Título levemente menor */
        margin-bottom: 1.5rem;
    }

    .faq-label {
        padding: 15px; /* Reduz um pouco o preenchimento para ganhar espaço */
        font-size: 15px; /* Ajuste de fonte para leitura confortável */
    }

    .faq-content p {
        padding: 15px;
        font-size: 14px;
        line-height: 1.5; /* Melhora a legibilidade do parágrafo */
    }

    .faq-input:checked ~ .faq-content {
        max-height: 500px; /* Aumentado para garantir que textos longos não sejam cortados no mobile */
    }
}
.banner-container {
  width: 100%;
  background: white;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  overflow: hidden;
  padding: 0px 0;
}

.carousel-text {
  display: flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.carousel-text span {
  font-family: 'Arial Black', sans-serif;
  font-size: 24px;
  color: #001e44;
  padding-right: 50px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Estrutura Base */
.banner-mobile-container {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Animação */
.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-mobile 10s linear infinite;
}

.marquee-content span {
  font-family: 'Inter', 'Arial Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  /* Tamanho para Mobile */
  font-size: 16px; 
  padding: 12px 20px;
}

/* Keyframes para movimento infinito */
@keyframes scroll-mobile {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* Ajuste para telas um pouco maiores (Tablets) */
@media (min-width: 768px) {
  .marquee-content span {
    font-size: 24px;
    padding: 15px 40px;
  }
}
/* Estilização da Seção Quem Somos */
.sobre-nos {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
}

.container-texto {
    max-width: 900px;
    text-align: center;
}

.texto-institucional {
    margin-top: 30px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.15rem;
}

.texto-institucional p {
    margin-bottom: 20px;
}

.texto-institucional strong {
    color: #4e46e5; /* Cor de destaque para os números e nome */
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .sobre-nos {
        padding: 50px 20px;
    }
    .texto-institucional {
        font-size: 1rem;
        text-align: justify;
    }
}
/* Estilos apenas para telas menores que 768px */
    @media (max-width: 768px) {
        .container-principal {
            flex-direction: column !important;
            gap: 30px !important;
            text-align: center;
        }

        .container-stats {
            flex-direction: column !important;
            gap: 25px !important;
            width: 100%;
        }

        .item-status h2 {
            font-size: 2rem !important; /* Diminui um pouco o tamanho do número no mobile */
        }
    }
    /* --- BOTÃO WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: #fff;
}

/* Esconder o texto em telas muito pequenas para ficar apenas o ícone circular */
@media (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 768px) {
    .marquee-content span {
        font-size: 24px;
        padding: 15px 40px;
    }
}