/* =============================================================
   AVANTRA SOLUTIONS — styles.css
   Archetype: Glassmorphism Modern · paleta corporativa/confiable
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #eef2f9;          /* cool off-white */
  --bg-2:      #e4eaf5;
  --surface:   #ffffff;
  --ink:       #0b1b34;          /* deep navy */
  --ink-soft:  #3a4a66;
  --ink-mute:  #6b7894;
  --accent:    #1f5fff;          /* confident corporate blue */
  --accent-d:  #1647c8;
  --accent-2:  #0bb7c4;          /* teal */
  --accent-3:  #6366f1;          /* indigo (mesh variety) */
  --gold:      #e0a83e;          /* warm premium touch, sparing */
  --glass:     rgba(255,255,255,0.55);
  --glass-2:   rgba(255,255,255,0.30);
  --line:      rgba(11,27,52,0.12);
  --line-soft: rgba(11,27,52,0.07);
  --shadow:    0 24px 60px -28px rgba(11,27,52,0.35);
  --shadow-sm: 0 10px 30px -18px rgba(11,27,52,0.4);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --radius: 22px;
  --radius-sm: 14px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.06; letter-spacing: -0.02em; font-family: var(--display); font-weight: 800; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--display);
  font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.kicker {
  font-family: var(--display);
  font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}

.glass {
  background: rgba(255,255,255,0.78);   /* solid fallback */
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
}
@supports ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  .glass {
    background: var(--glass);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    backdrop-filter: blur(22px) saturate(170%);
  }
}

/* =============================================================
   4. Typography scale
   ============================================================= */
h1, .hero-title { font-size: clamp(2.1rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.hero-title em, h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--accent); letter-spacing: -0.01em; }

/* =============================================================
   5. Components — buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  transition: transform .35s var(--ease-out), background .3s var(--ease-out), box-shadow .35s var(--ease-out), color .3s;
  will-change: transform;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(31,95,255,.6);
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(31,95,255,.7); }
.btn-ghost {
  background: rgba(255,255,255,.5);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1rem;
}
.nav.is-stuck {
  background: rgba(238,242,249,.8);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; }
.brand-dot { color: var(--accent-2); }
.nav-links { display: none; gap: 1.7rem; margin-left: auto; }
.nav-links a {
  font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto; padding: .5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: grid; gap: .3rem;
  max-height: 0; overflow: hidden;
  padding-inline: var(--gutter);
  background: rgba(238,242,249,.96);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  transition: max-height .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav-mobile.is-open { max-height: 420px; padding-block: 1rem 1.4rem; box-shadow: var(--shadow-sm); }
.nav-mobile a { font-family: var(--display); font-weight: 600; padding: .8rem .2rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.nav-mobile .btn { margin-top: .6rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 92vh; min-height: 92svh;
  display: flex; align-items: center;
  padding-block: clamp(5rem, 12vh, 9rem) clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: -20%;
  z-index: 0;
  background:
    radial-gradient(40% 38% at 18% 28%, rgba(31,95,255,.55) 0%, transparent 60%),
    radial-gradient(42% 40% at 82% 22%, rgba(11,183,196,.5) 0%, transparent 60%),
    radial-gradient(46% 44% at 60% 88%, rgba(99,102,241,.42) 0%, transparent 62%),
    radial-gradient(40% 40% at 30% 80%, rgba(224,168,62,.22) 0%, transparent 60%);
  filter: blur(70px) saturate(135%);
  animation: meshDrift 30s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.18) rotate(8deg); }
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 35%, #000 0%, transparent 80%);
  mask-image: radial-gradient(80% 70% at 50% 35%, #000 0%, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero-title { margin-bottom: 1.3rem; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 1rem; }
.chip {
  display: flex; flex-direction: column; gap: .15rem;
  padding: 1rem 1.4rem; border-radius: var(--radius-sm);
}
.chip strong { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--ink); letter-spacing: -.03em; }
.chip span { font-size: .85rem; color: var(--ink-mute); }

/* =============================================================
   8. Value
   ============================================================= */
.value { padding-block: clamp(4rem, 9vw, 7rem); }
.value-lead { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-family: var(--display); font-weight: 500; line-height: 1.35; letter-spacing: -.02em; max-width: 24ch; max-width: 60ch; color: var(--ink); margin-bottom: 3rem; }
.value-lead strong { color: var(--accent); font-weight: 700; }
.value-points { display: grid; gap: 1.5rem; }
.vp { padding-top: 1.4rem; border-top: 1px solid var(--line); }
.vp-ico { color: var(--accent-2); font-size: .9rem; }
.vp h3 { margin: .6rem 0 .5rem; }
.vp p { color: var(--ink-soft); font-size: .98rem; }

/* =============================================================
   9. Section heads
   ============================================================= */
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .8rem; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* =============================================================
   10. Services
   ============================================================= */
.services { padding-block: clamp(4rem, 9vw, 7rem); }
.svc-grid { display: grid; gap: 1.4rem; margin-bottom: 3rem; }
.svc-card {
  padding: 2rem 1.8rem; border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -30px rgba(11,27,52,.45); }
.svc-ico {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1.2rem;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(31,95,255,.14), rgba(11,183,196,.14));
}
.svc-card h3 { margin-bottom: .6rem; }
.svc-card > p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.1rem; }
.svc-feats { display: grid; gap: .5rem; margin-bottom: 1.3rem; }
.svc-feats li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: var(--ink-soft); }
.svc-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; }
.svc-price { margin-top: auto; margin-bottom: 1.1rem; font-size: .95rem; color: var(--ink-mute); display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.svc-price strong { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--ink); letter-spacing: -.03em; }
.svc-price .plus { color: var(--ink-soft); font-weight: 600; }
.svc-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.svc-actions .btn { flex: 1 1 auto; }

/* Calculadora */
.calc { border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.8rem); }
.calc-head { margin-bottom: 1.8rem; max-width: 52ch; }
.calc-head h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: .5rem; }
.calc-sub { color: var(--ink-soft); }
.calc-body { display: grid; gap: 2rem; align-items: center; }
.calc-field label { display: block; font-family: var(--display); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: 1rem; }
.calc-days { font-family: var(--display); font-weight: 800; font-size: 1.2rem; margin-top: 1rem; color: var(--ink); }
.calc-days span { color: var(--accent); font-size: 1.6rem; }
.calc-result {
  background: linear-gradient(135deg, var(--ink) 0%, #14305c 100%);
  color: #fff; border-radius: var(--radius-sm); padding: 1.8rem;
  text-align: center;
}
.calc-total-label { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.calc-total { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 7vw, 3.6rem); letter-spacing: -.04em; line-height: 1; margin: .4rem 0; }
.calc-total .cur { font-size: .5em; vertical-align: super; color: var(--accent-2); }
.calc-rate { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.3rem; min-height: 1.1em; }
.calc-result .btn { width: 100%; }
.calc-note { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .9rem; }

/* range input */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--p,50%), rgba(11,27,52,.12) var(--p,50%));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 4px solid var(--accent);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .2s var(--ease-out);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 4px solid var(--accent); cursor: pointer;
}

/* =============================================================
   11. Steps
   ============================================================= */
.steps { padding-block: clamp(4rem, 9vw, 7rem); }
.steps-grid { display: grid; gap: 1.4rem; }
.step { padding: 1.8rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.step-num { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--accent); letter-spacing: -.03em; }
.step h3 { margin: .8rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* =============================================================
   12. About
   ============================================================= */
.about { position: relative; padding-block: clamp(4rem, 9vw, 7rem); overflow: hidden; }
.about-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 60% at 80% 30%, rgba(31,95,255,.16) 0%, transparent 60%),
    radial-gradient(45% 55% at 12% 80%, rgba(11,183,196,.16) 0%, transparent 60%);
  filter: blur(40px);
}
.about-inner { position: relative; z-index: 1; display: grid; gap: 2.6rem; }
.about-text h2 { margin: .4rem 0 1.2rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 56ch; }
.about-text .btn { margin-top: .8rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { padding: 1.6rem 1.4rem; border-radius: var(--radius-sm); }
.stat strong { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--accent); letter-spacing: -.03em; }
.stat span { font-size: .88rem; color: var(--ink-soft); }

/* =============================================================
   13. FAQ
   ============================================================= */
.faq { padding-block: clamp(4rem, 9vw, 7rem); }
.faq-list { display: grid; gap: 1rem; }
.faq-item { border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  padding: 1.3rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 700; font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem 1.3rem; }
.faq-a p { color: var(--ink-soft); }

/* =============================================================
   14. CTA / Contact
   ============================================================= */
.cta { position: relative; padding-block: clamp(4rem, 9vw, 7rem); overflow: hidden; }
.cta-mesh {
  position: absolute; inset: -10%;
  background:
    radial-gradient(45% 50% at 20% 30%, rgba(31,95,255,.4) 0%, transparent 60%),
    radial-gradient(45% 50% at 85% 70%, rgba(11,183,196,.36) 0%, transparent 60%),
    radial-gradient(40% 45% at 60% 10%, rgba(99,102,241,.3) 0%, transparent 60%);
  filter: blur(60px) saturate(130%);
}
.cta-inner { position: relative; z-index: 1; display: grid; gap: 2.4rem; }
.cta-text h2 { margin-bottom: .9rem; }
.cta-text p { color: var(--ink-soft); max-width: 44ch; margin-bottom: 1.6rem; }
.cta-contact { display: grid; gap: .9rem; }
.cta-contact li { display: flex; align-items: center; gap: .8rem; font-family: var(--display); font-weight: 600; }
.cc-ico { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.cta-contact a:hover { color: var(--accent); }

.cta-form { padding: clamp(1.6rem, 4vw, 2.4rem); border-radius: var(--radius); display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--display); font-weight: 600; font-size: .85rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.7);
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,95,255,.15);
}
.field textarea { resize: vertical; }
.cta-form .btn { margin-top: .4rem; }
.form-status { font-size: .9rem; font-weight: 600; color: var(--accent-2); min-height: 1.2em; text-align: center; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--ink); color: #cdd6e6; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-inner { display: grid; gap: 2rem; padding-bottom: 2.4rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.4rem; }
.footer-brand p { color: #93a1bd; font-size: .92rem; max-width: 36ch; margin-top: .7rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a, .footer-contact a, .footer-contact span { color: #cdd6e6; font-size: .95rem; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: grid; gap: .6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; font-size: .82rem; color: #7e8cab; }

/* =============================================================
   16. WhatsApp float
   ============================================================= */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.1) rotate(-6deg); }

/* =============================================================
   17. Effects — reveals, float
   ============================================================= */
.reveal.is-visible { opacity: 1; transform: none; }
/* Reveals only hide when JS is active (class .js on <html>). Without JS → visible. */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Defensive: split-text elements must never stay invisible */
.reveal[data-split] { opacity: 1; transform: none; }

[data-float] { animation: floatBob 6s var(--ease-soft) infinite; animation-delay: var(--d, 0s); }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.is-ready .hero-title { will-change: auto; }

/* =============================================================
   17b. Marquee dinámico
   ============================================================= */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); background: rgba(255,255,255,.45); }
.marquee-track { display: flex; gap: 2.6rem; width: max-content; padding-block: .95rem; animation: marq 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .6rem; white-space: nowrap; }
.marquee-track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }
@keyframes marq { to { transform: translateX(-50%); } }

/* =============================================================
   17c. Marcos de foto (placeholder elegante, reemplazable)
   ============================================================= */
.photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%); min-height: 220px; display: grid; place-items: center; box-shadow: var(--shadow); }
.photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-label { position: relative; z-index: 1; text-align: center; font-family: var(--display); font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.95); display: grid; gap: .5rem; justify-items: center; padding: 1.2rem; }
.ph-label svg { width: 32px; height: 32px; opacity: .92; }

.hero-visual { margin-top: 2.4rem; }
.hero-visual .photo-frame { min-height: 260px; }

/* =============================================================
   17d. Video
   ============================================================= */
.video { padding-block: clamp(4rem, 9vw, 7rem); }
.video-frame { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #0b1b34, #14305c); display: grid; place-items: center; box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--accent); display: grid; place-items: center; transition: transform .3s var(--ease-bounce); }
.video-frame:hover .video-play { transform: scale(1.08); }
.video-play svg { width: 30px; height: 30px; margin-left: 5px; }
.video-cap { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-family: var(--display); font-weight: 600; font-size: .9rem; }

/* =============================================================
   17e. Formas de pago
   ============================================================= */
.pay { padding-block: clamp(3rem, 7vw, 5rem); }
.pay-grid { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1rem; }
.pay-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .85rem 1.25rem; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-family: var(--display); font-weight: 700; font-size: .95rem; box-shadow: var(--shadow-sm); }
.pay-badge svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.pay-note { color: var(--ink-soft); font-size: .95rem; }

/* =============================================================
   17f. Galería
   ============================================================= */
.gallery { display: grid; gap: 1rem; margin-top: 2.2rem; }

/* =============================================================
   18. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .svc-actions .btn { flex: 0 1 auto; }
}
@media (min-width: 720px) {
  .value-points { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .vp { border-top: none; border-left: 1px solid var(--line); padding: 0 0 0 1.5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-body { grid-template-columns: 1.2fr .9fr; }
  .cta-inner { grid-template-columns: 1fr 1.05fr; align-items: start; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 960px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .nav-toggle, .nav-mobile { display: none; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .about-inner { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4rem; }
}
@media (min-width: 1280px) {
  .svc-card { padding: 2.2rem 2rem; }
}

/* =============================================================
   19. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh { animation: none; }
  [data-float] { animation: none; }
}

/* =============================================================
   20. Responsive — nuevos componentes
   ============================================================= */
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .hero-visual .photo-frame { min-height: 320px; }
}
@media (min-width: 960px) {
  .hero-visual .photo-frame { min-height: 360px; }
}

.photo-frame svg.illus,.video-frame svg.illus{position:absolute;inset:0;width:100%;height:100%;}

/* =============================================================
   21. Panel de servicios (reemplaza el video)
   ============================================================= */
.video-frame.showcase { display: block; aspect-ratio: auto; background: linear-gradient(135deg, #0b1b34, #16345f); }
.video-showcase { position: relative; display: flex; flex-direction: column; gap: clamp(.7rem, 2.5vw, 1.2rem); padding: clamp(1.4rem, 4vw, 2.6rem); }
.vs-eyebrow { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #7fd3db; margin: 0; }
.vs-head { font-family: var(--display); font-weight: 800; color: #fff; font-size: clamp(1.15rem, 3.4vw, 1.9rem); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .4rem; }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.5rem, 2vw, .9rem); }
.vs-card { display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: clamp(.7rem, 2vw, 1rem); animation: vsPulse 6s ease-in-out infinite; }
.vs-card:nth-child(2) { animation-delay: 1.5s; }
.vs-card:nth-child(3) { animation-delay: 3s; }
.vs-card:nth-child(4) { animation-delay: 4.5s; }
.vs-ico { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: rgba(255,255,255,.1); }
.vs-ico svg { width: 26px; height: 26px; }
.vs-name { font-family: var(--display); font-weight: 700; font-size: clamp(.82rem, 2.2vw, 1rem); color: #fff; line-height: 1.15; }
@keyframes vsPulse { 0%,78%,100% { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); } 12%,32% { background: rgba(31,95,255,.30); border-color: #3f78ff; } }
@media (min-width: 720px) { .vs-grid { grid-template-columns: repeat(4, 1fr); } .vs-card { flex-direction: column; text-align: center; align-items: center; gap: .55rem; } }
@media (prefers-reduced-motion: reduce) { .vs-card { animation: none; } }

/* =============================================================
   22. Opiniones / testimonios
   ============================================================= */
.reviews { padding-block: clamp(4rem, 9vw, 7rem); }
.review-grid { display: grid; gap: 1.2rem; }
.review-card { padding: 1.9rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 1rem; margin: 0; }
.review-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 3px; }
.review-quote { margin: 0; color: var(--ink); font-size: 1.02rem; line-height: 1.55; font-style: italic; }
.review-who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg-2); }
.review-avatar svg, .review-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.review-card:nth-child(2) .review-avatar { background: var(--accent-2); }
.review-card:nth-child(3) .review-avatar { background: var(--accent-3); }
.review-meta { display: flex; flex-direction: column; line-height: 1.25; }
.review-meta strong { font-family: var(--display); font-weight: 700; color: var(--ink); }
.review-meta > span { font-size: .85rem; color: var(--ink-mute); }
@media (min-width: 860px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

/* Badge destacado de cobertura mundial */
.pay-badge-global { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
.pay-badge-global svg { color: #fff; }

/* Video del hero (panel animado o video real autoplay) */
.hero-video.video-frame.showcase { width: 100%; }
.video-frame.has-video { aspect-ratio: 16 / 9; display: block; position: relative; overflow: hidden; padding: 0; background: #0b1b34; }
.video-frame.has-video video, .video-frame.has-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }

/* Hero video placeholder + Conócenos sin estadísticas duplicadas */
.hero-video { width: 100%; }
.about-solo { display: block; }
.about-247 { margin-top: 1.4rem; font-family: var(--display); font-weight: 600; color: var(--ink-soft); }
.about-247 strong { color: var(--accent); font-weight: 800; font-size: 1.1em; }

/* Palabra (no número) dentro de un chip: más pequeña */
.chip .chip-word { font-size: 1.05rem; line-height: 1.3; }

/* Foto en tarjeta de servicio (reemplaza el icono) */
.svc-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 1.2rem; background: var(--bg-2); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Nota corta de descuento en tarjeta de servicio */
.svc-note { font-size: .85rem; font-weight: 600; color: var(--accent-2); margin: -.4rem 0 0; }
