.sup-header  {
    background: #1F325B;
    padding: 5px 0;
}

.sup-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}   


.social-menu {
  display: block;
}

/* Fallback universal */
.social-menu li {
  display: inline-block;
  margin-right: 15px;
  vertical-align: bottom; /* opcional: alinha no fallback */
}

/* Melhorias em navegadores modernos */
@supports (display: flex) {
  .social-menu {
    display: flex;
    align-items: flex-end; /* ALINHAMENTO NA PARTE INFERIOR */
  }
}

@supports (gap: 15px) {
  .social-menu {
    gap: 15px;
  }

  /* Remove margin-right do fallback quando gap está disponível */
  .social-menu li {
    margin-right: 0;
  }
}


.menu-redes-sociais a::before {
    transition: none !important;
    animation: none !important;
}

/* Oculta o texto adequadamente */
.menu-redes-sociais .sr-text {
    /* position: absolute;
    left: -9999px; */
    font-size: 0;
}

.menu-redes-sociais i {
    font-size: 24px;
    display: inline-block;
}

/* Estilo base dos links */
.menu-redes-sociais a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.menu-redes-sociais a:hover {
    color: #0096DE;
}

/* Remove o texto visual do span, mas mantém acessível */
.menu-redes-sociais .sr-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Ícones */
.menu-redes-sociais a::before {
    font-family: "Font Awesome 7 Brands", sans-serif !important;
    font-weight: 400 !important;
    display: block;
    content: "" !important;
    /* Sem margin-right aqui, já que é o único conteúdo */
}

.icon-instagram a::before { content: "\f16d" !important; }
.icon-facebook a::before  { content: "\f39e" !important; }
.icon-linkedin a::before  { content: "\f0e1" !important; }
.icon-youtube a::before   { content: "\f167" !important; }
/*fim menu redes*/

.phone, .email {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}
.phone:hover, .email:hover {
    color: #fff;
}

.phone::before {
    content: "\f095";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-right: 8px;
}

.email::before {
    content: "\f0e0";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-right: 8px;
}
.separador {
    margin: 0 10px;
    color: #0096DE;
    font-weight: 900;
    font-size: 14px;
}


/*banner*/
.banner-media {
    width: 100%;
    height: auto;
    display: none; /* todos começam escondidos */
}

.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

/* Fundo escuro */
.modal {
    display: none;               /* inicia oculta */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999999;             /* acima de tudo */
}

/* Caixa do modal */
.modal-dialog {
    max-width: 500px;
    width: 90%;
}

/* Conteúdo */
.modal-content {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    position: relative;
}

/* Botão fechar */
.close-modal {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

/* imagem ocupa toda largura */
.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}


.close-modal {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;         /* remove fundo */
    border: none;             /* remove borda */
    font-size: 32px;          /* aumenta o X */
    cursor: pointer;          /* cursor de botão */
    line-height: 1;
    padding: 0;
    color: #000;              /* cor do X – pode trocar */
}

.close-modal:focus {
    outline: none;            /* remove contorno padrão do navegador */
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
.modal-header {
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

/* overlay */
.modal {
    display: none;
    position: fixed;
    inset: 0;                 /* shorthand top/right/bottom/left: 0 */
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* central box */
.modal-dialog {
    max-width: 720px;
    width: 95%;
}

/* conteúdo */
.modal-content {
    background: #fff;
    padding: 14px;
    border-radius: 6px;
    position: relative; /* necessário para posicionar o botão dentro */
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* botão apenas o X, sem fundo, sem borda */
.close-modal {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    color: #111;
    z-index: 3;            /* garante que esteja acima do conteúdo */
}

/* remove outline apenas visualmente, mas mantém acessibilidade com :focus-visible */
.close-modal:focus {
    outline: none;
}
.close-modal:hover {
    color:#787777;
}
.close-modal:focus-visible {
    outline: 2px solid #5b9dd9;
    outline-offset: 2px;
}

/* imagem */
.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .sup-header {
        display: none;
    }
    .banner-desktop {
        display: none;
    }
    .banner-mobile {
        display: block;
    }
}


