/* ================================================================
   HOME CSS — SANTIAGO SCORTS | PREMIUM REDESIGN 2025
================================================================ */

body { padding-top: 76px; }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 80px 48px 96px;
  overflow: hidden;
  position: relative;
}

/* Decoración de fondo sutil */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(230,0,126,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Hero Content ---- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fucsia);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--fucsia);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 5.5vw, 78px);
  line-height: 1.04;
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--fucsia);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-trust-dot {
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-primary);
  flex-shrink: 0;
  font-weight: 700;
}

/* ---- Hero Visual ---- */
.hero-visual {
  position: relative;
  height: 580px;
}

.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.25fr 1fr;
  gap: 12px;
}

.hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.hero-img:hover img { transform: scale(1.04); }

.hero-img.main {
  grid-row: 1 / 3;
  border-radius: var(--r-xl);
}
.hero-img.tr { grid-column: 2; grid-row: 1; }
.hero-img.br { grid-column: 2; grid-row: 2; }

/* Floating info badges */
.hero-badge {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  z-index: 2;
  animation: scaleIn .5s var(--ease-spring) both;
}
.hero-badge.badge-bottom { bottom: 28px; left: -24px; animation-delay: .2s; }
.hero-badge.badge-top    { top: 36px; right: -20px; animation-delay: .4s; }

.badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.badge-icon.blue { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.badge-icon.green { background: rgba(37,211,102,0.10); color: #1a9248; }
.badge-icon svg { width: 18px; height: 18px; }

.badge-text strong {
  display: block;
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1;
}
.badge-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 48px;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trust-icon {
  width: 34px; height: 34px;
  background: var(--fucsia-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fucsia);
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ================================================================
   SECTION SHARED
================================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fucsia);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--fucsia);
  flex-shrink: 0;
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
}

/* ================================================================
   PROFILES SECTION
================================================================ */
.profiles-section {
  padding: 104px 48px;
}
.profiles-header {
  max-width: 1280px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

/* ---- Grid ---- */
.profiles-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Card ---- */
.profile-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.profile-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}
.profile-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

/* Media */
.profile-image {
  position: relative;
  overflow: hidden;
}
.profile-card:not(.featured) .profile-image { height: 286px; }
.profile-card.featured        .profile-image { min-height: 400px; }

.profile-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.profile-card:hover .profile-image img { transform: scale(1.06); }

/* Badges */
.profile-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--fucsia);
  color: #fff;
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.profile-badge.gold { background: var(--fucsia-dark); }

.profile-rating {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.92);
  padding: 5px 8px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.profile-rating svg { width: 12px; height: 12px; fill: #FFB800; }

/* Card info */
.profile-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.profile-card.featured .profile-info { padding: 36px; justify-content: center; }

.profile-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.3px;
}
.profile-card.featured .profile-name { font-size: 32px; }

.profile-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.profile-desc {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--text-secondary);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tags */
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.profile-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid var(--border);
}

/* CTA */
.profile-actions { margin-top: auto; }

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fucsia);
  transition: gap .2s var(--ease), color .2s;
  text-decoration: none;
}
.profile-btn:hover { gap: 12px; color: var(--fucsia-dark); }

.profile-card.featured .profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--fucsia);
  color: #fff;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(230,0,126,0.22);
  transition: all .2s var(--ease);
}
.profile-card.featured .profile-btn:hover {
  background: var(--fucsia-dark);
  box-shadow: var(--shadow-fucsia);
  gap: 14px;
}

/* ================================================================
   FEATURES SECTION
================================================================ */
.features-section {
  padding: 104px 48px;
  background: var(--bg-white);
}
.features-inner { max-width: 1280px; margin: 0 auto; }

.features-header { text-align: center; margin-bottom: 72px; }
.features-header .section-desc { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item { display: flex; flex-direction: column; gap: 18px; }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background .3s, color .3s;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item:hover .feature-icon { background: var(--fucsia); color: #fff; }

.feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ================================================================
   HOW IT WORKS
================================================================ */
.how-section { padding: 104px 48px; }
.how-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 96px;
  align-items: start;
}
.how-left { position: sticky; top: 96px; }
.how-left .section-desc { margin-top: 16px; }

.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-item:first-child { border-top: 1px solid var(--border); }

.step-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--border-md);
  font-weight: 300;
  line-height: 1;
  padding-top: 2px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ================================================================
   FAQ
================================================================ */
.faq-section {
  padding: 104px 48px;
  background: var(--bg-white);
}
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-desc { margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  list-style: none;
  gap: 24px;
  transition: color .2s;
  -webkit-user-select: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--fucsia); }

.faq-arrow {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .3s var(--ease), background .2s, border-color .2s, color .2s;
}
.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  background: var(--fucsia);
  border-color: var(--fucsia);
  color: #fff;
}
.faq-arrow svg { width: 12px; height: 12px; }

.faq-answer {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 680px;
}

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section {
  padding: 120px 48px;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%; left: -5%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(230,0,126,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,0,126,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fucsia);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 60px);
  color: #fff;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--fucsia); }
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1200px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 1024px) {
  .hero { padding: 64px 24px 80px; }
  .hero-inner { gap: 56px; }
  .profiles-section { padding: 80px 24px; }
  .features-section { padding: 80px 24px; }
  .how-section { padding: 80px 24px; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-left { position: static; }
  .faq-section { padding: 80px 24px; }
  .cta-section { padding: 96px 24px; }
  .trust-bar { padding: 20px 24px; }
}

@media (max-width: 768px) {
  body { padding-top: 68px; }
  .hero { min-height: auto; padding: 52px 20px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { height: 380px; }
  .hero-badge { display: none; }
  .profiles-section { padding: 72px 20px; }
  .profiles-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .profiles-grid { grid-template-columns: 1fr; }
  .profile-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .profile-card.featured .profile-image { min-height: 280px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-bar-inner { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
  .trust-divider { display: none; }
  .faq-section { padding: 72px 20px; }
  .cta-section { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
