/* Footer Moderno - Avoar Turismo */

.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 92, 0, 0.2);
  font-family: 'Cairo', sans-serif;
  margin-top: 80px;
}

.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-nav {
    padding-left: 8%;
  }
}

/* Logo e Descrição */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer-brand img {
  width: 156px;
  height: auto;
  margin-bottom: 8px;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff5c00;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Títulos das colunas - 18px, apenas títulos em bold */
.footer-info h4,
.footer-nav h4,
.footer-social h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff5c00;
  margin: 0 0 20px 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.footer-info ul,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-info li,
.footer-nav li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-info a,
.footer-info p,
.footer-info li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover,
.footer-nav a:hover {
  color: #ff5c00;
}

.footer-info p {
  margin: 0;
}

/* Links de Navegação */
.footer-nav {
  min-width: 0;
  padding-left: 15%;
  position: relative;
}


.footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ff5c00;
}

/* Copyright */
.footer-bottom {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-copyright a {
  color: #ff5c00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffaa00;
}

.footer-copyright a.footer-admin-link {
  color: inherit;
  text-decoration: none;
}

.footer-copyright a.footer-admin-link:hover {
  color: inherit;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links a {
  color: #ff5c00;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-legal-links a:hover {
  color: #ffaa00;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer-info {
  min-width: 0;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
  background: #ff5c00;
  color: #101010;
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  .auto-container {
    padding: 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-nav {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-info p,
  .footer-info a,
  .footer-info li,
  .footer-nav a {
    font-size: 14px;
    font-weight: 400;
  }

  .footer-brand h3,
  .footer-info h4,
  .footer-nav h4,
  .footer-social h4 {
    font-size: 18px;
    font-weight: 700;
  }

  .footer-copyright,
  .footer-legal-links {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 15px;
    margin-top: 40px;
  }

  .auto-container {
    padding: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer-brand img {
    width: 100px;
  }

  .footer-info p,
  .footer-info a,
  .footer-info li,
  .footer-nav a {
    font-size: 14px;
    font-weight: 400;
  }

  .footer-copyright,
  .footer-legal-links {
    font-size: 12px;
  }

  .footer-brand h3,
  .footer-info h4,
  .footer-nav h4,
  .footer-social h4 {
    font-size: 18px;
    font-weight: 700;
  }
}
