/* ============================================================
   LENTE X LENTE — Website Stylesheet v1.0
   ============================================================ */

/* === RESET ======================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  background: #fff; color: #111; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: #00CCCC; color: #111; }

/* === TOKENS ======================================= */
:root {
  --teal:       #00CCCC;
  --teal-dark:  #009999;
  --teal-light: #B3F0F0;
  --yellow:     #F5E53A;
  --yellow-dk:  #D4C412;
  --lavender:   #C9A8EF;
  --black:      #111111;
  --white:      #FFFFFF;
  --g100:       #F5F5F5;
  --g300:       #CCCCCC;
  --g500:       #888888;
  --g700:       #444444;
  --font-d:     'Anton', 'Arial Black', sans-serif;
  --font-b:     'Poppins', 'Helvetica Neue', sans-serif;
  --sh:         5px 5px 0 0 #111;
  --sh-lg:      8px 8px 0 0 #111;
  --sh-sm:      3px 3px 0 0 #111;
  --bd:         3px solid #111;
  --r-sm:       8px;
  --r-md:       16px;
  --r-lg:       24px;
  --r-xl:       32px;
  --r-pill:     999px;
  --t:          all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:     all 0.15s ease-out;
  --hdr:        72px;
  --mw:         1200px;
}

/* === LAYOUT ====================================== */
.container  { max-width: var(--mw); margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: block; font-family: var(--font-b); font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.eyebrow-teal   { color: var(--teal-dark); }
.eyebrow-dk     { color: rgba(255,255,255,0.55); }
.page-body      { min-height: 100vh; }
.page-fade      { animation: fadeUp 0.22s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* === BUTTONS ===================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 14px 32px; border-radius: var(--r-pill);
  border: var(--bd); cursor: pointer;
  transition: var(--t); white-space: nowrap; text-decoration: none;
}
.btn:hover  { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: #111; color: #fff; box-shadow: var(--sh); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--sh-lg); }
.btn-accent  { background: var(--yellow); color: #111; box-shadow: var(--sh); }
.btn-accent:hover  { background: var(--yellow-dk); box-shadow: var(--sh-lg); }
.btn-outline { background: transparent; color: #111; box-shadow: none; }
.btn-outline:hover { background: #111; color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); box-shadow: none; }
.btn-outline-w:hover { background: #fff; color: #111; border-color: #fff; }
.btn-wa  { background: #25D366; color: #fff; border-color: #1daa5a; box-shadow: 5px 5px 0 0 #1daa5a; }
.btn-wa:hover { background: #1daa5a; box-shadow: 8px 8px 0 0 #1a9e4a; }
.btn-sm  { padding: 10px 22px; font-size: 12px; }
.btn-lg  { padding: 18px 40px; font-size: 15px; }

/* === CARDS ======================================= */
.card {
  background: #fff; border: var(--bd); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh); transition: var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

/* === TAGS ======================================== */
.tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-family: var(--font-b); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em; border: 2px solid #111;
}
.tag-teal     { background: var(--teal); }
.tag-yellow   { background: var(--yellow); }
.tag-lavender { background: var(--lavender); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #111; height: var(--hdr);
  border-bottom: 1.5px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.35); }
.header-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 20px;
}
.header-logo      { display: flex; align-items: center; }
.header-logo-img  { height: 38px; object-fit: contain; }
.header-nav {
  flex: 1; display: flex; align-items: center; gap: 24px; justify-content: center;
}
.nav-link {
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  color: rgba(255,255,255,0.58); transition: color 0.15s; cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher  { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-family: var(--font-b); font-weight: 700; font-size: 11px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  padding: 4px 6px; cursor: pointer; transition: color 0.15s;
}
.lang-btn:hover      { color: rgba(255,255,255,0.7); }
.lang-btn.active     { color: var(--yellow); }
.lang-sep            { color: rgba(255,255,255,0.15); font-size: 12px; }
.header-cta          { padding: 9px 20px; font-size: 11px; }
.hamburger           { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.75);
  border-radius: 2px; transition: all 0.22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  background: #1a1a1a; border-top: 1px solid rgba(255,255,255,0.06);
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.mobile-nav.open     { max-height: 560px; }
.mobile-nav-link {
  display: block; padding: 15px 32px;
  font-family: var(--font-b); font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none; transition: color 0.15s;
}
.mobile-nav-link:hover { color: var(--teal); }
.mobile-nav-cta {
  margin: 16px 24px; text-align: center; display: block;
  background: var(--yellow); color: #111; padding: 16px;
  border-radius: var(--r-pill); font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; border-bottom: none;
}

/* ============================================================
   HERO (home, full viewport)
   ============================================================ */
.hero-section {
  position: relative; min-height: 100vh;
  background-image: url('../assets/texture-teal.png');
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 110, 100, 0.38); z-index: 0;
}
.hero-main {
  position: relative; z-index: 1; flex: 1; display: flex; align-items: center;
}
.hero-container {
  max-width: var(--mw); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: flex-end; gap: 32px; width: 100%;
  padding-top: calc(var(--hdr) + 56px); padding-bottom: 52px;
}
.hero-content { flex: 1; max-width: 620px; }
.hero-tag {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.5); border-radius: var(--r-pill);
  padding: 6px 18px; margin-bottom: 22px;
  font-family: var(--font-b); font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
}
.hero-headline {
  font-family: var(--font-d); font-weight: 400;
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: 0.92; text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 20px;
}
.hero-headline .hi { color: var(--yellow); }
.hero-sub {
  font-family: var(--font-b); font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.72); line-height: 1.65;
  max-width: 440px; margin-bottom: 36px;
}
.hero-btns  { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-char  { flex-shrink: 0; align-self: flex-end; width: clamp(220px, 30vw, 440px); }
.hero-char img {
  width: 100%; display: block;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.25));
}
.hero-sparkles {
  position: absolute; top: 130px; right: min(calc(50% - 140px), 360px); z-index: 2;
  width: 72px; opacity: 0.85; pointer-events: none;
}
.hero-stats {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 3px;
}
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: var(--font-d); font-size: clamp(32px,4vw,48px); color: var(--yellow); line-height: 1; }
.stat-label { font-family: var(--font-b); font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.4; }

/* ============================================================
   INNER HERO (compact, dark)
   ============================================================ */
.inner-hero {
  background: #111;
  padding-top: calc(var(--hdr) + 48px); padding-bottom: 64px;
  position: relative; overflow: hidden;
}
.inner-hero .eyebrow { color: var(--teal); }
.inner-hero h1 {
  font-family: var(--font-d); font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92; color: #fff; margin-top: 8px; max-width: 820px;
  text-transform: uppercase;
}
.inner-hero p {
  font-size: 15px; color: rgba(255,255,255,0.42);
  margin-top: 14px; max-width: 440px; line-height: 1.65;
}
.inner-mascot {
  position: absolute; right: 60px; bottom: 0;
  height: 210px; opacity: 0.1; pointer-events: none; filter: grayscale(1);
}

/* ============================================================
   SECTION: CAUSA (yellow band)
   ============================================================ */
.causa-band {
  background: var(--yellow); border-top: var(--bd); border-bottom: var(--bd);
  padding: 96px 0; position: relative; overflow: hidden;
}
.causa-band-mascot {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  height: 440px; opacity: 0.1; pointer-events: none; z-index: 0;
}
.causa-band-content { position: relative; z-index: 1; max-width: 700px; }
.causa-eyebrow  { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: #9a8b00; margin-bottom: 12px; display: block; }
.causa-headline {
  font-family: var(--font-d); font-size: clamp(40px, 6vw, 80px);
  line-height: 0.92; color: #111; margin-bottom: 22px; text-transform: uppercase;
}
.causa-text { font-size: 17px; color: var(--g700); line-height: 1.65; margin-bottom: 32px; max-width: 560px; }

/* ============================================================
   SECTION: PILARES
   ============================================================ */
.pilares-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 52px;
}
.pilar-card {
  background: #fff; border: var(--bd); border-radius: var(--r-lg);
  padding: 28px 24px; box-shadow: var(--sh); transition: var(--t);
}
.pilar-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.pilar-icon {
  width: 52px; height: 52px; border-radius: var(--r-md); border: var(--bd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.pilar-icon.teal     { background: var(--teal); }
.pilar-icon.yellow   { background: var(--yellow); }
.pilar-icon.lavender { background: var(--lavender); }
.pilar-title { font-family: var(--font-b); font-weight: 700; font-size: 17px; margin-bottom: 8px; line-height: 1.3; }
.pilar-body  { font-size: 14px; color: var(--g500); line-height: 1.65; }

/* ============================================================
   SECTION: NUMERALIA
   ============================================================ */
.numeralia-bg { background: #111; padding: 80px 0; }
.numeralia-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.num-item {
  padding: 40px 28px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center;
}
.num-item:last-child { border-right: none; }
.num-val   { font-family: var(--font-d); font-size: clamp(48px,5.5vw,76px); color: var(--yellow); line-height: 1; margin-bottom: 10px; display: block; }
.num-label { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.5; }

/* ============================================================
   SECTION: REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px;
}
.review-card {
  background: #fff; border: var(--bd); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh); transition: var(--t);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.review-stars  { color: #b88c00; font-size: 18px; margin-bottom: 10px; letter-spacing: 2px; }
.review-title  { font-weight: 700; font-size: 15px; margin-bottom: 10px; line-height: 1.3; color: #111; }
.review-quote  { font-size: 13px; color: var(--g500); line-height: 1.75; margin-bottom: 16px; }
.review-author { font-weight: 700; font-size: 13px; color: #111; }
.review-ctarow { display: flex; gap: 14px; margin-top: 40px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   SECTION: UNISUR BANNER
   ============================================================ */
.unisur-banner {
  background: var(--teal); border-top: var(--bd); border-bottom: var(--bd);
  padding: 64px 0; position: relative; overflow: hidden;
}
.unisur-mascot-bg {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  height: 220px; opacity: 0.12; pointer-events: none;
}
.unisur-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.unisur-headline {
  font-family: var(--font-d); font-size: clamp(30px,4.5vw,56px);
  text-transform: uppercase; line-height: 0.93; color: #111; max-width: 580px;
}
.unisur-sub { font-size: 16px; color: var(--g700); margin-top: 12px; }

/* ============================================================
   SECTION: FAQ / ACCORDION
   ============================================================ */
.faq-cat-label {
  display: block; font-family: var(--font-b); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal-dark);
  padding: 24px 0 8px; border-bottom: 3px solid var(--teal); margin-top: 8px;
}
.faq-cat-label:first-child { margin-top: 0; }
.faq-category + .faq-category { margin-top: 8px; }
.accordion-item { border-bottom: 2px solid #eee; }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; text-align: left;
  font-family: var(--font-b); font-weight: 600; font-size: 16px; color: #111;
  background: none; border: none; gap: 16px; transition: color 0.15s;
}
.accordion-trigger:hover { color: var(--teal-dark); }
.accordion-icon {
  width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid #111;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; font-style: normal; line-height: 1;
  transition: var(--t); color: #111; user-select: none;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: #111; color: #fff; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner { padding: 2px 0 20px; }
.accordion-body-inner p { font-size: 15px; color: var(--g700); line-height: 1.72; }

/* ============================================================
   SECTION: MAP
   ============================================================ */
.map-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.map-frame {
  border: var(--bd); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh); aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; display: block; border: none; }
.map-info    { display: flex; flex-direction: column; gap: 28px; }
.map-blk-ttl { font-family: var(--font-b); font-weight: 700; font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.map-addr    { font-size: 14px; color: var(--g700); line-height: 1.75; }
.map-hrs-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--g700); padding: 4px 0; }
.map-hrs-row strong { color: #111; }
.map-btns    { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer  { background: #111; padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px;
}
.footer-logo     { margin-bottom: 14px; }
.footer-logo img { height: 44px; object-fit: contain; }
.footer-tagline  { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-contact  { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a, .footer-contact span { font-size: 13px; color: var(--teal); font-weight: 500; text-decoration: none; }
.footer-contact .muted { color: rgba(255,255,255,0.22) !important; font-size: 12px !important; }
.footer-col-ttl  { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: rgba(255,255,255,0.22); margin-bottom: 16px; }
.footer-nav      { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a    { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; text-decoration: none; cursor: pointer; }
.footer-nav a:hover { color: var(--teal); }
.footer-bottom   { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy     { font-size: 11px; color: rgba(255,255,255,0.16); }
.footer-socials  { display: flex; gap: 8px; }
.footer-soc {
  display: inline-flex; align-items: center; padding: 7px 16px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all 0.15s; text-decoration: none;
}
.footer-soc:hover { background: rgba(0,204,204,0.15); color: var(--teal); border-color: rgba(0,204,204,0.3); }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #1a1a1a; border-top: 1.5px solid rgba(255,255,255,0.1);
  padding: 8px 12px; grid-template-columns: 1fr 1fr 1.4fr; gap: 6px;
}
.mbar-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 8px 4px; border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55); text-decoration: none; transition: all 0.15s;
}
.mbar-btn i    { font-size: 20px; }
.mbar-wa       { color: #25D366; }
.mbar-cta      { background: var(--yellow); color: #111; border-radius: var(--r-md); font-weight: 700; }

/* ============================================================
   INNER PAGE: SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.svc-card {
  background: #fff; border: var(--bd); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh); transition: var(--t); display: flex; flex-direction: column; gap: 10px;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.svc-num   { font-family: var(--font-d); font-size: 48px; color: var(--teal); opacity: 0.3; line-height: 1; }
.svc-title { font-weight: 700; font-size: 19px; color: #111; }
.svc-body  { font-size: 14px; color: var(--g500); line-height: 1.65; flex: 1; }

/* ============================================================
   INNER PAGE: AGENDAR
   ============================================================ */
.agendar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.agendar-path {
  border: var(--bd); border-radius: var(--r-xl); padding: 56px 36px;
  box-shadow: var(--sh); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: var(--t); background: #fff; text-decoration: none;
}
.agendar-path:hover     { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.agendar-path.ap-teal   { background: var(--teal); }
.agendar-path.ap-wa     { background: #25D366; border-color: #1daa5a; box-shadow: 5px 5px 0 0 #1daa5a; }
.agendar-path.ap-wa:hover { box-shadow: 8px 8px 0 0 #1a9e4a; }
.agendar-icon      { font-size: 72px; line-height: 1; }
.agendar-path-name { font-family: var(--font-d); font-size: 40px; text-transform: uppercase; color: #111; }
.agendar-path-num  { font-family: var(--font-b); font-size: 22px; font-weight: 700; color: #111; }
.agendar-path-sub  { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.55; max-width: 260px; }

/* ============================================================
   INNER PAGE: CAUSA EQUIVALENCES
   ============================================================ */
.equiv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.equiv-card {
  border: var(--bd); border-radius: var(--r-lg); padding: 32px 24px;
  box-shadow: var(--sh); text-align: center; transition: var(--t);
}
.equiv-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.equiv-card.eq-yellow   { background: var(--yellow); }
.equiv-card.eq-teal     { background: var(--teal); }
.equiv-card.eq-lavender { background: var(--lavender); }
.equiv-x     { font-family: var(--font-d); font-size: 64px; color: #111; line-height: 1; }
.equiv-price { font-family: var(--font-b); font-weight: 700; font-size: 22px; color: #111; margin-top: 4px; }
.equiv-desc  { font-size: 13px; color: var(--g700); margin-top: 8px; line-height: 1.5; }

/* ============================================================
   INNER PAGE: BENEFITS (UniSur)
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: var(--bd); border-radius: var(--r-md);
  padding: 20px; box-shadow: var(--sh-sm);
}
.benefit-check {
  width: 36px; height: 36px; background: var(--teal); border-radius: 50%;
  border: 2.5px solid #111; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; font-weight: 700; color: #111;
}
.benefit-ttl { display: block; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.benefit-dsc { font-size: 13px; color: var(--g500); line-height: 1.5; }

/* ============================================================
   INNER PAGE: NOSOTROS
   ============================================================ */
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-val {
  border-left: 4px solid var(--teal); padding: 20px 20px 20px 24px;
  background: #fff; border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--sh-sm);
}
.about-val-ttl { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.about-val-dsc { font-size: 14px; color: var(--g500); line-height: 1.6; }

/* ============================================================
   INNER PAGE: LENTES
   ============================================================ */
.lentes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.lens-card {
  border: var(--bd); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); background: #fff; transition: var(--t);
}
.lens-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.lens-visual { height: 140px; display: flex; align-items: center; justify-content: center; padding: 20px; border-bottom: var(--bd); background: var(--g100); }
.lens-visual img { height: 80px; object-fit: contain; }
.lens-body   { padding: 22px; }
.lens-ttl    { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.lens-dsc    { font-size: 13px; color: var(--g500); line-height: 1.55; margin-bottom: 10px; }
.lens-price  { font-weight: 700; font-size: 14px; color: var(--teal-dark); }

/* ============================================================
   INNER PAGE: CONVENIOS
   ============================================================ */
.convenios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.conv-card {
  border: var(--bd); border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--sh); background: #fff; transition: var(--t);
}
.conv-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.conv-card.feat  { background: var(--teal); grid-column: 1 / -1; }
.conv-icon  { font-size: 40px; margin-bottom: 12px; }
.conv-ttl   { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.conv-dsc   { font-size: 14px; color: var(--g500); line-height: 1.65; }
.conv-card.feat .conv-ttl,
.conv-card.feat .conv-dsc { color: #111; }

/* ============================================================
   QUALIFIER (antes de tu cita)
   ============================================================ */
.qualifier-prog { display: flex; gap: 6px; margin-bottom: 28px; }
.qdot { width: 8px; height: 8px; border-radius: 50%; background: var(--g300); transition: all 0.2s; }
.qdot.active { background: #111; width: 24px; border-radius: 4px; }
.qdot.done   { background: var(--teal); }
.qstep       { display: none; animation: fadeUp 0.2s ease both; }
.qstep.active { display: block; }
.qstep-num   { font-family: var(--font-d); font-size: 80px; color: var(--teal); opacity: 0.22; line-height: 1; margin-bottom: -16px; }
.qquestion   { font-weight: 700; font-size: 22px; margin-bottom: 24px; line-height: 1.3; }
.qoptions    { display: flex; flex-direction: column; gap: 12px; }
.qoption {
  padding: 16px 20px; border: var(--bd); border-radius: var(--r-md);
  font-size: 15px; font-weight: 500; cursor: pointer;
  background: #fff; text-align: left; transition: var(--t-fast);
}
.qoption:hover    { background: var(--teal); border-color: var(--teal-dark); }
.qoption.selected { background: var(--teal); font-weight: 700; }
.qnav { display: flex; gap: 12px; margin-top: 24px; align-items: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pilares-grid { grid-template-columns: repeat(2,1fr); }
  .hero-char    { display: none; }
  .hero-sparkles { display: none; }
  .convenios-grid .conv-card.feat { grid-column: auto; }
}
@media (max-width: 768px) {
  :root { --hdr: 64px; }
  .header-nav   { display: none; }
  .lang-switcher { display: none; }
  .hamburger    { display: flex; }
  .container    { padding: 0 20px; }
  .section      { padding: 64px 0; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .reviews-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .numeralia-grid { grid-template-columns: repeat(2,1fr); }
  .num-item:nth-child(2) { border-right: none; }
  .pilares-grid   { grid-template-columns: 1fr; }
  .map-grid       { grid-template-columns: 1fr; }
  .svc-grid       { grid-template-columns: 1fr; }
  .agendar-grid   { grid-template-columns: 1fr; }
  .equiv-grid     { grid-template-columns: 1fr; }
  .unisur-inner   { flex-direction: column; align-items: flex-start; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .convenios-grid { grid-template-columns: 1fr; }
  .about-vals     { grid-template-columns: 1fr; }
  .lentes-grid    { grid-template-columns: 1fr 1fr; }
  .mobile-bar     { display: grid; }
  .page-body      { padding-bottom: 76px; }
}
@media (max-width: 480px) {
  .lentes-grid  { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(40px, 11vw, 60px); }
}
