/* ============================================================
   LANDING.CSS — Estilos exclusivos de la página principal (index)
   ============================================================ */

/* ─── HERO — CARRUSEL ───────────────────────────────────── */
.hero-carousel {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hc-viewport { overflow: hidden; }
.hc-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.2, 1);
}
.hc-track.no-anim { transition: none; }
.hc-slide { flex: 0 0 100%; min-width: 0; }

.hc-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 28px 78px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 540px;
}

/* Etiqueta superior reutilizable */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hc-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.3vw, 52px);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 18px;
}
.hc-title em { font-style: normal; color: var(--blue); }
.hc-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 440px; margin-bottom: 30px; }

/* ── Slide de marca (intro) ── */
.hc-slide--intro {
  background:
    radial-gradient(circle at 88% 12%, rgba(0,111,255,0.08), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(252,117,44,0.05), transparent 40%),
    var(--white);
}
.hc-tracks { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }

/* Cifras destacadas */
.hc-stats { display: grid; gap: 16px; }
.hc-stat-tile {
  display: flex; align-items: center; gap: 22px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.hc-stat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.hc-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px); font-weight: 800; line-height: 1;
  color: var(--blue); min-width: 102px;
}
.hc-stat-label { font-size: 14px; color: var(--text-mid); line-height: 1.4; font-weight: 500; }

/* ── Slides de curso ── */
.hc-slide--course { color: #fff; }
.hc-slide--pack { background: linear-gradient(135deg, #0a5bd6 0%, #003D99 100%); }
.hc-slide--sec  { background: linear-gradient(135deg, #0e2350 0%, #0a3aa6 100%); }
.hc-course-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.hc-chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 6px;
  background: rgba(255,255,255,0.16); color: #fff; border: 1px solid rgba(255,255,255,0.28);
}
.hc-flag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #FFD27A; }
.hc-title--light { color: #fff; }
.hc-title-accent { display: block; font-size: 0.52em; font-weight: 600; color: rgba(255,255,255,0.72); margin-top: 6px; letter-spacing: 0; }
.hc-points { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 30px; }
.hc-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.92); line-height: 1.5; }
.hc-points li b { color: #fff; font-weight: 700; }

/* Tarjeta de precio */
.hc-price-card {
  background: var(--white); color: var(--text);
  border-radius: 20px; padding: 30px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  max-width: 360px; margin-left: auto;
}
.hc-price-tagline { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.hc-price-row { display: flex; align-items: baseline; gap: 12px; }
.hc-price-old { font-size: 20px; color: var(--muted-2); text-decoration: line-through; }
.hc-price-new { font-family: var(--font-heading); font-size: clamp(44px, 7vw, 58px); font-weight: 800; color: var(--blue); line-height: 1; }
.hc-price-off { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--orange); background: var(--orange-light); padding: 5px 12px; border-radius: 6px; }
.hc-price-meta { display: flex; flex-direction: column; gap: 7px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-mid); }

/* ── Controles ── */
.hc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(255,255,255,0.92); color: var(--text);
  font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; box-shadow: var(--shadow-sm);
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.hc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.hc-prev { left: 16px; } .hc-next { right: 16px; }
.hc-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; z-index: 5; }
.hc-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--border-strong); transition: width var(--t-mid), background var(--t-mid); }
.hc-dot.active { width: 28px; border-radius: 6px; background: var(--blue); }

/* Tema oscuro cuando el slide activo es un curso */
.hero-carousel.hc--dark .hc-arrow { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.32); }
.hero-carousel.hc--dark .hc-arrow:hover { background: rgba(255,255,255,0.24); }
.hero-carousel.hc--dark .hc-dot { background: rgba(255,255,255,0.4); }
.hero-carousel.hc--dark .hc-dot.active { background: #fff; }

@media (max-width: 860px) {
  .hc-inner { grid-template-columns: 1fr; gap: 30px; padding: 40px 22px 60px; min-height: 0; }
  .hc-sub { max-width: none; }
  .hc-price-card { margin: 0; max-width: none; }
  .hc-arrow { display: none; }
}

/* ─── LÍNEAS DE FORMACIÓN (tracks) ──────────────────────── */
.tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.track-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: box-shadow var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.track-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }
.track-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.ti-blue { background: var(--blue-light); }
.ti-teal { background: var(--teal-light); }
.ti-orange { background: var(--orange-light); }
.track-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.track-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.track-certs { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 720px) { .tracks-grid { grid-template-columns: 1fr; } }
@media (max-width: 960px) and (min-width: 721px) { .tracks-grid { grid-template-columns: 1fr 1fr; } }

/* ─── BENEFICIOS ────────────────────────────────────────── */
.why-section { background: var(--white); }
.benefits-slider { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.benefit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0; transition: opacity var(--t-mid);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-mid); }
.benefit-card:hover::after { opacity: 1; }
.benefit-icon-ring { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.bir-blue   { background: var(--blue-light);   box-shadow: 0 0 0 6px rgba(0,111,255,0.06); }
.bir-teal   { background: var(--teal-light);   box-shadow: 0 0 0 6px rgba(0,166,139,0.06); }
.bir-orange { background: var(--orange-light); box-shadow: 0 0 0 6px rgba(252,117,44,0.06); }
.bir-purple { background: var(--purple-light); box-shadow: 0 0 0 6px rgba(124,58,237,0.06); }
.bir-green  { background: #ECFDF5;             box-shadow: 0 0 0 6px rgba(16,185,129,0.06); }
.bir-red    { background: #FEF2F2;             box-shadow: 0 0 0 6px rgba(239,68,68,0.06); }
.benefit-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text); }
.benefit-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.benefit-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; margin-top: auto; }
.bt-blue   { color: var(--blue);   background: var(--blue-light); }
.bt-teal   { color: var(--teal);   background: var(--teal-light); }
.bt-orange { color: var(--orange); background: var(--orange-light); }
@media (max-width: 960px) { .benefits-slider { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-slider { grid-template-columns: 1fr; } }

/* ─── COMPARACIÓN ───────────────────────────────────────── */
.compare-section { background: var(--bg); }
.compare-visual { margin-top: 48px; }
.compare-rows { display: flex; flex-direction: column; gap: 0; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border: 1px solid var(--border); border-top: none; }
.compare-row:first-child { border-top: 1px solid var(--border); }
.compare-row.cr-header { background: var(--text); border-color: var(--text); }
.cr-cell { padding: 14px 18px; font-size: 14px; color: var(--text-mid); border-right: 1px solid var(--border); display: flex; align-items: center; }
.cr-cell:last-child { border-right: none; }
.compare-row:nth-child(even) .cr-cell { background: var(--bg); }
.compare-row.cr-header .cr-cell { background: transparent; border-color: rgba(255,255,255,0.1); }
.cr-feat { font-weight: 500; color: var(--text); }
.cr-talendev { background: rgba(0,111,255,0.04) !important; }
.cr-val-yes { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--teal); }
.cr-val-yes::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 12px; background-position: center;
}
.cr-val-no { display: flex; align-items: center; gap: 8px; color: var(--muted-2); font-size: 13px; }
.cr-val-no::before { content: '✕'; width: 20px; height: 20px; border-radius: 50%; background: #EEF0F5; color: var(--muted-2); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.cr-val-partial { display: flex; align-items: center; gap: 8px; color: var(--orange); font-size: 13px; font-weight: 500; }
.cr-val-partial::before { content: '~'; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-light); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.cr-header-label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.cr-header-talendev { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: #fff; justify-content: center; text-align: center; background: rgba(0,111,255,0.3) !important; border-color: rgba(0,111,255,0.4) !important; }
.cr-header-otros { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); justify-content: center; text-align: center; }
.compare-bottom-banner {
  background: linear-gradient(90deg, var(--blue-light), var(--teal-light));
  border: 1px solid var(--blue-mid); border-top: none;
  border-radius: 0 0 12px 12px; padding: 14px 24px; font-size: 13px; color: var(--blue-dark);
}
.compare-bottom-banner strong { color: var(--blue); }
@media (max-width: 640px) { .compare-row { grid-template-columns: 1.2fr 1fr 1fr; } .cr-cell { padding: 10px; font-size: 12px; } }

/* ─── CURSOS ────────────────────────────────────────────── */
.courses-section { background: var(--white); }
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.course-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.course-img-wrap {
  width: 100%; height: 220px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E8F1FF 0%, #EEF6FF 50%, #E0F5F2 100%);
}
/* Imagen real del curso (cuando se reemplaza el placeholder) */
.course-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.course-img-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(0,111,255,0.03) 18px, rgba(0,111,255,0.03) 36px);
}
.course-img-icon { font-size: 42px; position: relative; z-index: 1; }
.course-img-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); position: relative; z-index: 1; }
.course-img-placeholder { font-size: 11px; color: var(--muted-2); position: relative; z-index: 1; font-style: italic; }
.course-img-wrap.ci-blue   { background: linear-gradient(135deg, #DBEAFE, #EFF6FF, #E8F1FF); }
.course-img-wrap.ci-orange { background: linear-gradient(135deg, #FFEDD5, #FFF7ED, #FFF0E8); }
.course-img-wrap.ci-teal   { background: linear-gradient(135deg, #CCFBF1, #F0FDFB, #E0F5F2); }
.course-top { padding: 24px 24px 0; }
.course-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.course-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
.course-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.course-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.course-features li { font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.course-features li::before { content: '✓'; font-weight: 700; color: var(--teal); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.course-bottom { margin-top: auto; padding: 20px 24px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: var(--white); }
.course-price { font-family: var(--font-heading); }
.price-label { font-size: 11px; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.price-val { font-size: 22px; font-weight: 700; color: var(--blue); }
.price-val .price-old { font-size: 13px; color: var(--muted-2); text-decoration: line-through; margin-right: 6px; }
.coming-card { border-style: dashed; opacity: 0.85; }
.coming-card:hover { transform: none; box-shadow: none; }
.coming-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); background: var(--orange-light); padding: 3px 10px; border-radius: 20px; border: 1px solid var(--orange-mid); margin-bottom: 12px; }
@media (max-width: 720px) { .courses-grid { grid-template-columns: 1fr; } }

/* ─── INSTRUCTOR (resumen genérico) ─────────────────────── */
.instructor-section { background: var(--bg); }
.instructor-generic { text-align: center; max-width: 780px; margin: 0 auto; }
.instructor-generic .section-sub { margin: 0 auto; }
.instructor-mct-badge {
  display: inline-flex; align-items: center; gap: 12px; text-align: left;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  color: #fff; border-radius: 12px; padding: 14px 22px; margin: 28px 0 4px;
}
.mct-badge-icon { font-size: 28px; }
.mct-badge-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.mct-badge-sub { font-size: 12px; opacity: 0.9; }

.instructor-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 36px; text-align: left;
}
.support-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 22px 20px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.support-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.support-icon { font-size: 26px; margin-bottom: 10px; }
.support-title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.support-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .instructor-highlights { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .instructor-highlights { grid-template-columns: 1fr; } }

/* ─── PARTNERS / AVALES ─────────────────────────────────── */
.partners-section { background: var(--white); }
.partners-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 48px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.partner-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.partner-logo-wrap {
  height: 76px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.partner-logo { max-height: 76px; max-width: 240px; object-fit: contain; }
.partner-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  color: var(--text); margin-bottom: 10px;
}
.partner-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
@media (max-width: 600px) { .partners-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ─── TESTIMONIOS ───────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow var(--t-mid); }
.testimonial-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.stars { color: var(--star); font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--white); flex-shrink: 0; }
.av-1 { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.av-2 { background: linear-gradient(135deg, var(--teal), #00796B); }
.av-3 { background: linear-gradient(135deg, var(--orange), #e05a18); }
.av-4 { background: linear-gradient(135deg, #7C3AED, #4F46E5); }
.av-5 { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.av-6 { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.author-name { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--text); }
.author-role { font-size: 12px; color: var(--muted); }
@media (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 960px) and (min-width: 721px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

/* ─── COMUNIDAD SKOOL ───────────────────────────────────── */
.community-section { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); padding: 80px 0; }
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.community-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.community-title { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.02em; }
.community-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 28px; }
.btn-community { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--blue); font-family: var(--font-heading); font-weight: 700; font-size: 15px; padding: 14px 30px; border-radius: 8px; transition: transform var(--t-fast), box-shadow var(--t-fast); box-shadow: 0 4px 20px rgba(0,0,0,0.15); margin-top: 28px; }
.btn-community:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.skool-tier-card { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); overflow: hidden; }
.stc-header { background: rgba(255,255,255,0.08); padding: 18px 24px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.stc-gem { font-size: 22px; }
.stc-tier-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: white; }
.stc-price-tag { margin-left: auto; background: rgba(255,255,255,0.15); color: white; font-family: var(--font-heading); font-size: 18px; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.stc-price-sub { font-size: 11px; opacity: 0.75; font-weight: 400; }
.stc-features { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.stc-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.stc-feat-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.community-features { display: flex; flex-direction: column; gap: 10px; }
.community-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.community-features li::before { content: '✓'; font-weight: 700; color: #A8F0C0; font-size: 13px; flex-shrink: 0; }
.community-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comm-stat { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 20px; }
.comm-stat-num { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.comm-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }
@media (max-width: 720px) { .community-inner { grid-template-columns: 1fr; gap: 36px; } .community-section { padding: 56px 0; } }

/* ─── CONTACTO ──────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-wrap-single { max-width: 640px; margin: 48px auto 0; }
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-heading { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-btn-wrap { margin-top: 20px; }
.final-cta { margin-top: 48px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; text-align: center; }
.final-cta-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.final-cta h3 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.final-cta p { font-size: 16px; color: var(--muted); margin: 0 auto 28px; max-width: 520px; line-height: 1.7; }
.final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .contact-form-wrap { padding: 24px; } }
