@charset "utf-8";
/* CSS Document Novo Rodapé*/

@media (max-width: 700px) {
    footer * {
        text-align: left;
        justify-content: left;
    }
}

/* ================= VARIÁVEIS DO FOOTER ================= */
.conteudo-total-novo {
  --primary: #2f4480;
  --primary-light: #3f5fa8;
  --accent: #FF914D;
  --text-light: #ffffff;
  --text-muted: rgba(255,255,255,.75);
  --divider: rgba(255,255,255,.12);
}

/* ================= RESET APENAS DO FOOTER ================= */
.conteudo-rodape-novo * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= FOOTER ================= */
.footer-rod-novo {
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(180deg, var(--primary) 0%, #26386b 100%);
  color: var(--text-light);
  padding: 60px 20px 110px;
}

.footer-rod-novo {
  position: relative;
  overflow: visible; /* garante estabilidade no zoom */
}

/* Camada da imagem de fundo */
.footer-rod-novo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images-definitivo/rodape/fundo-rodape-novo.webp"); /* PNG ou SVG transparente */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  opacity: 0.12; /* mistura suave com o azul */
  pointer-events: none;
  z-index: 0;
}

/* Conte�do sempre acima da imagem */
.footer-rod-novo > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
    .footer-rod-novo::before {
        background-position: 16% 20%;
        background-size: cover;
        opacity: 0.08;
    }
}

/* ================= NEWSLETTER ================= */
.footer-rod-novo .newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 25px;
}

.footer-rod-novo .newsletter h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-rod-novo .newsletter p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= DIVIDER ================= */
.footer-rod-novo .divider {
  height: 1px;
  background: var(--divider);
  margin: 40px 0;
}

/* ================= SITEMAP ================= */
.footer-rod-novo .footer-sitemap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-left: 30px;
}

.footer-rod-novo .sitemap-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-rod-novo .sitemap-col ul {
  list-style: none;
}

.footer-rod-novo .sitemap-col ul li {
  margin-bottom: 8px;
  font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-rod-novo .sitemap-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-rod-novo .sitemap-col ul li a:hover {
  color: #fff;
}

.footer-rod-novo .sitemap-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* ================= FOOTER CONTENT ================= */
.footer-rod-novo .footer-content {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-left: 30px;
}

.footer-rod-novo .footer-col h3,
.footer-rod-novo .footer-col h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-rod-novo .footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-rod-novo .footer-col ul {
  list-style: none;
}

.footer-rod-novo .footer-col ul li {
  margin-bottom: 8px;
}

.footer-rod-novo .footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-rod-novo .footer-col ul li a:hover {
  color: #ff914d !important;
}

.footer-rod-novo .sitemap-col ul li:hover {
    margin-bottom: 8px;
    font-size: 13px;
    color: #ff914d;
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom .mudar-cor-politica {
  color: #fff;
  transition: color .2s ease;
}

.footer-bottom .mudar-cor-politica:hover {
  color: #ff914d;
}

/* ================= SOCIAL ================= */
.footer-rod-novo .social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-rod-novo .social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-rod-novo .social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ================= CONTACT INFO ================= */
.footer-rod-novo .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: -235px;
}

@media screen and (max-width:500px) {
.footer-rod-novo .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 0px;
}		
}

.footer-rod-novo .contact-item {
  display: flex;
  gap: 12px;
}

.footer-rod-novo .contact-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-rod-novo .contact-item .text strong {
  font-size: 13px;
}

.footer-rod-novo .contact-item .text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= FOOTER BOTTOM ================= */
.footer-rod-novo .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {

  .footer-rod-novo .newsletter {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	margin-left: 62px;
  }

  .footer-rod-novo .footer-sitemap {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
	margin-left: 62px;
  }

  .footer-rod-novo .sitemap-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-rod-novo .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 140px;
	margin-left: 62px;
  }

  .footer-rod-novo .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/**************** FAIXA RODAPE INFERIOR ************************/

.anuncio {
    background-color: #1a4385;
    position: fixed;
    bottom: 0;
    height: 70px;
    width: 100%;
    margin-bottom: 0 !important;
    box-shadow: 0 -3px 8px rgba(0, 0, 0, .16);
    z-index: 9999999;
    padding: 0 30px;
}

.anuncio_flex__text {
    width: 300px;
}
.anuncio_flex * {
    line-height: 1.4em;
}

.anuncio_link__numero {
    background-color: var(--branco);
    height: 70px;
    padding: 10px 40px;
    text-align: center;
}

.anuncio_link__numero * {
    color: var(--azul-claro);
    font-weight: 700;
}

.numeroInteiroRota {
    padding: 5px 0;
    font-size: 22px;
    color: var(--azul-primario);
}

@media (max-width: 700px) {
    .anuncio_flex {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .anuncio_flex__text {
        display: none;
    }
}

@media (max-width: 700px) {
    .anuncio_flex__text {
        width: 100%;
    }
}

/* Container das operadoras */
.aux_list_externas_itens {
  display: flex;
  gap: 0px; /* 👈 AQUI controla a distância entre as colunas */
  padding: 0;
  margin: 0;
}

/* Cada coluna */
.operadoras-desk-col {
  min-width: 240px; /* evita colunas grudadas */
}

/* Lista interna */
.operadoras-desk-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links */
.operadoras-desk-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
}

.operadoras-desk-col a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .aux_list_externas_itens {
    flex-direction: column;
    gap: 20px;
  }
}

/**************** FOOTER UNIDADES *********/

.footer__unidades {
  position: relative;
  width: 255px;
}

/* BOT�O */
.footer__unidades button {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  cursor: pointer;
  color: var(--azul-primario);
  text-transform: uppercase;
  font-weight: 700;
  font-size: .8em;
  border: 0;
  background-color: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* DROPDOWN */
.footer_unidades--list {
  background-color: #e7e7e7;
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* ABERTO */
.footer_unidades--list.active {
  max-height: 520px; /* controla a altura */
  opacity: 1;
}

/* LISTA */
.footer_unidades--list ul {
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.footer_unidades--list li a {
  display: block;
  padding: 8px 15px;
  font-size: 13px;
  color: var(--azul-primario) !important;
  text-decoration: none;
}

.footer_unidades--list li a:hover {
  background: rgba(47, 68, 128, 0.08);
}

/* MOBILE ? footer cresce normalmente */
@media (max-width: 991px) {
  .footer_unidades--list {
    position: relative;   /* ?? chave da corre��o */
    width: 100%;
    z-index: auto;
  }
}

/* DESKTOP ? tamb�m cresce */
@media (min-width: 992px) {
  .footer_unidades--list {
    position: relative;
  }
}


/********************************************/

.content__msg{
 color:#000;	
}

