/* HEADER */
/* MENU DE NAVEGACION */
/* FOOTER*/
/* BARRA DE PROGRESO */

:root {
  --primary-color: #03588c;
  --secondary-color: #84d904;
  --tercer-color: #74bf04;
  --text-color: #000000;
  --background-color: #f9f9f9;
  --colortext2: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Arial", sans-serif;
  color: #000000;
  overflow-x: hidden;
}
/* =================================================================================
                                HEADER
================================================================================= */
header {
  background: var(--tercer-color);
  color: var(--colortext2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: shine 3s infinite;
  pointer-events: none;
}

/* ===== INFO BAR ===== */
header .info-bar {
  width: min(100vw, 1400px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== LOCATION ===== */
.location {
  align-self: stretch;
  display: flex;
  align-items: center;
}

header .address {
  padding: 12px 15px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.53vw, 10px);
  height: 100%;
  padding-right: clamp(15px, 1.21vw, 23px);
  font-size: clamp(13px, 1.4vw, 15px);
  white-space: nowrap;
  color: var(--colortext2);
}

header .address::before {
  content: "";
  position: absolute;
  inset: 0;
  left: auto;
  width: calc(100% + 35px);
  background-color: var(--primary-color);
  border-top-right-radius: 999px;
  z-index: -1;
}

header .address svg {
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
  fill: var(--colortext2);
  flex-shrink: 0;
}

.address-text {
  display: inline;
}

.address-short {
  display: none;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding-right: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.follow-text {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 600;
  color: var(--colortext2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 4vw, 34px);
  height: clamp(30px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--colortext2);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  padding: 6px;
}

.social-link svg {
  width: clamp(16px, 2.2vw, 18px);
  height: clamp(16px, 2.2vw, 18px);
  fill: var(--colortext2);
  transition: fill 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.facebook:hover svg { fill: #ffffff; }

.social-link.twitter:hover { background: #000000; }
.social-link.twitter:hover svg { fill: #ffffff; }

.social-link.instagram:hover { 
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); 
}
.social-link.instagram:hover svg { fill: #ffffff; }

.social-link.youtube:hover { background: #ff0000; }
.social-link.youtube:hover svg { fill: #ffffff; }

/* ===== ANIMACIONES ===== */
@keyframes shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.info-bar {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== MEDIA QUERIES - RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  header .address {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    padding: 5px;
  }
  
  .social-link svg {
    width: 17px;
    height: 17px;
  }
}

/* Móvil - Comportamiento adaptativo */
@media (max-width: 768px) {
  header .info-bar {
    width: 100vw;
    padding: 0 5px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  /* Dirección adaptada */
  header .address {
    justify-content: center;
    padding: 10px;
    width: 100%;
    border-radius: 0 0 999px 999px;
  }
  
  header .address::before {
    border-radius: 0 0 999px 999px;
    width: 100%;
    left: 0;
  }
  
  .address-text {
    display: none;
  }
  
  .address-short {
    display: inline;
    font-size: 14px;
    font-weight: 500;
    color: var(--colortext2);
  }
  
  /* Sección social centrada */
  .social-section {
    justify-content: center;
    padding: 5px 0;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .follow-text {
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }
  
  .social-links {
    gap: 8px;
    justify-content: center;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    padding: 7px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* Móvil pequeño - Optimización extrema */
@media (max-width: 480px) {
  /* Dirección ultra compacta */
  header .address {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  header .address svg {
    width: 18px;
    height: 18px;
  }
  
  .address-short {
    font-size: 13px;
  }
  
  /* Reducir animación en móvil para rendimiento */
  header::before {
    animation-duration: 4s;
    opacity: 0.7;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  .follow-text {
    font-size: 12px;
  }
}

/* Muy pequeño - Ocultar texto "Síguenos" si es necesario */
@media (max-width: 360px) {
  .follow-text {
    display: none;
  }
  
  .social-links {
    gap: 6px;
  }
  
  .social-link {
    width: 34px;
    height: 34px;
    padding: 5px;
  }
  
  .social-link svg {
    width: 17px;
    height: 17px;
  }
}

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
  header::before,
  header::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  header::before {
    display: none;
  }
  
  .social-link:hover {
    transform: none;
  }
}

/* ===== UTILIDADES SVG ===== */
.social-link svg,
header .address svg {
  display: block;
}

/* Asegurar que los enlaces sean accesibles */
.social-link:focus,
header .address:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* =================================================================================
                                MENU DE NAVEGACION
================================================================================= */
.hofem-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--background-color);
}

.hofem-nav {
  background: var(--colortext2);
  height: 78px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.hofem-nav.hofem-scrolled {
  height: 65px;
  box-shadow: 0 2px 30px rgba(3, 88, 140, 0.12);
}

/* Logo block */
.hofem-logo-block {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.4s ease;
  min-width: 220px;
}

.hofem-logo-img img {
  max-height: 40px;
  width: auto;
  display: block;
}

.hofem-logo-block:hover {
  background: #024370;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.hofem-logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

.hofem-logo-monogram {
  font-size: 28px;
  font-weight: 800;
  color: var(--colortext2);
  position: relative;
  line-height: 1;
  transition: all 0.4s ease;
}

.hofem-logo-monogram::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hofem-logo-block:hover .hofem-logo-monogram::after {
  transform: scaleX(1);
}

.hofem-logo-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hofem-logo-info strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--colortext2);
  letter-spacing: 3px;
  line-height: 1;
}

.hofem-logo-info small {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Nav links */
.hofem-nav-links {
  list-style: none;
  display: flex;
  align-items: stretch;
  padding-left: 20px;
  flex: 1;
}

.hofem-nav-links li {
  display: flex;
  align-items: stretch;
}

.hofem-nav-links li a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.25s;
  border-bottom: 3px solid transparent;
}

.hofem-nav-links li a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.hofem-nav-links li a:hover {
  color: var(--primary-color);
}

.hofem-nav-links li a:hover::before {
  transform: scaleX(1);
}

/* Right side */
.hofem-nav-right {
  display: flex;
  align-items: center;
  padding-right: 30px;
  gap: 16px;
  margin-left: auto;
}

.hofem-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  background: none;
}

.hofem-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hofem-icon-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(3, 88, 140, 0.05);
  transform: scale(1.1);
}

/* Donate button */
.hofem-btn-donate {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hofem-btn-donate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  border-radius: 22px;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hofem-btn-donate:hover::before {
  transform: scale(1);
}

.hofem-btn-donate:hover {
  color: var(--colortext2);
  box-shadow: 0 8px 25px rgba(3, 88, 140, 0.35);
}

.hofem-btn-donate:hover .hofem-donate-amount {
  color: var(--primary-color);
}

.hofem-btn-donate:active {
  transform: scale(0.96);
}

.hofem-btn-text,
.hofem-donate-amount {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.hofem-donate-icon {
  position: relative;
  z-index: 1;
  animation: hofem-heartbeat 2s ease infinite;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@keyframes hofem-heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.2);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.15);
  }

  70% {
    transform: scale(1);
  }
}

.hofem-donate-amount {
  background: var(--primary-color);
  color: var(--colortext2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 10px;
  transition: background 0.4s, color 0.4s;
  white-space: nowrap;
}

.hofem-btn-donate:hover .hofem-donate-amount {
  background: var(--secondary-color);
}

/* Progress indicator */
.hofem-donation-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--secondary-color);
  animation: hofem-progress-wave 4s ease-in-out infinite;
  transform-origin: left;
  z-index: 10;
}

@keyframes hofem-progress-wave {
  0% {
    width: 0%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

/* Burger */
.hofem-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  align-self: center;
  margin-right: 20px;
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hofem-burger span {
  width: 28px;
  height: 2px;
  background: var(--primary-color);
  display: block;
  transition: all 0.4s ease;
  transform-origin: center;
}

.hofem-burger.hofem-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hofem-burger.hofem-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hofem-burger.hofem-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.hofem-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--colortext2);
  z-index: 2000;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hofem-mobile-nav.hofem-open {
  transform: translateY(0);
}

.hofem-mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin-bottom: 20px;
}

.hofem-mob-head .hofem-logo-m {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 3px;
}

.hofem-mob-head .hofem-logo-m em {
  color: var(--secondary-color);
  font-style: normal;
}

.hofem-mob-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  line-height: 1;
  transition: transform 0.3s, color 0.3s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hofem-mob-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hofem-mob-close:hover {
  transform: rotate(90deg);
  color: var(--primary-color);
}

.hofem-mob-links {
  display: flex;
  flex-direction: column;
}

.hofem-mob-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.hofem-mob-links a::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2303588c'%3E%3Cpath d='M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-10px);
}

.hofem-mob-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.hofem-mob-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hofem-mob-donate {
  margin-top: 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s;
}

.hofem-mob-donate svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hofem-mob-donate:hover {
  background: var(--tercer-color);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {

  .hofem-nav-links,
  .hofem-nav-right {
    display: none;
  }

  .hofem-burger {
    display: flex;
  }

  .hofem-mobile-nav {
    display: flex;
  }

  .hofem-logo-block {
    min-width: 0;
    clip-path: none;
    padding: 0 16px;
  }
}
/* =================================================================================
                              FOOTER 
================================================================================= */
.homfoo-1 {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-color) 85%, #000) 0%, 
    color-mix(in srgb, var(--primary-color) 65%, #000) 40%, 
    var(--primary-color) 100%);
  color: var(--colortext2);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  line-height: 1.6;
}

.homfoo-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--tercer-color), var(--primary-color), var(--secondary-color));
  background-size: 200%;
  animation: homfoo-slide-bar 3s linear infinite;
}

/* Floating orbs background */
.homfoo-1-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.homfoo-1-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: homfoo-float-orb 8s ease-in-out infinite;
}

.homfoo-1-orb:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  top: -100px;
  left: -50px;
  animation-delay: 0s;
}

.homfoo-1-orb:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  bottom: -50px;
  right: 10%;
  animation-delay: 2s;
}

.homfoo-1-orb:nth-child(3) {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  top: 30%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes homfoo-float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.homfoo-1-main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.homfoo-1-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.homfoo-1-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-decoration: none;
}

.homfoo-1-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  animation: homfoo-logo-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 4px color-mix(in srgb, var(--secondary-color) 40%, transparent));
}

@keyframes homfoo-logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 4px color-mix(in srgb, var(--secondary-color) 40%, transparent)); }
  50% { filter: drop-shadow(0 0 12px color-mix(in srgb, var(--secondary-color) 80%, transparent)); }
}

.homfoo-1-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--colortext2);
  letter-spacing: 2px;
}

.homfoo-1-logo-text span {
  color: var(--secondary-color);
}

.homfoo-1-desc {
  font-size: 15px;
  line-height: 1.9;
  color: color-mix(in srgb, var(--colortext2) 70%, transparent);
  margin-bottom: 30px;
  font-weight: 400;
  text-align: justify;
}

/* Social icons */
.homfoo-1-socials {
  display: flex;
  gap: 14px;
}

.homfoo-1-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--secondary-color) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--colortext2) 75%, transparent);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.homfoo-1-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.homfoo-1-social-link:hover::before {
  transform: scale(1);
}

.homfoo-1-social-link:hover svg {
  color: var(--colortext2);
  transform: rotate(360deg);
}

.homfoo-1-social-link svg {
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  fill: currentColor;
}

/* Column titles */
.homfoo-1-col-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 22px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.homfoo-1-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  animation: homfoo-expand-line 2s ease-in-out infinite alternate;
}

@keyframes homfoo-expand-line {
  from { width: 30px; }
  to { width: 50px; }
}

/* Links */
.homfoo-1-links {
  list-style: none;
}

.homfoo-1-links li {
  margin-bottom: 12px;
}

.homfoo-1-links a {
  color: color-mix(in srgb, var(--colortext2) 65%, transparent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s ease;
  position: relative;
}

.homfoo-1-links a .homfoo-1-link-arrow {
  width: 15px;
  height: 15px;
  fill: var(--secondary-color);
  transform: translateX(-5px);
  opacity: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.homfoo-1-links a:hover {
  color: var(--colortext2);
  transform: translateX(5px);
}

.homfoo-1-links a:hover .homfoo-1-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.homfoo-1-newsletter-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--colortext2) 60%, transparent);
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 400;
}

.homfoo-1-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.homfoo-1-input {
  background: color-mix(in srgb, var(--colortext2) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--colortext2) 12%, transparent);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--colortext2);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.homfoo-1-input::placeholder {
  color: color-mix(in srgb, var(--colortext2) 40%, transparent);
}

.homfoo-1-input:focus {
  border-color: var(--secondary-color);
  background: color-mix(in srgb, var(--secondary-color) 5%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondary-color) 10%, transparent);
}

.homfoo-1-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--tercer-color));
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.homfoo-1-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: color-mix(in srgb, var(--colortext2) 30%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.homfoo-1-btn:hover::after {
  width: 300px;
  height: 300px;
}

.homfoo-1-btn:hover {
  transform: translateY(-2px);
  color: var(--colortext2);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--secondary-color) 40%, transparent);
}

.homfoo-1-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.homfoo-1-btn span {
  position: relative;
  z-index: 1;
}

/* Divider */
.homfoo-1-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--colortext2) 10%, transparent), transparent);
  margin-bottom: 30px;
}

/* Bottom bar */
.homfoo-1-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.homfoo-1-copy {
  font-size: 14px;
  color: color-mix(in srgb, var(--colortext2) 50%, transparent);
  font-weight: 400;
}

.homfoo-1-copy strong {
  color: var(--secondary-color);
}

.homfoo-1-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.homfoo-1-legal a {
  font-size: 15px;
  color: color-mix(in srgb, var(--colortext2) 45%, transparent);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.homfoo-1-legal a:hover {
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .homfoo-1-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .homfoo-1-grid {
    grid-template-columns: 1fr;
  }

  .homfoo-1-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =================================================================================
                                BARRA DE PROGRESO
================================================================================= */
.tercondi-progress-bar {
  position: sticky;
  top: 0;
  z-index: 10000;
  height: 4px;
  background: rgba(3, 88, 140, .15);
}

.tercondi-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  transition: width .1s linear;
}