/* =====================================================
   ANCHOR MOTHER PHARMACEUTICAL — ESTILO GLOBAL
   Paleta: Branco #FFFFFF | Azul Marinho #10137B | Laranja #FF8200
   Fontes: Archivo Black (títulos), Inter (subtítulos), Roboto (textos)
   ===================================================== */

/* RESET GERAL — remove margens e espaçamentos padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIÁVEIS DE CORES — facilita mudar a paleta no futuro */
:root {
    --branco: #FFFFFF;
    --azul-marinho: #10137B;
    --azul-marinho-escuro: #000080;
    --laranja: #FF8200;
    --laranja-claro: #FFA500;
    --vermelho-alerta: #C00000;
    --preto: #000000;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #888888;
}

/* CONFIGURAÇÃO BASE DO BODY */
body {
    font-family: 'Roboto', 'Calibri', sans-serif;
    background-color: var(--branco);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden; /* impede rolagem horizontal indesejada */
}

/* TÍTULOS — Archivo Black substitui Arial Black */
h1, h2, h3 {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    letter-spacing: 0.5px;
}

/* SUBTÍTULOS — Inter substitui Aptos */
h4, h5, h6, .subtitulo {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* PARÁGRAFOS E TEXTOS GERAIS */
p, span, a, li, button, input {
    font-family: 'Roboto', 'Calibri', sans-serif;
}

/* SEÇÕES PRINCIPAIS — cada uma ocupa a tela inteira */
.secao {
    width: 100%;
    min-height: 100vh; /* 100% da altura da tela */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* LINKS PADRÃO */
a {
    text-decoration: none;
    color: inherit;
}

/* BOTÕES PADRÃO */
button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

/* IMAGENS RESPONSIVAS POR PADRÃO */
img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   ALERTA FLUTUANTE (será usado por produtos e colaboradores)
   ===================================================== */
.alerta-flutuante {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--vermelho-alerta);
    color: var(--branco);
    padding: 30px 60px;
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    z-index: 9999;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: none;
    text-align: center;
}

.alerta-flutuante.ativo {
    display: block;
    animation: aparecer 0.3s ease-in-out;
}

@keyframes aparecer {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* =====================================================
   RESPONSIVIDADE — Celular
   ===================================================== */
@media (max-width: 768px) {
    .secao {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .alerta-flutuante {
        font-size: 1rem;
        padding: 20px 30px;
    }
}
/* =====================================================
   CABEÇALHO
   ===================================================== */
.cabecalho {
    position: absolute; /* fica sobre o carrossel */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(180deg, rgba(16, 19, 123, 0.85) 0%, rgba(16, 19, 123, 0.4) 70%, transparent 100%);
    color: var(--branco);
}

/* BRASÕES ao lado do título */
.brasao-cabecalho {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.brasao-cabecalho img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brasao-esquerdo {
    margin-right: 20px;
}

.brasao-direito {
    margin-left: 20px;
}

/* TÍTULO CENTRAL */
.titulo-cabecalho {
    text-align: center;
    flex-shrink: 0;
}

.titulo-cabecalho h1 {
    font-size: 2rem;
    line-height: 1.1;
    color: var(--branco);
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.titulo-destaque {
    color: var(--laranja);
    font-size: 1.2rem;
    letter-spacing: 6px;
}

/* HORÁRIO DE FUNCIONAMENTO */
.horario-funcionamento {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
    text-align: right;
}

.horario-label {
    color: var(--branco);
    font-weight: 500;
}

.horario-status {
    color: var(--vermelho-alerta);
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background-color: rgba(255,255,255,0.95);
    padding: 4px 10px;
    margin-top: 4px;
    border-radius: 3px;
}

/* BOTÃO MENU (hambúrguer) */
.botao-menu-container {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-label {
    font-size: 0.7rem;
    color: var(--branco);
    letter-spacing: 2px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.botao-menu {
    background: transparent;
    width: 40px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
}

.botao-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--branco);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.botao-menu:hover span {
    background-color: var(--laranja);
}

/* =====================================================
   MENU LATERAL
   ===================================================== */
.menu-lateral {
    position: fixed;
    top: 0;
    left: -350px; /* escondido fora da tela */
    width: 320px;
    height: 100vh;
    background-color: var(--azul-marinho);
    color: var(--branco);
    padding: 80px 30px 30px 30px;
    z-index: 1000;
    transition: left 0.4s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.3);
}

.menu-lateral.aberto {
    left: 0; /* desliza para dentro da tela */
}

.botao-fechar-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    color: var(--branco);
    font-size: 2.5rem;
    line-height: 1;
    transition: color 0.3s;
}

.botao-fechar-menu:hover {
    color: var(--laranja);
}

.menu-lista {
    list-style: none;
    margin-top: 20px;
}

.menu-lista li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.menu-link {
    display: block;
    padding: 18px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--branco);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: var(--laranja);
    padding-left: 25px;
    background-color: rgba(255,255,255,0.05);
}

/* CAMADA ESCURA por trás do menu aberto */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
}

.menu-overlay.ativo {
    display: block;
}

/* =====================================================
   RESPONSIVIDADE DO CABEÇALHO — Celular
   ===================================================== */
@media (max-width: 768px) {
    .cabecalho {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .brasao-cabecalho {
        width: 40px;
        height: 40px;
    }

    .brasao-esquerdo { margin-right: 10px; }
    .brasao-direito { margin-left: 10px; }

    .titulo-cabecalho h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .titulo-destaque {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .horario-funcionamento {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 15px;
        align-items: center;
        text-align: center;
    }

    .horario-status {
        font-size: 0.75rem;
    }

    .botao-menu-container {
        right: 15px;
        top: 15px;
        transform: none;
    }

    .menu-lateral {
        width: 85%;
    }
}
/* =====================================================
   CARROSSEL PRINCIPAL
   ===================================================== */
.carrossel-principal {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--azul-marinho);
}

/* SLIDES */
.slide-principal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide-principal.ativo {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* IMAGEM DE FUNDO DE CADA SLIDE */
.slide-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* SOBREPOSIÇÃO QUE DESSATURA A METADE DIREITA DA IMAGEM */
.slide-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(16, 19, 123, 0.4) 25%,
        rgba(16, 19, 123, 0.85) 60%,
        rgba(16, 19, 123, 0.95) 100%
    );
    backdrop-filter: grayscale(80%);
    -webkit-backdrop-filter: grayscale(80%);
}

/* CONTEÚDO TEXTUAL DO SLIDE (lado direito) */
.slide-conteudo {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 600px;
    color: var(--branco);
    z-index: 3;
    text-align: left;
}

.slide-titulo {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--branco);
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
}

.slide-subtitulo {
    font-size: 1.4rem;
    color: var(--laranja);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.slide-texto {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--branco);
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* =====================================================
   CONTROLES DO CARROSSEL (setas + bolinhas)
   ===================================================== */
.carrossel-controles {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.seta-carrossel {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--branco);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.seta-carrossel:hover {
    background-color: var(--laranja);
    border-color: var(--laranja);
    transform: scale(1.1);
}

.bolinhas-navegacao {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bolinha {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bolinha:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.bolinha.ativa {
    background-color: var(--laranja);
    border-color: var(--branco);
    transform: scale(1.3);
}

/* =====================================================
   RESPONSIVIDADE DO CARROSSEL — Celular
   ===================================================== */
@media (max-width: 768px) {
    .slide-overlay {
        width: 100%;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(16, 19, 123, 0.6) 40%,
            rgba(16, 19, 123, 0.95) 100%
        );
    }

    .slide-conteudo {
        position: absolute;
        bottom: 100px;
        top: auto;
        transform: none;
        right: 5%;
        left: 5%;
        width: auto;
        text-align: center;
    }

    .slide-titulo {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .slide-subtitulo {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .slide-texto {
        font-size: 0.95rem;
    }

    .carrossel-controles {
        bottom: 20px;
        gap: 15px;
    }

    .seta-carrossel {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .bolinha {
        width: 10px;
        height: 10px;
    }
}
/* =====================================================
   INSTITUCIONAL E QUEM SOMOS
   ===================================================== */
.institucional-secao {
    background-color: var(--branco);
    padding: 0;
}

.institucional-grade {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

/* QUADRANTES (base comum) */
.quadrante {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* QUADRANTES DE TEXTO */
.quadrante-texto {
    background-color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 70px;
}

/* O primeiro quadrante de texto (superior esquerdo) — fundo branco */
.quadrante-texto:nth-of-type(1) {
    background-color: var(--branco);
    color: var(--azul-marinho);
}

/* O segundo quadrante de texto (inferior direito) — fundo azul marinho */
.quadrante-texto:nth-of-type(4) {
    background-color: var(--azul-marinho);
    color: var(--branco);
}

.quadrante-conteudo {
    max-width: 480px;
}

.quadrante-titulo {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
    line-height: 1.1;
}

/* Cor do título no quadrante branco */
.quadrante-texto:nth-of-type(1) .quadrante-titulo {
    color: var(--azul-marinho);
}

/* Cor do título no quadrante azul */
.quadrante-texto:nth-of-type(4) .quadrante-titulo {
    color: var(--branco);
}

/* Linha decorativa laranja sob o título */
.linha-decorativa {
    width: 80px;
    height: 4px;
    background-color: var(--laranja);
    margin-bottom: 25px;
}

.quadrante-texto-corpo {
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
}

/* Cor do texto corpo no quadrante branco */
.quadrante-texto:nth-of-type(1) .quadrante-texto-corpo {
    color: #333;
}

/* Cor do texto corpo no quadrante azul */
.quadrante-texto:nth-of-type(4) .quadrante-texto-corpo {
    color: rgba(255,255,255,0.92);
}

/* QUADRANTES DE IMAGEM */
.quadrante-imagem {
    overflow: hidden;
}

.quadrante-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.quadrante-imagem:hover img {
    transform: scale(1.05);
}

/* =====================================================
   RESPONSIVIDADE — Celular
   ===================================================== */
@media (max-width: 768px) {
    .institucional-grade {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }

    .quadrante-texto {
        padding: 40px 30px;
    }

    .quadrante-imagem {
        height: 280px;
    }

    .quadrante-titulo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    /* No celular, reordena: texto, imagem, texto, imagem (sequencial) */
    .institucional-grade .quadrante:nth-of-type(1) { order: 1; }
    .institucional-grade .quadrante:nth-of-type(2) { order: 2; }
    .institucional-grade .quadrante:nth-of-type(3) { order: 4; }
    .institucional-grade .quadrante:nth-of-type(4) { order: 3; }
}
/* =====================================================
   NOSSOS PRODUTOS
   ===================================================== */
.produtos-secao {
    background-color: var(--cinza-claro);
    padding: 60px 40px 100px 40px;
    position: relative;
    overflow: hidden;
}

.produtos-cabecalho {
    text-align: center;
    margin-bottom: 40px;
}

.produtos-titulo-principal {
    font-size: 2.5rem;
    color: var(--azul-marinho);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.linha-centralizada {
    margin-left: auto;
    margin-right: auto;
}

/* CARROSSEL DE PRODUTOS */
.produtos-carrossel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 450px;
}

/* SLIDE DE PRODUTO */
.produto-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.produto-slide.ativo-produto {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* TEXTO DO PRODUTO (lado esquerdo) */
.produto-texto {
    flex: 1;
    max-width: 450px;
    text-align: right;
    padding-right: 20px;
}

.produto-titulo {
    font-size: 2.5rem;
    color: var(--azul-marinho);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.produto-subtitulo {
    font-size: 1.1rem;
    color: var(--laranja);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* IMAGEM DO PRODUTO (lado direito) */
.produto-imagem-container {
    flex: 1;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    background-color: var(--branco);
    border: 3px solid var(--azul-marinho);
    padding: 12px;
    box-shadow: 12px 12px 0 var(--laranja);
    overflow: hidden;
}

.produto-imagem-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ÁREA DE DOWNLOAD FAKE */
.produtos-download-area {
    text-align: center;
    margin: 40px auto 30px auto;
}

.produtos-download-frase {
    font-size: 0.95rem;
    color: var(--azul-marinho);
    margin-bottom: 12px;
    font-style: italic;
}

.botao-download-fake {
    background-color: var(--laranja);
    color: var(--branco);
    padding: 14px 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.botao-download-fake:hover {
    background-color: var(--azul-marinho);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,19,123,0.3);
}

.icone-download {
    font-size: 1.1rem;
}

/* CONTROLES (variação clara para fundo claro) */
.carrossel-controles-claros {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0 auto;
    justify-content: center;
}

.carrossel-controles-claros .seta-carrossel {
    background-color: var(--azul-marinho);
    border-color: var(--azul-marinho);
    color: var(--branco);
}

.carrossel-controles-claros .seta-carrossel:hover {
    background-color: var(--laranja);
    border-color: var(--laranja);
}

.carrossel-controles-claros .bolinha {
    background-color: rgba(16,19,123,0.3);
}

.carrossel-controles-claros .bolinha:hover {
    background-color: rgba(16,19,123,0.6);
}

.carrossel-controles-claros .bolinha.ativa {
    background-color: var(--laranja);
    border-color: var(--azul-marinho);
}

/* =====================================================
   RESPONSIVIDADE — Celular
   ===================================================== */
@media (max-width: 768px) {
    .produtos-secao {
        padding: 40px 20px 60px 20px;
    }

    .produtos-titulo-principal {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .produto-slide {
        flex-direction: column;
        gap: 25px;
    }

    .produto-texto {
        text-align: center;
        padding-right: 0;
    }

    .produto-titulo {
        font-size: 1.5rem;
    }

    .produto-subtitulo {
        font-size: 0.85rem;
    }

    .produto-imagem-container {
        max-width: 280px;
        box-shadow: 8px 8px 0 var(--laranja);
    }

    .produtos-download-frase {
        font-size: 0.85rem;
    }

    .botao-download-fake {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}
/* =====================================================
   NOSSOS COLABORADORES
   ===================================================== */
.colaboradores-secao {
    background-color: var(--azul-marinho);
    padding: 60px 40px 100px 40px;
    position: relative;
    overflow: hidden;
    color: var(--branco);
}

.colaboradores-cabecalho {
    text-align: center;
    margin-bottom: 50px;
}

.colaboradores-titulo-principal {
    font-size: 2.3rem;
    color: var(--branco);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.linha-laranja-clara {
    background-color: var(--laranja);
}

/* CARROSSEL DE COLABORADORES */
.colaboradores-carrossel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 500px;
}

/* SLIDE DE COLABORADOR */
.colaborador-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.colaborador-slide.ativo-colaborador {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* FOTO 3X4 DO COLABORADOR (lado esquerdo) */
.colaborador-foto-container {
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 3 / 4;
    background-color: var(--branco);
    border: 4px solid var(--branco);
    padding: 0;
    overflow: hidden;
    box-shadow: 10px 10px 0 var(--laranja), 0 20px 50px rgba(0,0,0,0.4);
}

.colaborador-foto-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%) contrast(1.05);
}

/* FICHA DO COLABORADOR (lado direito) */
.colaborador-ficha {
    flex: 1;
    max-width: 500px;
    color: var(--branco);
}

.colaborador-nome {
    font-size: 1.9rem;
    color: var(--branco);
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
    border-bottom: 2px solid var(--laranja);
    padding-bottom: 12px;
}

.colaborador-dados {
    list-style: none;
    margin-bottom: 25px;
}

.colaborador-dados li {
    font-size: 0.95rem;
    padding: 6px 0;
    color: rgba(255,255,255,0.92);
    font-family: 'Inter', sans-serif;
}

.dado-rotulo {
    font-weight: 600;
    color: var(--laranja);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-right: 8px;
}

.dado-valor {
    font-weight: 400;
}

.colaborador-depoimento {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    font-style: italic;
    border-left: 3px solid var(--laranja);
    padding-left: 18px;
    margin-top: 15px;
}

/* ÁREA DE DOWNLOAD FAKE */
.colaboradores-download-area {
    text-align: center;
    margin: 40px auto 30px auto;
}

.colaboradores-download-frase {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    font-style: italic;
}

.botao-download-claro {
    background-color: var(--branco);
    color: var(--azul-marinho);
}

.botao-download-claro:hover {
    background-color: var(--laranja);
    color: var(--branco);
    box-shadow: 0 6px 20px rgba(255,130,0,0.4);
}

/* CONTROLES (variação escura para fundo azul) */
.carrossel-controles-escuros {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0 auto;
    justify-content: center;
}

.carrossel-controles-escuros .seta-carrossel {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--branco);
}

.carrossel-controles-escuros .seta-carrossel:hover {
    background-color: var(--laranja);
    border-color: var(--laranja);
}

.carrossel-controles-escuros .bolinha {
    background-color: rgba(255,255,255,0.3);
}

.carrossel-controles-escuros .bolinha:hover {
    background-color: rgba(255,255,255,0.6);
}

.carrossel-controles-escuros .bolinha.ativa {
    background-color: var(--laranja);
    border-color: var(--branco);
}

/* =====================================================
   RESPONSIVIDADE — Celular
   ===================================================== */
@media (max-width: 768px) {
    .colaboradores-secao {
        padding: 40px 20px 60px 20px;
    }

    .colaboradores-titulo-principal {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .colaborador-slide {
        flex-direction: column;
        gap: 30px;
    }

    .colaborador-foto-container {
        width: 200px;
        box-shadow: 7px 7px 0 var(--laranja), 0 15px 30px rgba(0,0,0,0.4);
    }

    .colaborador-ficha {
        text-align: center;
    }

    .colaborador-nome {
        font-size: 1.4rem;
    }

    .colaborador-depoimento {
        border-left: none;
        border-top: 2px solid var(--laranja);
        padding-left: 0;
        padding-top: 15px;
    }

    .colaboradores-download-frase {
        font-size: 0.8rem;
    }
}
/* =====================================================
   GALERIA DE FOTOS
   ===================================================== */
.galeria-secao {
    background-color: var(--branco);
    padding: 60px 40px 80px 40px;
    position: relative;
    overflow: hidden;
}

.galeria-cabecalho {
    text-align: center;
    margin-bottom: 40px;
}

.galeria-titulo-principal {
    font-size: 2.5rem;
    color: var(--azul-marinho);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* CARROSSEL DA GALERIA */
.galeria-carrossel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 60vh;
    min-height: 450px;
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid var(--azul-marinho);
    box-shadow: 15px 15px 0 var(--laranja);
}

/* SLIDE DA GALERIA */
.galeria-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.galeria-slide.ativo-galeria {
    opacity: 1;
    visibility: visible;
}

/* IMAGEM DA GALERIA */
.galeria-imagem {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* TÍTULO SOBRE A FOTO (livre, sem borda) */
.galeria-titulo-foto {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 2.2rem;
    color: var(--branco);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.85),
                 0 0 30px rgba(0,0,0,0.6);
    white-space: nowrap;
    text-align: center;
    z-index: 5;
}

/* CONTROLES DA GALERIA */
.carrossel-controles-galeria {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 35px auto 0 auto;
    justify-content: center;
}

.carrossel-controles-galeria .seta-carrossel {
    background-color: var(--azul-marinho);
    border-color: var(--azul-marinho);
    color: var(--branco);
}

.carrossel-controles-galeria .seta-carrossel:hover {
    background-color: var(--laranja);
    border-color: var(--laranja);
}

.carrossel-controles-galeria .bolinha {
    background-color: rgba(16,19,123,0.3);
}

.carrossel-controles-galeria .bolinha:hover {
    background-color: rgba(16,19,123,0.6);
}

.carrossel-controles-galeria .bolinha.ativa {
    background-color: var(--laranja);
    border-color: var(--azul-marinho);
}

/* =====================================================
   RESPONSIVIDADE — Celular
   ===================================================== */
@media (max-width: 768px) {
    .galeria-secao {
        padding: 40px 20px 50px 20px;
    }

    .galeria-titulo-principal {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .galeria-carrossel {
        height: 50vh;
        min-height: 300px;
        border: 3px solid var(--azul-marinho);
        box-shadow: 8px 8px 0 var(--laranja);
    }

    .galeria-titulo-foto {
        font-size: 1.2rem;
        letter-spacing: 2px;
        bottom: 25px;
        white-space: normal;
        width: 90%;
    }
}
/* =====================================================
   RODAPÉ
   ===================================================== */
.rodape {
    background-color: var(--azul-marinho);
    color: var(--branco);
    padding: 60px 50px 25px 50px;
    position: relative;
    border-top: 4px solid var(--laranja);
}

.rodape-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

/* TÍTULOS DAS COLUNAS LATERAIS */
.rodape-titulo-coluna {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--laranja);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* =====================================================
   COLUNA ESQUERDA — MENU
   ===================================================== */
.rodape-menu {
    list-style: none;
}

.rodape-menu li {
    margin-bottom: 10px;
}

.rodape-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.rodape-menu a:hover {
    color: var(--laranja);
    padding-left: 8px;
}

/* =====================================================
   COLUNA CENTRAL — TEXTO + BRASÃO COM LINK OCULTO
   ===================================================== */
.rodape-coluna-central {
    text-align: center;
}

.rodape-titulo-central {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 1.4rem;
    color: var(--branco);
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.rodape-texto-central {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* BRASÃO COM HIPERLINK OCULTO 
   — Discreto, sem destaque visual, sem aviso de link */
.rodape-brasao-link {
    display: inline-block;
    cursor: default; /* esconde a "mãozinha" do mouse */
    outline: none;
    text-decoration: none;
}

.rodape-brasao-link:focus,
.rodape-brasao-link:active {
    outline: none;
}

.rodape-brasao {
    width: 160px;
    height: 160px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

/* Reação extremamente sutil ao hover — quase imperceptível */
.rodape-brasao-link:hover .rodape-brasao {
    opacity: 0.75;
}

/* =====================================================
   COLUNA DIREITA — ENDEREÇO E HORÁRIO
   ===================================================== */
.rodape-coluna-direita {
    text-align: right;
}

.rodape-coluna-direita .rodape-titulo-coluna {
    text-align: right;
}

.rodape-endereco {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.rodape-horario {
    font-size: 0.85rem;
    line-height: 1.5;
}

.rodape-horario-label {
    color: rgba(255,255,255,0.7);
}

.rodape-horario-status {
    color: var(--vermelho-alerta);
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    background-color: rgba(255,255,255,0.95);
    padding: 4px 10px;
    margin-top: 6px;
    display: inline-block;
    border-radius: 3px;
}

/* =====================================================
   MARCA REGISTRADA — Linha inferior central
   ===================================================== */
.rodape-marca-registrada {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.rodape-marca-registrada p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

/* =====================================================
   RESPONSIVIDADE — Celular
   ===================================================== */
@media (max-width: 768px) {
    .rodape {
        padding: 40px 25px 20px 25px;
    }

    .rodape-conteudo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rodape-coluna-direita {
        text-align: left;
    }

    .rodape-coluna-direita .rodape-titulo-coluna {
        text-align: left;
    }

    .rodape-titulo-coluna {
        font-size: 0.9rem;
    }

    .rodape-brasao {
        width: 60px;
        height: 60px;
    }

    .rodape-marca-registrada {
        margin-top: 30px;
    }

    .rodape-marca-registrada p {
        font-size: 0.7rem;
    }
}
