html {
  scroll-behavior: smooth;
}

.hero-socios {
  position: relative;
  padding: 140px 20px 100px;
  background: linear-gradient(
    180deg,
    #f3f4f8 0%,
    #ffffff 70%
  );
  overflow: hidden;
}

.hero-socios {
  position: relative;
  padding: 160px 20px 120px;
  background: linear-gradient(
    90deg,
    #f4f6f9 0%,
    #ffffff 40%,
    #ffffff 100%
  );
  overflow: hidden;
}

.hero-socios::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(42, 52, 129, 0.15),
    transparent 70%
  );
  z-index: 0;
}

.hero-socios .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #2a3481;
  background: rgba(42, 52, 129, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.1;
  color: #111827;
  margin-top: 100px;
}

.hero-highlight {
  color: #2a3481;
}

.hero-subtext {
  font-size: 17px;
  color: #6b7280;
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  display: inline-block;
}

.hero-character {
  max-height: 920px;
  position: relative;
  z-index: 2;
}

.subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.175;
  color: var(--color-primary-500);
  width: fit-content;
  margin-bottom: 14px;
  text-align: center;
}

.hero-floating {
  position: absolute;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  text-align: left;
  width: 220px;
}

.hero-card-1 {
  top: 40px;
  right: -110px;
}

.hero-card-2 {
  bottom: 40px;
  left: -80px;
  width: 260px;
}

.mini-badge {
  font-size: 10px;
  background: #a5c230;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.mini-title {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 5px;
}

.hero-floating strong {
  font-size: 18px;
  color: #111827;
}

.hero-floating ul {
  padding-left: 18px;
  margin: 0;
}

.hero-floating li {
  font-size: 12px;
  color: #374151;
  margin-bottom: 6px;
}

.editorial-section {
  padding: 4rem 0;
  background: #ffffff;
}

.title {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.175;
  color: var(--color-heading);
  margin: 0;
  padding-top: 5rem !important;
}

.info-card {
  background: #e6e6e6;
  padding: 40px 36px;
  border-radius: 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.card-subtitle {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 8px;
  color: #1f1f1f;
}

.feature-title {
  color: #2a3481;
  font-weight: 500;
}

.card-btn {
  margin-top: 20px;
  align-self: flex-start;
  padding: 6px 18px;
  font-size: 13px;
  background: #2a3481b7;
  color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.2s ease;
}

.card-btn:hover {
  background: #c2c2c2;
}

.image-wrapper {
  height: 100%;
  min-height: 320px; 
  display: flex;
  align-items: stretch;
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.95);
}

.cadenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.cadenas-grid-aerolineas {
  display: flex;        
  justify-content: center;   
  gap: 28px;
  margin-top: 50px;
  flex-wrap: wrap;           
}

.logo-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.logo-wrapper {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.logo-wrapper img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.25s ease;
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.logo-name {
  font-size: 13px;
  color: #444;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 991px) {

  .hero-socios {
    padding: 120px 20px 80px;
  }

  .hero-card {
    width: 320px;
    height: 420px;
  }

  .hero-character {
    max-height: 380px;
  }

  .hero-title {
    font-size: 2rem;
  }
}
