.socios-hero .contenedor-texto h1 {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 60px 0 10px 0;
}

.socios-hero .contenedor-texto p {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 920px;
  margin: clamp(14px, 2vw, 18px) auto 0;
}

@import url('../common.css');
@import url('../variables.css');

/* Hereda estructura de header-cuentas */
.socios-hero {
  background: transparent;
  padding: var(--spacing-hero) 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.socios-hero .contenedor-texto {
  text-align: center;
  color: #ffffff;
  max-width: 980px;
  margin-inline: auto;
  gap: clamp(14px, 2vw, 20px);
  display: grid;
}

.socios-hero h1 {
  color: #ffffff;
  margin: 60px 0 10px 0;
}

.socios-hero p {
  color: rgba(255, 255, 255, 0.92);
  margin: clamp(14px, 2vw, 18px) auto 0;
}

.socios-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(93, 34, 230, 0.15) 0%, rgba(147, 51, 234, 0.1) 50%, transparent 100%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(192, 132, 252, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.socios-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  opacity: 0.6;
}

/* Oculta visual extra para igualar header-cuentas */
.hero-content {
  display: none;
}

.hero-visual {
  display: none;
}

.hero-image {
  display: none;
}

.hero-text {
  animation: hero-slide-in 1s ease-out 0.2s both;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  animation: slideInDown 0.9s ease-out both;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: #fff;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  animation: fadeIn 1s 0.4s ease-out both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: hero-fade-in 1s ease-out 0.6s both;
}

.hero-image {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.3);
}

.hero-image::before {
  content: '👤';
  font-size: 120px;
  color: var(--bg-main);
  opacity: 0.8;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

/* Animaciones */
@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Animaciones de textos como About Us */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta-socio {
    justify-content: center;
    width: 15rem;
    margin: 0 auto;
  }

  .hero-image {
    width: 250px;
    height: 250px;
  }

  .hero-cta-socio .btn {
    width: 12rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    width: 200px;
    height: 200px;
  }

  .hero-cta-socio {
    flex-direction: column;
  }

  .hero-cta-socio .btn {
    text-align: center;
  }
}