* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */
header {
    background-color: #f5f4f4;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    width: 100%; 
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; 
    width: 100%;
    padding: 0 40px; 
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1; 
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 8px;
}

.logo h2 {
    font-size: 24px;
    color: #111111;
    font-weight: 700;
}

.menu {
    display: flex;
    justify-content: center;
    flex: 1; 
}

.menu a {
    text-decoration: none;
    color: #555555;
    margin: 0 10px;
    font-size: 25px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu a:hover {
    color: rgb(11, 79, 138);
    /* Usa o mesmo cinza do header ou um tom harmonioso */
    background-color: #55555500; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.botoaoTopo {
    display: flex;
    gap: 12px;
    flex: 1;
    justify-content: flex-end; 
}

.btn-android {
    text-decoration: none;
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap; 
    transition: opacity 0.2s;
}

.btn-android:hover {
    opacity: 0.8;
}

.btn-login {
    text-decoration: none;
    background-color: #1F3950FF;
    border: 2px solid #192E40FF;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap; 
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.9;
}


.hero {
    padding: 30px 0 20px 0;
    width: 100%;
    min-height: 65vh;        
    display: flex;
    align-items: center;     
}

.hero-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;    /* Alinha os topos perfeitamente */
    justify-content: center; 
    max-width: 95%;             /* Expande para preencher quase toda a tela */
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;                  /* Espaço entre os dois blocos */
    width: 100%;
}

/* --- LADO ESQUERDO: CARROSSEL (ESTRUTURA ORIGINAL MANTIDA) --- */
.hero-imagem {
    flex: 1;                 
    display: flex;
    flex-direction: column;  
    align-items: center;     
    justify-content: flex-start;
    width: 100%;
}

.carrossel-janela {
    width: 100%;                
    overflow: hidden; 
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); 
    background-color: #ffffff; 
}

.carrossel-trilho {
    display: flex;
    width: 500%;                /* 5 Imagens */
    align-items: center; 
    transition: transform 0.6s ease-in-out; 
}

.carrossel-trilho img {
    width: 20%;                 /* 1/5 por imagem */
    height: auto; 
    max-height: 520px;          
    object-fit: contain;        /* Mantém a exibição original sem cortar */
}

/* --- LADO DIREITO: IMAGEM FIXA --- */
.hero-imagem-direita {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.hero-imagem-direita img {
    width: 100%;
    height: auto;
    max-height: 520px;          /* Mesma limitação de altura máxima do carrossel */
    object-fit: contain;        /* Mantém a proporção original */
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
/* ==========================================================================
   INDICADORES DO CARROSSEL
   ========================================================================== */
.carrossel-indicadores {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px; 
    width: 100%;
}

.indicador {
    width: 10px;
    height: 10px;
    background-color: rgba(25, 46, 64, 0.25); 
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
}

.indicador.ativo {
    width: 35px;
    border-radius: 5px;
    background-color: #192E40FF; 
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
footer {
    text-align: center;
    padding-top: 25px;            
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f9f9f9;
    border-top: 5px solid #192E40FF; 
    margin-top: 90px;              
    width: 100%;
}

footer h3 {
    font-size: 30px;
    color: #555555;
    margin-bottom: -5px;
    font-weight: 600;
}

footer h4 {
    font-size: 35px;
    color: #1F3950FF;
    margin-top: -5px;
    margin-bottom: 30px;
    font-weight: bold;
}

.parceiros-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; 
    margin-bottom: 30px;
    flex-wrap: wrap; 
}

.parceiros-logos img {
    height: 100px; 
    width: auto;
    filter: grayscale(20%); 
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 0px;
}

.parceiros-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.parceiros {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
}

.aviso-mobile {
    display: block;
    font-size: 20px;
    color: #777777;
    font-weight: 500;
    margin-bottom: 8px;
}

footer p {
    font-size: 13px;
    color: #999999;
}
/* ==========================================================================
   ESTILOS DAS PÁGINAS INTERNAS (SOBRE E CONTATO)
   ========================================================================== */
.pagina-conteudo {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
    min-height: 55vh;
}

.secao-sobre, .secao-contato {
    text-align: center;
}

.secao-sobre h2, .secao-contato h2 {
    font-size: 38px;
    color: #1F3950FF;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitulo-secao {
    font-size: 20px;
    color: #666666;
    margin-bottom: 45px;
}

/* CARDS DA PÁGINA SOBRE */
.cards-sobre {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-info {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.card-info h3 {
    font-size: 22px;
    color: #192E40FF;
    margin-bottom: 15px;
}

.card-info p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

/* FORMULÁRIO DE CONTATO */
.box-contato {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.grupo-campo {
    margin-bottom: 20px;
}

.grupo-campo label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #192E40FF;
    margin-bottom: 8px;
}

.grupo-campo input, 
.grupo-campo textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.grupo-campo input:focus, 
.grupo-campo textarea:focus {
    border-color: #1F3950FF;
}

.btn-enviar {
    width: 100%;
    background-color: #1F3950FF;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-enviar:hover {
    opacity: 0.9;
}
/* ==========================================================================
   ESTILOS DA PÁGINA DE CONTATO DUPLEX (FORMULÁRIO + CANAIS DIRETO)
   ========================================================================== */
.container-contato-duplo {
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.container-contato-duplo .box-contato {
    flex: 1.2;
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    text-align: left;
}

/* BOTÃO DO FORMULÁRIO DO WHATSAPP */
.btn-whatsapp-form {
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-form:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* BOX DE CANAIS DIRETO */
.box-info-direta {
    flex: 0.8;
    min-width: 300px;
    background-color: #fcfcfc;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.box-info-direta h3 {
    font-size: 24px;
    color: #1F3950FF;
    margin-bottom: 10px;
    font-weight: 700;
}

.desc-info {
    font-size: 15px;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* CARDS INDIVIDUAIS DOS CANAIS */
.card-canal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 10px;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card-canal:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.icone-canal {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.canal-whatsapp .icone-canal {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.canal-email .icone-canal {
    background-color: rgba(31, 57, 80, 0.1);
    color: #1F3950FF;
}

.texto-canal {
    display: flex;
    flex-direction: column;
}

.texto-canal span {
    font-size: 13px;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
}

.texto-canal strong {
    font-size: 16px;
    color: #222222;
    font-weight: 700;
}
/* ==========================================================================
   PÁGINA SOBRE: SEQUÊNCIA DE 7 IMAGENS
   ========================================================================== */
.pagina-sobre-galeria {
    width: 100%;
    padding: 30px 0;
}

.galeria-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 95%;           /* Preenche quase a largura total da tela */
    margin: 0 auto;
    gap: 15px;                 /* Espaçamento pequeno entre as imagens */
}

.galeria-vertical img {
    width: 100%;
    height: auto;
    object-fit: contain;       /* Preserva a resolução e formato original */
    border-radius: 12px;       /* Mantém a identidade com bordas arredondadas */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Sombra leve e elegante */
}
/* ==========================================================================
   BOTÃO FLUTUANTE: VOLTAR AO TOPO
   ========================================================================== */
.btn-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1F3950FF;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Classe ativada via JavaScript quando a página é rolada */
.btn-topo.visivel {
    opacity: 1;
    visibility: visible;
}

.btn-topo:hover {
    background-color: #192E40FF;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}
/* ==========================================================================
   RESPONSIVIDADE PARA CELULARES E TABLETS (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. Cabeçalho e Logotipos */
    header .container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        height: 60px; /* Reduz tamanho da logo no celular */
    }

    /* 2. Menu de Navegação */
    .menu {
        width: 100%;
        justify-content: center;
    }

    .menu a {
        font-size: 18px; /* Diminui a fonte do menu */
        padding: 6px 10px;
        margin: 0 4px;
    }

    /* 3. Botões do topo */
    .botoaoTopo {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-android, .btn-login {
        font-size: 14px;
        padding: 8px 14px;
        text-align: center;
        flex: 1; /* Faz os botões ocuparem espaço igual */
    }

    /* 4. Tela Inicial (Hero / Carrossel) */
    .hero-layout {
        flex-direction: column; /* Coloca o carrossel em cima e a outra imagem embaixo */
        gap: 20px;
        padding: 0 10px;
        max-width: 100%;
    }

    .hero-imagem img, 
    .hero-imagem-direita img {
        max-height: 350px; /* Adapta a altura das imagens no mobile */
    }

    /* 5. Página de Contato */
    .container-contato-duplo {
        flex-direction: column; /* Coloca o formulário e os canais um abaixo do outro */
        gap: 20px;
    }

    .container-contato-duplo .box-contato,
    .box-info-direta {
        width: 100%;
        padding: 20px 15px;
    }

    .secao-contato h2, .secao-sobre h2 {
        font-size: 26px;
    }

    .subtitulo-secao {
        font-size: 16px;
        margin-bottom: 25px;
    }

    /* 6. Galeria da Página Sobre */
    .galeria-vertical {
        max-width: 100%;
        padding: 0 10px;
        gap: 10px;
    }

    /* 7. Rodapé */
    footer h3 {
        font-size: 22px;
    }

    footer h4 {
        font-size: 26px;
    }

    .parceiros-logos {
        gap: 20px;
    }

    .parceiros-logos img {
        height: 65px; /* Reduz logos dos parceiros */
    }
}