<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/* === FOOTER GENERAL === */
#footer {
  background-color: #14222F;
  color: var(--Pure-White, #FFF);
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

#footer .container {
  margin: 0 auto;
  padding: 32px 2rem 16px;
  max-width: 1440px;
  box-sizing: border-box;
}

/* === FILA PRINCIPAL === */
#footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

/* === COLUMNAS FLEXIBLES === */
#footer .col {
  flex: 1 1 ;
  box-sizing: border-box;
text-align: left;
}

/* === Columna 1: Logo + descripción === */
#footer .col img {
  margin-bottom: 16px;
  max-width: 15%;
  height: auto;
}

#footer .col p {
margin-bottom: 0;
margin-right: 4rem;
font-size: 13px; 
}

/* === Columna 2: Lista de contacto === */
#footer h5 {
  margin-bottom: 16px;
  font-weight: 600;
	text-align: left;
}

#footer ul.list {
  list-style: none;
  padding: 0;
  margin: 0;}

#footer ul.list li {
margin-bottom: 16px;
display: flex;
align-items: center;
font-size: 13px !important;}

#footer ul.list li i {
  margin-right: 8px;
  color: #fff;
}

/* === Columna 3: Teléfono + redes === */

#footer .call-btn .phone {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin: 8px 0 24px;}

#footer .call-btn .wp {
  font-size: 13px;
  display: block;
  margin: 8px 0 24px;
 display: inline-block;
  margin-left: 8px;  }

#footer .social-icons {
  display: flex;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin-top: 16px;
}

#footer .social-icons li a {
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease;
}

#footer .social-icons li a:hover {
  color: #C13E32;
}

/* === Enlaces === */
#footer a {
  color: #fff;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* === COPYRIGHT === */
.footer-copyright {
  background-color: #14222F;
  color: var(--Pure-White, #FFF);
  font-size: 13px;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  box-sizing: border-box;
}

.footer-copyright a {
  color: #ccc;
}

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

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  #footer .row {
    flex-direction: column;
  }

  #footer .col {
    width: 100%;
    margin-bottom: 24px;
  }

  #footer .col img {
    margin-bottom: 12px;
	 max-width: 20%;
  }
	

  #footer .call-btn .phone {
    margin-bottom: 16px;
  }

  .footer-copyright {
    text-align: left;
    font-size: 12px;
    line-height: 20px;
  }
	
	
#footer .row {gap: 8px;}
}

</pre></body></html>