*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1156;
  --navy-deep: #080c3d;
  --navy-mid: #1a2070;
  --navy-light: #e8eaf8;
  --gold: #E1A825;
  --gold-light: #f5d980;
  --gold-pale: #fdf6e3;
  --white: #ffffff;
  --gray-50: #f8f8fb;
  --gray-100: #f0f0f7;
  --gray-300: #c8c8dc;
  --gray-500: #7878a0;
  --gray-700: #3a3a5c;
  --text: #1a1a3c;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(13,17,86,0.10);
  --shadow-lg: 0 12px 48px rgba(13,17,86,0.16);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ─────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold-pale); color: var(--navy); border: 1px solid var(--gold-light);
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r); font-family: var(--font-body);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.22s; border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,168,37,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 17px 36px; font-size: 16px; border-radius: 14px; }

/* ── NAV ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  /*background: rgba(13,17,86,0.96); backdrop-filter: blur(16px);*/
  background: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 6px;
}
.nav-logo span { color: var(--gold); }
.nav-logo img {width:50%;}
.nav-links { display: flex; align-items: center; gap: 2rem; }
/*.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); transition: color 0.2s; }*/
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gold); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; color: white; font-size: 22px; }

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(225,168,37,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,32,112,0.8) 0%, transparent 60%);
  display: flex; align-items: center;
  padding-top: 68px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 5rem 2rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.5rem; animation: fadeUp 0.6s ease both;
}
.sat-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(225,168,37,0.15); border: 1px solid rgba(225,168,37,0.3);
  font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase;
}
.sat-badge::before { content: '✓'; font-size: 10px; }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.12; color: var(--white);
  margin-bottom: 1.5rem; animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.68);
  max-width: 500px; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp 0.6s 0.3s ease both; }
.hero-trust {
  margin-top: 3rem; display: flex; align-items: center; gap: 1.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 400; }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Hero visual */
.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
  animation: fadeUp 0.7s 0.25s ease both;
}
.card-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}
.card-mockup:hover { transform: translateY(-4px); }
.card-mockup-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.card-type {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0.85;
}
.card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.card-icon-gas { background: rgba(225,168,37,0.15); }
.card-icon-desp { background: rgba(100,200,150,0.15); }
.card-amount {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.card-sub { font-size: 13px; color: rgba(255,255,255,0.45); }
.card-bar {
  height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 4px; margin-top: 1rem; overflow: hidden;
}
.card-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.card-mockup-small {
  background: rgba(225,168,37,0.08);
  border: 1px solid rgba(225,168,37,0.2);
  border-radius: var(--r); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
}
.cms-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cms-text { font-size: 13px; color: rgba(255,255,255,0.7); }
.cms-text strong { color: var(--white); font-weight: 600; }

/* ── LOGOS / CONFIANZA ─────────────────────── */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-bar-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--gray-500);
}
.trust-item svg { flex-shrink: 0; }

/* ── PRODUCTOS ─────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 3.5rem;
}
.product-card {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.28s; position: relative;
  box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-header {
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}
.product-card-gas .product-card-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.product-card-desp .product-card-header { background: linear-gradient(135deg, #1a4a2e 0%, #2d7a4f 100%); }
.product-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 1.25rem;
}
.product-icon-gas { background: rgba(225,168,37,0.2); }
.product-icon-desp { background: rgba(100,220,150,0.2); }
.product-title {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.product-subtitle { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.product-card-body { padding: 2rem 2.5rem 2.5rem; background: var(--white); }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.product-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5; color: var(--gray-700);
}
.feat-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 1px;
}
.feat-check-gold { background: var(--gold-pale); color: var(--navy); }
.feat-check-green { background: #e8f5ee; color: #1a6b3c; }
.sat-label {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
  background: var(--navy-light); color: var(--navy);
  margin-bottom: 1.25rem;
}

/* ── CÓMO FUNCIONA ─────────────────────────── */
.how-bg { background: var(--gray-50); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3.5rem; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--navy-light), var(--gold), var(--navy-light));
  z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
  background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.25rem;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy-light);
}
.step-num.gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 0 0 2px var(--gold-pale); }
.step-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── BENEFICIOS ────────────────────────────── */
.benefits-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.benefits-text { }
.benefits-text h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--text); margin: 1rem 0 1.5rem;
}
.benefits-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--r); border: 1px solid var(--gray-100);
  background: var(--white); box-shadow: var(--shadow); transition: border-color 0.2s;
}
.benefit-item:hover { border-color: var(--gold-light); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.benefit-text h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.benefits-visual {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-xl); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.bv-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}
.bv-metric {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
}
.bv-metric:last-child { border-bottom: none; }
.bv-metric-label { font-size: 14px; color: rgba(255,255,255,0.6); }
.bv-metric-val {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold);
}
.bv-metric-sub { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; text-align: right; }

/* ── FAQ ───────────────────────────────────── */
.faq-bg { background: var(--navy-deep); }
.faq-bg .section-label { color: var(--gold-light); }
.faq-bg h2 { color: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 3rem;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(225,168,37,0.3); }
.faq-item.open { border-color: rgba(225,168,37,0.4); background: rgba(225,168,37,0.04); }
.faq-question {
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.4;
}
.faq-arrow {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; color: var(--gold);
  transition: transform 0.25s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.5rem; }

/* ── CONTACTO / CTA ────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(225,168,37,0.15) 100%);
  padding: 6rem 0; position: relative; overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(225,168,37,0.06); pointer-events: none;
}
.cta-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.cta-text h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1.25rem;
}
.cta-text h2 span { color: var(--gold); }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }
.contact-highlights { display: flex; flex-direction: column; gap: 12px; }
.ch-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.72);
}
.ch-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.form-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--white); outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(225,168,37,0.5); background: rgba(225,168,37,0.04); }
.form-group select option { background: var(--navy-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: var(--navy-deep);
  border: none; border-radius: var(--r); cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  transition: all 0.22s; margin-top: 6px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(225,168,37,0.3); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 2rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ── SECTION HEADERS ───────────────────────── */
.section-header { text-align: center; margin-bottom: 1rem; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 1rem;
}
.section-desc { font-size: 1rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── WHATSAPP FLOAT ────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer; transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }

/* ── NOSOTROS ──────────────────────────────── */
.nosotros-bg { background: var(--gray-50); }
.nosotros-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.nosotros-text h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--text); margin: 1rem 0 1.25rem;
}
.nosotros-text p {
  font-size: 15px; line-height: 1.8; color: var(--gray-500); margin-bottom: 1.25rem;
}
.mv-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.mv-card {
  padding: 1.5rem; border-radius: var(--r-lg);
  border: 1px solid var(--gray-100); background: var(--white);
  box-shadow: var(--shadow); transition: border-color 0.2s;
}
.mv-card:hover { border-color: var(--gold-light); }
.mv-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.mv-card-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }
.mv-card p { font-size: 14px; line-height: 1.7; color: var(--gray-700); margin: 0; }
.nosotros-data {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.nd-item {
  padding: 1.75rem 1.5rem; border-radius: var(--r-lg);
  border: 1px solid var(--gray-100); background: var(--white);
  box-shadow: var(--shadow); text-align: center;
  transition: all 0.25s;
}
.nd-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.nd-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.nd-num span { color: var(--gold); }
.nd-label { font-size: 13px; color: var(--gray-500); line-height: 1.4; }
.nd-item-wide {
  grid-column: 1 / -1; padding: 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg); border: none;
  display: flex; align-items: center; gap: 1rem;
}
.nd-item-wide:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.nd-item-wide .nd-num { color: var(--gold); font-size: 1.8rem; }
.nd-item-wide .nd-label { color: rgba(255,255,255,0.65); text-align: left; }
@media (max-width: 1024px) { .nosotros-inner { grid-template-columns: 1fr; gap: 3rem; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-mockup-small { grid-column: 1 / -1; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .benefits-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { flex-wrap: wrap; }
}

/* ── ESTILOS ESPECÍFICOS DE LA PÁGINA TERMINOS Y CONDICIONES ─────── */
.tyc-hero {
  background: var(--navy-deep);
  background-image: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(225,168,37,0.10) 0%, transparent 60%);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tyc-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.tyc-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(225,168,37,0.15); border: 1px solid rgba(225,168,37,0.3);
  color: var(--gold); margin-bottom: 1.25rem;
}
.tyc-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
}
.tyc-hero p {
  font-size: 15px; color: rgba(255,255,255,0.55);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

/* ── CONTENIDO ──────────────────────────────── */
.tyc-body {
  max-width: 860px; margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

/* Índice */
.tyc-index {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
}
.tyc-index-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 8px;
}
.tyc-index-title::before {
  content: ''; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.tyc-index-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 2rem;
}
.tyc-index-list li a {
  font-size: 14px; color: var(--gray-500);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.tyc-index-list li a:hover { color: var(--navy); }
.tyc-index-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy-light); color: var(--navy);
  font-size: 11px; font-weight: 700; font-family: var(--font-mono, monospace);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Secciones */
.tyc-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}
.tyc-section:last-child { border-bottom: none; margin-bottom: 0; }

.tyc-section-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 1.5rem;
}
.tyc-section-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tyc-section h2 {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 700;
  color: var(--text); line-height: 1.2;
}

.tyc-section p {
  font-size: 14.5px; line-height: 1.8;
  color: var(--gray-700); margin-bottom: 1rem;
}
.tyc-section p:last-child { margin-bottom: 0; }

.tyc-section ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 1rem;
}
.tyc-section ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700); line-height: 1.65;
}
.tyc-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}

/* Sub-listas */
.tyc-section ul ul {
  margin-top: 8px; margin-left: 16px;
}
.tyc-section ul ul li .tyc-bullet {
  background: var(--gray-300);
}

/* Destacados */
.tyc-highlight {
  background: var(--navy-light);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 14px; color: var(--navy); line-height: 1.6;
}
.tyc-highlight strong { font-weight: 600; }

.tyc-gold-highlight {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 14px; color: var(--gray-700); line-height: 1.6;
}

/* Info box */
.tyc-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1rem;
}
.tyc-info-item {
  padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r); box-shadow: var(--shadow);
}
.tyc-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted, #7878a0);
  margin-bottom: 5px;
}
.tyc-info-value {
  font-size: 14px; color: var(--text); line-height: 1.5; font-weight: 500;
}

/* Update badge */
.tyc-update {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  background: var(--gold-pale); border: 1px solid var(--gold-light);
  font-size: 12px; color: var(--navy); font-weight: 500;
  margin-top: 1rem;
}

/* Contact box */
.tyc-contact-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg); padding: 2rem;
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.tyc-contact-text h4 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.tyc-contact-text p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
.tyc-contact-links { display: flex; flex-direction: column; gap: 8px; }
.tyc-contact-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gold); font-weight: 500;
  text-decoration: none;
}
.tyc-contact-link:hover { opacity: 0.8; }

/* Responsive */
@media (max-width: 768px) {
  .tyc-index-list { grid-template-columns: 1fr; }
  .tyc-info-grid { grid-template-columns: 1fr; }
  .tyc-contact-box { flex-direction: column; }
}