/* ── HERO SLIDER ── */
.hero-chair-img-wrap {
  background: #f2f2f2;
  border-radius: 32px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slider img.active { opacity: 1; }
.hero-slider-dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.hero-slider-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-slider-dots span.active {
  background: var(--verde);
  transform: scale(1.15);
}

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #5C5C5C 100%); display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 24px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--blanco); line-height: 1.15; margin-bottom: 20px; }
.hero-content h1 span { color: var(--verde); }
.hero-content p { font-size: 15px; color: rgba(255,255,255,.9); line-height: 1.7; margin-bottom: 16px; max-width: 540px; }
.hero-content p:last-of-type { margin-bottom: 28px; }
.hero-content .hero-claim { font-weight: 900; color: var(--blanco); font-size: 16px; border-left: 3px solid var(--verde); padding-left: 16px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--verde); color: var(--blanco); padding: 13px 30px; border-radius: 30px; font-weight: 900; font-size: 14px; text-decoration: none; transition: background .2s, transform .15s; display: inline-block; }
.btn-primary:hover { background: #6a8f00; transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,.7); color: var(--blanco); padding: 12px 28px; border-radius: 30px; font-weight: 400; font-size: 14px; text-decoration: none; transition: border-color .2s, background .2s; display: inline-block; }
.btn-outline:hover { border-color: var(--blanco); background: rgba(255,255,255,.08); }
.hero-chair-card { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 36px 40px; text-align: center; color: var(--blanco); }
.chair-icon { font-size: 90px; line-height: 1; margin-bottom: 14px; }
.hero-chair-card h3 { font-weight: 900; font-size: 18px; margin-bottom: 8px; }
.hero-chair-card p { font-size: 13px; opacity: .75; line-height: 1.6; }
.badge-row { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.badge { background: var(--verde); color: var(--blanco); padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 900; }

/* ── BOTÓN ERES DISTRIBUIDOR ── */
.btn-distribuidor { display: inline-flex; align-items: center; gap: 9px; }
.btn-distribuidor svg { width: 18px; height: 18px; fill: var(--blanco); flex-shrink: 0; }

/* ── DROPDOWN DE CATÁLOGOS ── */
.catalogo-dropdown { position: relative; display: inline-block; }
.catalogo-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.catalogo-caret { transition: transform .2s; font-size: 12px; line-height: 1; }
.catalogo-dropdown.open .catalogo-caret { transform: rotate(180deg); }
.catalogo-menu {
  display: none;
  position: absolute; bottom: calc(100% + 10px); left: 0;
  min-width: 260px; background: var(--blanco);
  border-bottom: 3px solid var(--verde);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -8px 28px rgba(0,0,0,.18);
  overflow: hidden; z-index: 200;
}
.catalogo-dropdown.open .catalogo-menu { display: block; }
.catalogo-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 20px; font-size: 13px;
  color: var(--negro); text-decoration: none;
  transition: background .15s, color .15s;
}
.catalogo-menu a:hover { background: var(--color-bg-soft); color: var(--verde); }
.catalogo-menu a + a { border-top: 1px solid #eee; }
.catalogo-menu a span.ico { font-size: 14px; opacity: .6; }

/* ── STATS ── */
.stats { background: var(--blanco); padding: 48px 24px; border-bottom: 1px solid var(--gris-claro); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 20px 10px; }
.stat-num { font-size: 40px; font-weight: 900; color: var(--verde); line-height: 1; }
.stat-num .gold { color: var(--verde); }
.stat-label { font-size: 13px; color: var(--gris-claro); margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.eyebrow { font-size: 12px; font-weight: 900; color: var(--verde); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.section-header h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--negro); margin-bottom: 14px; }
.section-header p { font-size: 15px; color: var(--gris-oscuro); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.divider { width: 50px; height: 4px; background: var(--verde); margin: 16px auto 0; border-radius: 2px; }

/* ── PRODUCTOS ── */
.productos { padding: 72px 24px; background: var(--color-bg-soft); }
.productos-inner { max-width: 1200px; margin: 0 auto; }
.productos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.prod-card { background: var(--blanco); border-radius: 12px; padding: 28px 20px 22px; text-align: center; transition: transform .25s, box-shadow .25s; cursor: pointer; border: 2px solid transparent; }
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(136,183,0,.12); border-color: var(--verde); }
.prod-icon { font-size: 48px; margin-bottom: 14px; }
.prod-card h3 { font-size: 14px; font-weight: 900; color: var(--negro); margin-bottom: 6px; }
.prod-card p { font-size: 12px; color: var(--gris-oscuro); line-height: 1.5; }
.prod-tag { display: inline-block; margin-top: 10px; background: var(--color-bg-soft); color: var(--verde); font-size: 11px; font-weight: 400; padding: 3px 10px; border-radius: 10px; }

/* ── NOSOTROS ── */
.nosotros { padding: 80px 24px; background: var(--blanco); }

/* ── VIDEOS ── */
.videos-inner { max-width: 1200px; margin: 0 auto; }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 480px) { .videos-grid { grid-template-columns: 1fr; gap: 20px; max-width: 320px; } }
.video-card { display: flex; flex-direction: column; gap: 12px; }
.video-frame { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden; background: var(--negro); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card h3 { font-size: 13px; font-weight: 900; color: var(--negro); text-align: center; line-height: 1.4; }

.nosotros-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.nosotros-visual { border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, var(--negro), var(--gris-oscuro)); min-height: 360px; display: flex; align-items: center; justify-content: center; color: var(--blanco); }
.nosotros-visual-content { text-align: center; padding: 40px; }
.big-num { font-size: 80px; font-weight: 900; color: rgba(255,255,255,.15); line-height: 1; }
.big-label { font-weight: 900; font-size: 22px; margin-top: -16px; color: var(--blanco); }
.big-sub { font-size: 13px; opacity: .75; margin-top: 8px; }
.nosotros-text h2 { font-size: clamp(22px,3vw,34px); font-weight: 900; color: var(--negro); margin-bottom: 16px; line-height: 1.2; }
.nosotros-text > p { font-size: 14px; line-height: 1.8; color: var(--gris-oscuro); }
.features-list { list-style: none; margin: 28px 0; }
.features-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 14px; line-height: 1.6; }
.feature-dot { min-width: 22px; height: 22px; background: var(--verde); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blanco); font-size: 12px; font-weight: 900; margin-top: 1px; }

/* ── TESTIMONIOS / GOOGLE REVIEWS ── */
.testimonios { padding: 80px 24px; background: var(--color-bg-soft); }
.testimonios-inner { max-width: 1200px; margin: 0 auto; }
.google-summary { display: inline-flex; align-items: center; gap: 12px; background: var(--blanco); padding: 10px 18px; border-radius: 30px; box-shadow: 0 4px 14px rgba(0,0,0,.06); margin-top: 16px; }
.google-summary .g-logo { width: 22px; height: 22px; display: inline-flex; }
.google-summary .g-logo svg { width: 100%; height: 100%; }
.google-summary .g-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--negro); }
.google-summary .g-rating strong { font-size: 16px; font-weight: 900; }
.google-summary .g-stars { color: #FFB400; letter-spacing: 1px; }
.google-summary .g-count { color: var(--gris-oscuro); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.test-card { background: var(--blanco); border-radius: 12px; padding: 24px; border-left: 4px solid var(--verde); box-shadow: 0 4px 20px rgba(0,0,0,.06); display: flex; flex-direction: column; }
.test-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; color: var(--blanco); font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.test-meta { flex: 1; min-width: 0; }
.test-author { font-weight: 900; font-size: 14px; color: var(--negro); line-height: 1.3; }
.test-sub { font-size: 11px; color: var(--gris-oscuro); margin-top: 2px; }
.test-g-mark { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }
.test-g-mark svg { width: 100%; height: 100%; }
.stars { color: #FFB400; font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.test-card blockquote { font-size: 14px; line-height: 1.65; color: var(--gris-oscuro); margin: 0; }
.test-cta { text-align: center; margin-top: 40px; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--negro), var(--gris-oscuro)); padding: 72px 24px; text-align: center; }
.cta-section h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: var(--blanco); margin-bottom: 16px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── MVP GRID ── */
.mvp-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.mvp-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  text-align: center;
}
.mvp-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.mvp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  background: #88b700;
  border-radius: 0 0 4px 4px;
}
.mvp-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #88b700;
  margin-bottom: 14px;
}
.mvp-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #111111;
  margin: 0 0 16px;
}
.mvp-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  margin: 0;
}

/* ── QUIÉNES SOMOS ── */
.qs-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
}
.qs-sidebar {
  background: #88b700;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.qs-sidebar-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.qs-sidebar h2 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 32px;
}
.qs-stat {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 24px;
  margin-top: auto;
}
.qs-stat-num {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
.qs-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.qs-body {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qs-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin: 0;
}
.qs-body p strong {
  color: #ffffff;
  font-weight: 900;
}
.qs-tagline {
  font-size: 17px !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  border-left: 3px solid #88b700;
  padding-left: 16px;
  margin-top: 8px !important;
}

/* ── RESPONSIVE HOME ── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 16px; }
  .hero-content p:last-of-type { margin-bottom: 28px; }
  .hero-content .hero-claim { border-left: none; padding-left: 0; border-top: 3px solid var(--verde); padding-top: 14px; display: inline-block; }
  .hero-btns { justify-content: center; }
  .hero .cta-btns { justify-content: center; }
  .hero-chair-card { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .nosotros-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .mvp-grid { grid-template-columns: 1fr; }
  .qs-section { grid-template-columns: 1fr; }
  .qs-sidebar { padding: 40px 32px; }
  .qs-body { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .nosotros-text h2 { text-align: center; }
}
@media (max-width: 640px) {
  .mvp-section { padding: 56px 24px; }
  .mvp-card { padding: 28px 24px; }
  .qs-body { padding: 32px 24px; }
}
