/* ═══════════════════════════════════════════════════════════════════════════
   TOQ.AR — home_nuevo.css  (clases toq-)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --toq-dark:      #0A0704;
  --toq-mid:       #5A3E28;
  --toq-warm:      #6B4E30;
  --toq-card:      #1E1108;
  --toq-celeste:   #75AADB;
  --toq-gold:      #C9A84C;
  --toq-text:      #F5EEE4;
  --toq-muted:     rgba(245,238,228,.50);
  --toq-border:    rgba(255,200,140,.14);
  --toq-ease:      cubic-bezier(.4,0,.2,1);
}

/* ── Base ───────────────────────────────────────────────────────────────── */
html { background: #0A0704; }
body { background: #0A0704 !important; color: #F5EEE4 !important; }

/* Grano de textura */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  opacity: .45;
}

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.toq-container  { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.toq-section    { padding: 96px 0; }
.toq-section-head { text-align: center; margin-bottom: 64px; }
.toq-section-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.05;
  color: var(--toq-text); margin-bottom: 16px;
}
.toq-section-title em { font-style: normal; color: var(--toq-celeste); }
.toq-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--toq-celeste); margin-bottom: 14px;
}

/* ── Reveal animations ──────────────────────────────────────────────────── */
/* toq-reveal-right sin translateX para evitar overflow horizontal en iOS */
.toq-reveal       { opacity: 0; transform: translateY(40px);  transition: opacity .8s var(--toq-ease), transform .8s var(--toq-ease); }
.toq-reveal-left  { opacity: 0; transform: translateY(20px);  transition: opacity .8s var(--toq-ease), transform .8s var(--toq-ease); }
.toq-reveal-right { opacity: 0; transform: translateY(20px);  transition: opacity .8s var(--toq-ease), transform .8s var(--toq-ease); }
.toq-reveal.visible, .toq-reveal-left.visible, .toq-reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ══ HERO ════════════════════════════════════════════════════════════════ */
.toq-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #000;
  position: relative; overflow: hidden;
}
.toq-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
  animation: toq-orb-float 9s ease-in-out infinite;
}
.toq-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(117,170,219,.12), transparent 70%);
  top: -80px; left: -60px; animation-duration: 10s;
}
.toq-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
  bottom: 0; left: 30%; animation-delay: -5s; animation-duration: 13s;
}
@keyframes toq-orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(24px,-18px) scale(1.04); }
  66%      { transform: translate(-16px,14px) scale(.97); }
}

.toq-hero__text { padding: 140px 60px 80px; }
.toq-hero__tag {
  display: inline-block;
  background: rgba(117,170,219,.12);
  border: 1px solid rgba(117,170,219,.28);
  color: rgba(245,238,228,.65);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 32px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--toq-ease), transform .6s var(--toq-ease);
}
.toq-hero__tag.visible { opacity: 1; transform: translateY(0); }

.toq-hero__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800; letter-spacing: -3px; line-height: .95;
  color: var(--toq-text); margin-bottom: 24px;
}
.toq-hero__title em  { font-style: normal; color: var(--toq-celeste); display: block; }
.toq-hero__title .toq-line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.toq-hero__title .toq-word {
  display: inline-block; margin-right: .22em;
  opacity: 0; transform: translateY(110%);
  transition: opacity .55s var(--toq-ease), transform .55s var(--toq-ease);
}
.toq-hero__title .toq-word.visible { opacity: 1; transform: translateY(0); }

.toq-hero__sub {
  font-size: clamp(15px, 1.5vw, 17px); color: rgba(245,238,228,.55);
  line-height: 1.75; max-width: 440px; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--toq-ease), transform .7s var(--toq-ease);
}
.toq-hero__sub.visible { opacity: 1; transform: translateY(0); }

.toq-hero__cta-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 40px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--toq-ease), transform .6s var(--toq-ease);
}
.toq-hero__cta-row.visible { opacity: 1; transform: translateY(0); }

.toq-hero__link {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: rgba(245,238,228,.55);
  text-decoration: none; transition: color .2s;
}
.toq-hero__link:hover { color: var(--toq-text); }
.toq-hero__link svg { transition: transform .2s; }
.toq-hero__link:hover svg { transform: translateX(4px); }

.toq-hero__trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; transition: opacity .8s var(--toq-ease);
}
.toq-hero__trust.visible { opacity: 1; }
.toq-trust-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: rgba(245,238,228,.4);
}
.toq-trust-pill svg { color: var(--toq-gold); }

/* Video columna derecha */
.toq-hero__video {
  height: 100%; min-height: 100vh;
  position: relative; overflow: hidden;
}
.toq-hero__video video,
.toq-hero__video img {
  width: 100%; height: 100%; object-fit: cover;
}
.toq-hero__video::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, #000 0%, transparent 40%);
}
.toq-hero__video::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
}
.toq-hero__video-placeholder {
  height: 100%; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: #111; text-align: center;
}
.toq-hero__video-placeholder span { font-size: 56px; opacity: .2; }
.toq-hero__video-placeholder p { font-size: 13px; color: rgba(245,238,228,.3); line-height: 1.7; }

/* Scroll hint */
.toq-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(117,170,219,.25); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; z-index: 10;
}
.toq-scroll-mouse { width: 20px; height: 32px; border: 1.5px solid rgba(245,238,228,.2); border-radius: 10px; display: flex; justify-content: center; padding-top: 5px; }
.toq-scroll-dot   { width: 3px; height: 7px; background: var(--toq-celeste); border-radius: 2px; animation: toq-scroll-bounce 2s ease-in-out infinite; }
@keyframes toq-scroll-bounce { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(7px);opacity:.3;} }

/* ── Botones ────────────────────────────────────────────────────────────── */
.toq-btn-glow {
  display: inline-flex; align-items: center;
  background: var(--toq-celeste); color: #0A0704;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: -.2px;
  padding: 14px 32px; border-radius: 12px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: background .2s, transform .2s;
}
.toq-btn-glow::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%); transition: transform .55s var(--toq-ease);
}
.toq-btn-glow:hover::before { transform: translateX(300%); }
.toq-btn-glow:hover { background: #5A95CC; transform: translateY(-2px); }

.toq-btn-primary {
  display: block; width: 100%; text-align: center;
  background: var(--toq-celeste); color: #0A0704;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 800;
  padding: 14px 20px; border-radius: 10px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.toq-btn-primary:hover { background: #5A95CC; transform: translateY(-2px); }

.toq-btn-outline {
  display: block; width: 100%; text-align: center;
  background: transparent;
  border: 1.5px solid rgba(117,170,219,.35); color: var(--toq-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 20px; border-radius: 10px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.toq-btn-outline:hover { border-color: var(--toq-celeste); background: rgba(117,170,219,.08); }

.toq-btn-cta {
  display: inline-block;
  background: #0A0704; color: var(--toq-celeste);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 800;
  padding: 16px 40px; border-radius: 12px; text-decoration: none;
  transition: background .2s, transform .2s; margin-bottom: 28px;
}
.toq-btn-cta:hover { background: #1A0D05; transform: translateY(-2px); }

/* ══ TICKER ══════════════════════════════════════════════════════════════ */
.toq-ticker {
  background: var(--toq-dark);
  border-top: 1px solid rgba(117,170,219,.15);
  border-bottom: 1px solid rgba(117,170,219,.15);
  padding: 13px 0; overflow: hidden; white-space: nowrap;
  width: 100%;
}
.toq-ticker__track {
  display: inline-flex; gap: 24px;
  animation: toq-ticker 32s linear infinite;
}
.toq-ticker__track span { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(117,170,219,.75); }
.toq-ticker__track .toq-dot { color: rgba(117,170,219,.3) !important; }
@keyframes toq-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══ CAJAS ═══════════════════════════════════════════════════════════════ */
.toq-boxes {
  background: linear-gradient(to bottom, #1A0D05 0%, #4A2E14 12%, #9A7A55 35%);
  padding-top: 120px; padding-bottom: 96px;
}
.toq-boxes__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 8px; }

.toq-box {
  background: var(--toq-card); border: 1.5px solid var(--toq-border);
  border-radius: 20px; padding: 28px 24px 24px;
  position: relative; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(48px);
  transition: opacity .7s var(--toq-ease), transform .7s var(--toq-ease), box-shadow .2s;
}
.toq-box.visible { opacity: 1; transform: translateY(0); }
.toq-box:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }

.toq-box--featured {
  border-color: var(--toq-celeste);
  box-shadow: 0 0 0 3px rgba(117,170,219,.16), 0 6px 24px rgba(0,0,0,.25);
  transform: scale(1.03) translateY(48px);
}
.toq-box--featured.visible { transform: scale(1.03) translateY(0); }
.toq-box--featured:hover   { transform: scale(1.03) translateY(-6px); }

.toq-box__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--toq-celeste); color: #0A0704;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.toq-box__visual {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
  background: rgba(117,170,219,.12);
}
.toq-bv-mirtha { background: rgba(201,168,76,.15); }
.toq-bv-mafalda { background: rgba(117,170,219,.15); }
.toq-bv-susana  { background: rgba(139,107,73,.25); }

.toq-box__name {
  font-size: 20px; font-weight: 800; color: var(--toq-text);
  letter-spacing: -.5px; margin-bottom: 10px;
}
.toq-box__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.toq-box__price     { font-size: 32px; font-weight: 800; color: var(--toq-celeste); letter-spacing: -1.5px; }
.toq-box__price-lbl { font-size: 12px; font-weight: 600; color: var(--toq-muted); }
.toq-box__desc      { font-size: 13px; color: var(--toq-muted); line-height: 1.6; margin-bottom: 18px; }

.toq-box__items {
  list-style: none; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 9px; flex: 1;
}
.toq-box__items li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: rgba(245,238,228,.8);
}
.toq-box__items li svg { color: var(--toq-celeste); flex-shrink: 0; }
.toq-boxes__note { text-align: center; font-size: 12px; color: var(--toq-muted); margin-top: 28px; line-height: 1.7; }
.toq-boxes__note a { color: var(--toq-celeste); font-weight: 700; }

/* ══ CÓMO FUNCIONA ═══════════════════════════════════════════════════════ */
.toq-how { background: var(--toq-mid); padding: 100px 0; }
.toq-how__head  { text-align: center; margin-bottom: 72px; }
.toq-how__title { font-size: clamp(32px,4.5vw,52px); font-weight: 800; letter-spacing: -2px; line-height: 1.1; color: var(--toq-text); margin-bottom: 16px; }
.toq-how__title span { color: var(--toq-celeste); }
.toq-how__desc  { font-size: 15px; color: var(--toq-muted); line-height: 1.75; max-width: 520px; margin: 0 auto; }
.toq-how__grid  { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.toq-how__card  { position: relative; padding: 48px 36px 40px; text-align: center; overflow: hidden; }
.toq-how__card-bg {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 140px; font-weight: 900; color: rgba(117,170,219,.07);
  line-height: 1; pointer-events: none; user-select: none;
}
.toq-how__icon  { font-size: 42px; margin-bottom: 20px; display: block; }
.toq-how__card-title { font-size: 22px; font-weight: 800; color: var(--toq-text); margin-bottom: 12px; }
.toq-how__card-desc  { font-size: 14px; color: var(--toq-muted); line-height: 1.75; }
.toq-how__arrow { display: flex; align-items: center; justify-content: center; padding-top: 80px; color: rgba(117,170,219,.35); font-size: 22px; flex-shrink: 0; }

/* ══ STATS ═══════════════════════════════════════════════════════════════ */
.toq-stats { background: var(--toq-celeste); padding: 72px 0; }
.toq-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; }
.toq-stat { padding: 0 20px; border-right: 1px solid rgba(10,7,4,.12); }
.toq-stat:last-child { border-right: none; }
.toq-stat__num {
  font-size: clamp(40px, 5vw, 60px); font-weight: 800; letter-spacing: -2px;
  color: #0A0704; line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.toq-stat__suffix { font-size: .6em; }
.toq-stat__label  { font-size: 13px; font-weight: 600; color: rgba(10,7,4,.55); }

/* ══ TESTIMONIOS ══════════════════════════════════════════════════════════ */
.toq-testimonios { background: var(--toq-warm); padding: 96px 0; }
.toq-testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px;
}
.toq-testi {
  background: rgba(0,0,0,.2); border: 1.5px solid rgba(255,200,140,.12);
  border-radius: 20px; padding: 32px 28px;
  transition: box-shadow .2s;
}
.toq-testi:hover { box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.toq-testi--highlight {
  border-color: var(--toq-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.toq-testi__stars { color: var(--toq-gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.toq-testi__text  { font-size: 15px; line-height: 1.75; color: rgba(245,238,228,.85); margin-bottom: 24px; font-style: italic; }
.toq-testi__author { display: flex; align-items: center; gap: 12px; }
.toq-testi__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--toq-celeste); color: #0A0704;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toq-testi__author strong { display: block; font-size: 14px; font-weight: 700; color: var(--toq-text); }
.toq-testi__author span   { font-size: 12px; color: var(--toq-muted); }

/* ══ CTA FINAL ════════════════════════════════════════════════════════════ */
.toq-cta { background: var(--toq-celeste); padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.toq-cta__orb-1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(10,7,4,.25), transparent 70%); top: -120px; left: -100px; filter: blur(60px); pointer-events: none; animation: toq-orb-float 10s ease-in-out infinite; }
.toq-cta__orb-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(10,7,4,.2), transparent 70%); bottom: -80px; right: -80px; filter: blur(60px); pointer-events: none; animation: toq-orb-float 13s ease-in-out infinite reverse; }
.toq-cta__inner { position: relative; z-index: 1; }
.toq-cta__title {
  font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -2px;
  color: #0A0704; line-height: 1.1; margin-bottom: 16px;
}
.toq-cta__sub   { font-size: 16px; color: rgba(10,7,4,.55); margin-bottom: 36px; }
.toq-cta__trust {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-size: 12px; font-weight: 600; color: rgba(10,7,4,.45);
}

/* ══ RESPONSIVE ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .toq-hero { grid-template-columns: 1fr; }
  .toq-hero__text { padding: 120px 32px 60px; text-align: center; }
  .toq-hero__title em { display: inline; }
  .toq-hero__cta-row { justify-content: center; }
  .toq-hero__trust   { justify-content: center; }
  .toq-hero__video   { display: none; }
  .toq-boxes__grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .toq-box--featured { transform: none; }
  .toq-box--featured.visible { transform: none; }
  .toq-box--featured:hover   { transform: translateY(-4px); }
  .toq-how__grid  { grid-template-columns: 1fr; }
  .toq-how__arrow { padding: 0; transform: rotate(90deg); text-align: center; }
  .toq-stats__grid  { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .toq-stat { border-right: none; border-bottom: 1px solid rgba(10,7,4,.12); padding-bottom: 24px; }
  .toq-stat:nth-child(even), .toq-stat:last-child { border-bottom: none; }
  .toq-testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .toq-container { padding: 0 20px; }
  .toq-hero__text { padding: 100px 20px 64px; }
  .toq-hero__title { letter-spacing: -2px; }
  .toq-how__card  { padding: 32px 20px; }
  .toq-cta { padding: 64px 0; }
  .toq-cta__trust { flex-direction: column; gap: 8px; align-items: center; }
}
