/* FOOTER GLOBAL */
#footer {
  padding-bottom: 0px;
  background-color: #edecec;
  font-family: 'Roboto', sans-serif;
  margin-top: 35px;
  background-image: url(https://mural.grupotyc.com/wp-content/uploads/2024/11/5.svg);
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

/* FOOTER SUPERIOR ESCRITORIO */
.footer-top2 {
  max-width: 1005px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-top2 > .col {
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 200px;
  margin-bottom: 15px;
  max-width: 100%;
  gap: 10px;
}
.footer-top2 > .col:first-child > .row {
  flex-wrap: nowrap;
}
.footer-top2 > .col > .row {
  white-space: nowrap;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0;
  flex-direction: column;
  gap: 10px;
}
.footer-top2 > .col > .row:last-child {
  margin-top: auto;
}

.footer-top2 > .col:last-child > .row {
  justify-content: space-between;
}

.footer-top2 .redes-sociales {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}
.footer-top2 strong,
.footer-top2 span,
.footer-top2 a,
.footer-top2 div {
  color: black;
  font-size: 14px;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}

/* FOOTER SUPERIOR MOVIL */
.footer-mobile {
  display: none;
  background-color: #EDECEC;
  padding: 30px 20px;
  color: black;
  font-family: 'Roboto', sans-serif;
}
.footer-mobile-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-mobile-logo {
  text-align: center;
}
.footer-mobile-logo img {
  width: 120px;
}
.footer-mobile-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.footer-mobile .redes-sociales {
  display: flex;
  justify-content: left;
  gap: 10px;
  margin-top: 5px;
}
.footer-mobile .footer-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: black;
  text-decoration: none;
}

/* FOOTER INFERIOR */
.footer-bottom {
  background: #df524b;
  color: #ffffff;
  width: 100%;
}
.footer-bottom-content {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  font-size: 14px;
  text-align: center;
  gap: 15px;
}
.footer-copy,
.footer-legal,
.footer-dev {
  color: #ffffff !important;
}
.footer-copy p,
.footer-dev p {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-legal a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 4px;
}
.footer-legal .sep {
  color: #ffffff;
  padding: 0 8px;
}
.footer-legal a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}
.footer-dev {
  text-align: center;
}
.footer-dev strong {
  font-weight: bold;
  color: #ffffff;
}

/* EFECTO ÍCONOS */
.footer-icon-item a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.footer-icon-item a:hover {
  transform: translateY(-4px);
}

/* VISIBILIDAD RESPONSIVA */
.desktop-only {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.mobile-only {
  display: none;
}
@media (max-width: 1200px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
  .footer-bottom-content {
    display: none !important;
  }
  .footer-bottom-content-mobile {
    display: flex !important;
  }
}

/* FOOTER INFERIOR MÓVIL */
.footer-bottom-content-mobile {
  display: none;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  font-size: 14px;
  padding: 20px 10px;
}
.footer-legal-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer-legal-mobile a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 4px;
}
.footer-legal-mobile a:hover {
  text-decoration: underline;
}

