﻿footer {
  color: white;
}

/* ===== ESTRUTURA GERAL ===== */
.footer-links {
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1200px;
}

/* ===== COLUNA DO LOGO ===== */
.logo-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logo-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logo-principal {
  flex-grow: 1;
}

.logo-svg {
  max-width: 120px;
  height: auto;
}

.cnpj {
  font-size: 0.9rem !important;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===== REDES SOCIAIS ===== */
.social-media ul {
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.social-media li {
  display: flex;
  align-items: center;
}

.social-media a {
  color: #fff;
  font-size: 20px;
  transition: color 0.2s ease;
  text-decoration: none;
}

  .social-media a:hover {
    color: #b8d4f7;
    text-decoration: none;
  }

/* ===== BLOG PROMO ===== */
.blog-promo {
  margin-top: auto;
  padding-top: 1rem;
}

.blog-promo-content {
  text-align: left;
}

.blog-promo-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-link img {
  transition: transform 0.2s ease;
  max-width: 140px;
  height: auto;
}

.blog-link:hover img {
  transform: scale(1.05);
}

/* ===== COLUNAS DE LINKS ===== */
.links-column {
  height: 100%;
}

footer h4 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .footer-links-list li {
    margin-bottom: 0.4rem;
  }

  .footer-links-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: block;
    padding: 2px 0;
    line-height: 1.4;
  }

    .footer-links-list a:hover {
      color: #fff;
      text-decoration: none;
      padding-left: 5px;
    }

/* ===== SEÇÃO DE PARCEIROS ===== */
.footer-addon {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-section {
  display: flex;
  align-items: center;
}

.logo-associado {
  max-width: 100%;
  height: auto;
  max-height: 45px;
  opacity: 0.75;
  transition: all 0.2s ease;
  filter: brightness(1.1);
}

  .logo-associado:hover {
    opacity: 1;
    transform: translateY(-2px);
  }

/* ===== SELETOR DE PAÍS ===== */
.country-selector-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.btn-flags {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

  .btn-flags:hover,
  .btn-flags:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    transform: translateY(-1px);
  }

.img-bandeira {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  margin-right: 0.5rem;
}

.dropdown-menu {
  background: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: #333;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #495057;
  }

  .dropdown-item img {
    margin-right: 0.75rem;
  }

/* ===== LINKS IMPORTANTES ===== */
.links-importantes {
  min-height: 50px;
  display: flex;
  align-items: center;
}

.list-inline-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0 1rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.list-inline-item:last-child a {
  border-right: none;
}

.list-inline-item a:hover {
  color: #fff;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 991px) {
  .footer-addon {
    text-align: center;
  }

  .partners-section {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .country-selector-wrapper {
    justify-content: center;
  }

  .blog-promo-content {
    text-align: center;
  }

  footer h4 {
    text-align: center;
    margin-top: 2rem;
  }

  .links-column {
    text-align: center;
  }
}

@media (max-width: 767px) {
  footer.p-5 {
    padding: 1rem 1rem !important;
  }

  .footer-links {
    margin-bottom: 1rem;
  }

  .footer-addon {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  footer h4 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    margin-top: 1.5rem;
  }

  .footer-links-list li {
    margin-bottom: 0.25rem;
  }

  .list-inline-item {
    display: block;
    margin: 0.3rem 0;
  }

    .list-inline-item a {
      border-right: none;
      display: block;
      padding: 0.3rem 0;
      font-size: 0.85rem;
    }

  .partners-section .row {
    justify-content: center;
  }

  .partners-section .col-auto {
    margin-bottom: 0.5rem;
  }

  .blog-promo {
    padding-top: 0.5rem;
  }

  .blog-promo-text {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 575px) {
  footer.p-5 {
    padding: 0.8rem 0.8rem !important;
  }

  .logo-svg {
    max-width: 100px;
  }

  .cnpj {
    font-size: 0.8rem;
  }

  .social-media a {
    font-size: 18px;
  }

  footer h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;
  }

  .footer-links-list a {
    font-size: 0.8rem;
    padding: 1px 0;
  }

  .footer-links-list li {
    margin-bottom: 0.2rem;
  }

  .blog-link img {
    max-width: 120px;
  }

  .footer-addon {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
  }

  .logo-associado {
    max-height: 35px;
  }

  .btn-flags {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .logo-content{
    text-align: center;
  }

  .social-media{
    display:flex;
    justify-content: center;
  }
}

/* ===== MELHORIAS VISUAIS ===== */
.dropdown-menu {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

  .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
  }

    .dropdown-menu::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }

/* ===== ALINHAMENTO VERTICAL ===== */
@media (min-width: 992px) {
  .footer-links {
    align-items: stretch;
  }

  .logo-column,
  .links-column {
    display: flex;
    flex-direction: column;
  }
}

#ra-widget-reputation .ra-widget-reputation-holder .ra-widget-reputation-content.ra-widget-great, #ra-widget-reputation .ra-widget-reputation-holder .ra-widget-reputation-content.ra-widget-ra-1000 {
  border: 0px;
  }
