/* Inicio del FOOTER */

.banner-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container-w);
  margin: auto !important;
  background: var( --contact-bg);
  min-height: 300px;
  border-radius: var(--radius);
  gap: 30px;
  padding: 16px;
  text-align: center;
}
.banner-footer h1{
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--foreground) !important;
}
.banner-footer-img{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
  width: 90%;

}

.junta-img{
  content: var(--contact-img-junta);
}

.sied-img{
  content: var(--contact-img-sied);
}

.banner-footer-img img{
  margin-top: 20px !important;
  width: 200px;
  height: auto;
}

.contact-info{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 80%;
}

.contact-info-flex{
    display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 30px;
}

.contact-info p{
  margin: 0 !important;
  color: var(--foreground);
}

@media (max-width: 768px){
  .contact-info{
    justify-content: left;
    width: 75%;
  }

}
  
/* Footer styles */
.main-footer {
  background: transparent;
  color: var(--foreground);
  padding: 3rem 0 1.5rem !important;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: var(--container-w);
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem !important;
}

.footer-section h3 {
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section ul {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 !important;
}

.footer-section ul {
  list-style: none;
  padding: 0 !important;
}

.footer-section ul li {
  margin-bottom: 0.5rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

.footer-section a {
  color: var(--social);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem !important;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem !important;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  color: var(--primary);
}

.social-links a:hover {
  background-color: var(--background-card);
}

.social-links i{
    color: var(--social);
}

.footer-line{
  max-width: var(--container-w);
  height: 1px;
  background: #ffffff;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(33, 97, 150, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem !important;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-image-bottom{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-image-bottom p{
  color: var(--foreground) !important;
  margin: 0 !important;
}

.footer-image-bottom img{
  width: 100px;
  height: auto;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem !important;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}