:root {
  --gh-font-heading: 'Playfair Display', serif;
  --gh-font-body: 'Inter', sans-serif;
  --navy:      #032449;
  --navy-dark: #021a33;
  --navy-mid:  #053a6e;
  --gold:      #fad02c;
  --gold-dark: #e8be1a;
  --white:     #ffffff;
  --off-white: #fafaf8;
  --gray-100:  #f2f3f5;
  --gray-200:  #e4e6ea;
  --gray-400:  #8f9aaa;
  --gray-600:  #4b5563;
  --gray-900:  #111827;
  --star:      #f59e0b;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 18px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 44px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-600); background: var(--white); line-height: 1.65; font-size: 18px; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: var(--radius); border: none;
  cursor: pointer; transition: transform .2s, box-shadow .2s, background-color .2s; letter-spacing: .2px;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(250,208,44,.45); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold); }
.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 12px; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 3px solid var(--gold);
  transition: box-shadow .2s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 140px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 120px; width: auto; display: block; margin: 10px 0; }
.logo-img--dark  { filter: brightness(0) saturate(100%) invert(10%) sepia(40%) saturate(900%) hue-rotate(185deg) brightness(90%); }
.logo-img--white { filter: brightness(0) invert(1); }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 14px; font-weight: 600; color: var(--gray-600); transition: color .2s; }
nav a:hover { color: var(--navy); }

/* ── HERO ── */
.hero {
  margin-top: 140px;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  overflow: hidden; position: relative;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px; background: var(--gold);
}
.hero-deco-1 {
  position: absolute; top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(250,208,44,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-deco-2 {
  position: absolute; bottom: -60px; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
  padding: 90px 0 100px;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.stars-row { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.hero-rating-text { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; }

.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--white); margin-bottom: 20px; font-weight: 900;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-tagline {
  font-size: 22px; color: rgba(255,255,255,.85);
  font-weight: 600; margin-bottom: 14px; line-height: 1.5;
  font-style: italic;
}
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,.6);
  margin-bottom: 36px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500;
}
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* HERO CARD */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-lg);
}
.hero-card-header { margin-bottom: 24px; }
.hero-card-header h3 { font-size: 26px; margin-bottom: 6px; }
.hero-card-header p { font-size: 15px; color: var(--gray-400); }
.price-badge {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 14px 18px;
  margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center;
}
.price-badge .label { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.price-badge .amount { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); font-weight: 900; }
.price-badge .note { font-size: 11px; color: rgba(255,255,255,.5); }
.form-field { margin-bottom: 12px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-600); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.form-field select, .form-field input {
  width: 100%; padding: 11px 13px;
  border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--gray-900); background: var(--white);
  outline: none; transition: border-color .2s;
}
.form-field select:focus, .form-field input:focus { border-color: var(--navy); }
.form-legal { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ── SECTIONS ── */
section { padding: 88px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(27,64,99,.08); color: var(--navy);
  font-size: 12px; font-weight: 700; padding: 5px 13px;
  border-radius: 99px; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag-gold {
  background: rgba(250,208,44,.15); color: #8a6d00;
}
.section-title { font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 14px; }
.section-lead { font-size: 20px; color: var(--gray-400); line-height: 1.75; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-lead { margin: 0 auto; }

/* ── FRANJA GOLD ── */
.franja-gold {
  background: var(--gold); padding: 28px 0;
}
.franja-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.franja-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px); font-style: italic;
  color: var(--navy); font-weight: 700; max-width: 700px;
}
.franja-author { font-size: 13px; color: var(--navy-dark); opacity: .7; margin-top: 4px; }

/* ── VALORES ── */
.valores { background: var(--off-white); }
.valores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.valor-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 26px; border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.valor-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.valor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.valor-card:hover::after { transform: scaleX(1); }
.valor-icon { font-size: 32px; margin-bottom: 16px; }
.valor-card h3 { font-size: 22px; margin-bottom: 10px; }
.valor-card p { font-size: 18px; color: var(--gray-400); line-height: 1.75; }
.valor-cita {
  margin-top: 14px; font-size: 13px; color: var(--navy);
  font-style: italic; padding-left: 10px;
}

/* ── SERVICIOS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 380px)); gap: 20px; justify-content: center; }
.service-card {
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: border-color .25s, background-color .25s, transform .25s, box-shadow .25s; position: relative;
}
.service-card:hover { border-color: var(--navy); background: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card:hover .svc-title, .service-card:hover .svc-desc, .service-card:hover .svc-items li { color: rgba(255,255,255,.85); }
.service-card:hover .svc-icon-wrap { background: rgba(250,208,44,.15); }
.service-card:hover .svc-arrow { opacity: 1; }
.svc-icon-wrap {
  width: 52px; height: 52px; background: var(--gray-100);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px; transition: background .25s;
}
.svc-title { font-size: 20px; margin-bottom: 8px; transition: color .25s; }
.svc-desc { font-size: 16px; color: var(--gray-400); line-height: 1.7; transition: color .25s; margin-bottom: 12px; }
.svc-items { list-style: none; }
.svc-items li { font-size: 14px; color: var(--gray-400); padding: 3px 0; transition: color .25s; }
.svc-items li::before { content: '— '; opacity: .5; }
.svc-arrow { position: absolute; top: 22px; right: 22px; font-size: 18px; opacity: 0; transition: opacity .25s; color: var(--gold); }

/* ── STATS ── */
.stats { background: var(--navy); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 0 20px; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(255,255,255,.1);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; line-height: 1.4; }

/* ── ABOUT ── */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  aspect-ratio: 4/5;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  display: block;
}
.about-bubble {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius); padding: 22px 26px;
  max-width: 255px; box-shadow: var(--shadow-lg);
}
.about-bubble blockquote {
  font-family: 'Playfair Display', serif; font-size: 15px;
  font-style: italic; font-weight: 700; line-height: 1.45; margin-bottom: 8px;
}
.about-bubble cite { font-size: 11px; font-style: normal; opacity: .65; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 20px; }
.about-lead { font-size: 20px; color: var(--navy); font-weight: 600; line-height: 1.6; margin-bottom: 16px; }
.about-content p { font-size: 18px; color: var(--gray-400); line-height: 1.8; margin-bottom: 14px; }
.about-list { list-style: none; margin: 22px 0 32px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 15px; color: var(--gray-600);
}
.about-list li:last-child { border-bottom: none; }
.check { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; color: var(--navy); font-weight: 900; }

/* ── REVIEWS ── */
.reviews-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; margin-bottom: 52px; flex-wrap: wrap;
}
.reviews-top-text .section-tag { margin-bottom: 12px; }
.reviews-top-text h2 { font-size: clamp(34px, 4vw, 50px); margin-bottom: 8px; }
.reviews-top-text p { font-size: 18px; color: var(--gray-400); }
.google-badge {
  flex-shrink: 0; text-align: center;
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px 32px;
}
.google-badge .g-logo { font-size: 12px; font-weight: 700; color: var(--gray-400); letter-spacing: .5px; margin-bottom: 4px; }
.google-badge .g-num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 900; color: var(--navy); line-height: 1; }
.google-badge .g-stars { color: var(--star); font-size: 18px; margin: 4px 0; }
.google-badge .g-count { font-size: 12px; color: var(--gray-400); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }
.review-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; transition: box-shadow .25s, border-color .25s, transform .25s;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: rgba(250,208,44,.5); transform: translateY(-2px); }
.review-card .open-quote {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', serif; font-size: 72px;
  color: var(--gold); opacity: .18; line-height: 1;
}
.review-stars { color: var(--star); font-size: 14px; margin-bottom: 14px; }
.review-body { font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 18px; font-style: italic; }
.review-body strong { font-style: normal; color: var(--navy); font-weight: 700; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer-meta { font-size: 12px; color: var(--gray-400); }

.review-card.featured { background: var(--navy); border-color: var(--navy); }
.review-card.featured .review-body { color: rgba(255,255,255,.8); }
.review-card.featured .review-body strong { color: var(--gold); }
.review-card.featured .reviewer-name { color: var(--white); }
.review-card.featured .reviewer-meta { color: rgba(255,255,255,.45); }
.review-card.featured .open-quote { color: var(--gold); opacity: .12; }
.review-card.featured .review-stars { color: var(--gold); }

/* ── PROCESO ── */
.proceso { background: var(--navy); }
.proceso .section-header h2 { color: var(--white); }
.proceso .section-header .section-lead { color: rgba(255,255,255,.6); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%;
  height: 1px; background: rgba(250,208,44,.25);
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 18px; }
.step-num {
  width: 54px; height: 54px; background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.step h4 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.75; }

/* ── CTA ── */
.cta { background: var(--gold); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 8px; }
.cta-text p { color: var(--navy-dark); opacity: .75; font-size: 16px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── CONTACTO ── */
.contacto { background: var(--off-white); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contacto-info h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.contacto-info .lead { font-size: 16px; color: var(--gray-400); margin-bottom: 36px; line-height: 1.75; }
.info-items { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon {
  width: 46px; height: 46px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.info-item strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 3px; }
.info-item span { font-size: 15px; font-weight: 600; color: var(--navy); }

.contacto-form { background: var(--white); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contacto-form h3 { font-size: 21px; margin-bottom: 4px; }
.contacto-form .form-note { font-size: 13px; color: var(--gray-400); margin-bottom: 26px; }
.contacto-form textarea {
  width: 100%; padding: 11px 13px; border: 2px solid var(--gray-200);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--gray-900); resize: vertical; min-height: 90px;
  outline: none; transition: border-color .2s;
}
.contacto-form textarea:focus { border-color: var(--navy); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: rgba(255,255,255,.65); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; margin-bottom: 48px; align-items: start; }
.footer-brand-tagline { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 14px; line-height: 1.7; max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.soc { width: 44px; height: 44px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .2s; }
.soc:hover { background: var(--gold); }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col li { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1000;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: waPulse 3s ease-in-out infinite; cursor: pointer; transition: transform .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── BLOG ── */
.blog-listing { padding: 88px 0; min-height: 60vh; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; margin-top: 48px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--gray-100); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--navy); margin-bottom: 10px; }
.blog-card-title { font-size: 19px; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--gray-400); }

.post-header { padding: 88px 0 48px; background: var(--navy); }
.post-header h1 { color: var(--white); font-size: clamp(36px, 5vw, 60px); max-width: 800px; }
.post-meta { font-size: 16px; color: rgba(255,255,255,.55); margin-top: 16px; }
.post-content { padding: 64px 0; max-width: 720px; margin: 0 auto; }
.post-content p { font-size: 18px; line-height: 1.85; color: var(--gray-600); margin-bottom: 24px; }
.post-content h2 { font-size: 28px; margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; margin: 32px 0 12px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 24px; }
.post-content li { font-size: 17px; line-height: 1.85; color: var(--gray-600); margin-bottom: 8px; }
.post-content blockquote {
  margin: 32px 0; padding: 24px 32px;
  background: var(--off-white); border-radius: var(--radius);
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-style: italic; color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; }
  .reviews-top { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  nav { display: none; }
  .about-bubble { position: static; margin-top: 24px; width: 100%; max-width: 100%; }
}

/* ── KOENIG CARD WIDTHS (requerido por Ghost) ── */
.kg-content { width: 100%; }

.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 0 auto;
  transform: translateX(calc(50% - 50vw * 0.85));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-image { max-width: 100%; }

/* ── CITA PAGE ── */
.cita-hero {
  margin-top: 140px;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.cita-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px; background: var(--gold);
}
.cita-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px; align-items: center;
}
.cita-hero-text .section-tag { margin-bottom: 20px; }
.cita-hero-text h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white); margin-bottom: 20px; font-weight: 900; line-height: 1.15;
}
.cita-hero-text h1 em { color: var(--gold); font-style: normal; }
.cita-hero-sub {
  font-size: 20px; color: rgba(255,255,255,.75);
  line-height: 1.75; margin-bottom: 32px; max-width: 520px;
}
.cita-trust-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
}
.cita-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500;
}

/* Cita price card */
.cita-price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-lg);
}
.cita-price-top { text-align: center; margin-bottom: 24px; }
.cita-price-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-400); display: block; margin-bottom: 8px;
}
.cita-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 900; color: var(--navy); line-height: 1;
}
.cita-price-amount span { font-size: 32px; color: var(--gray-400); }
.cita-price-note {
  font-size: 13px; color: var(--gray-400); margin-top: 8px; line-height: 1.5;
}
.cita-price-includes {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 11px;
}
.cita-include-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: var(--gray-600); font-weight: 500;
}
.cita-include-icon { font-size: 16px; flex-shrink: 0; }
.cita-pay-btn { width: 100%; justify-content: center; }
.cita-pay-note {
  font-size: 12px; color: var(--gray-400); text-align: center;
  margin-top: 10px; line-height: 1.5;
}

/* How it works */
.cita-como-funciona { padding: 88px 0; }
.cita-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0; align-items: start; margin-top: 0;
}
.cita-step { text-align: center; padding: 0 16px; }
.cita-step-num {
  width: 56px; height: 56px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900;
  margin: 0 auto 20px;
}
.cita-step h3 { font-size: 22px; margin-bottom: 10px; color: var(--navy); }
.cita-step p { font-size: 18px; color: var(--gray-400); line-height: 1.7; }
.cita-step-connector {
  align-self: flex-start; margin-top: 27px;
  height: 2px; background: var(--gray-200); width: 100%;
  position: relative;
}
.cita-step-connector::after {
  content: ''; position: absolute; right: -5px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--gray-200);
}

/* Areas grid */
.cita-areas-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}
.cita-area-pill {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 99px; padding: 10px 20px;
  font-size: 16px; font-weight: 600; color: var(--navy);
  transition: border-color .2s, background-color .2s;
}
.cita-area-pill:hover { border-color: var(--gold); background: rgba(250,208,44,.06); }

/* CTA section */
.cita-cta-section { padding: 72px 0; background: var(--gold); }
.cita-cta-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cita-cta-text h2 { font-size: clamp(22px, 3vw, 34px); color: var(--navy); margin-bottom: 10px; }
.cita-cta-text p { font-size: 18px; color: var(--navy-dark); opacity: .75; }
.cita-cta-action { flex-shrink: 0; text-align: center; }
.cita-alt-contact {
  font-size: 12px; color: var(--navy-dark); opacity: .7;
  margin-top: 12px; line-height: 1.6;
}
.cita-alt-contact a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* FAQ */
.cita-faq { padding: 88px 0; }
.cita-faq-wrap { max-width: 760px; }
.faq-list { margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-of-type { border-top: 1px solid var(--gray-200); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0;
  font-size: 18px; font-weight: 700; color: var(--navy);
  cursor: pointer; list-style: none; user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: background-color .2s, transform .25s;
}
.faq-arrow::before, .faq-arrow::after {
  content: ''; position: absolute;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.faq-arrow::before { width: 10px; height: 2px; }
.faq-arrow::after  { width: 2px; height: 10px; }
details[open] .faq-arrow { background: var(--gold); transform: rotate(45deg); }
details[open] .faq-arrow::before, details[open] .faq-arrow::after { background: var(--navy); }
.faq-answer {
  padding: 0 0 20px;
  animation: faqOpen .2s ease-out;
}
.faq-answer p {
  font-size: 18px; color: var(--gray-600); line-height: 1.8; margin-bottom: 8px;
}
.faq-answer a { color: var(--navy); font-weight: 600; text-decoration: underline; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CITA SIMPLE PAGE ── */
.cita-simple-section {
  margin-top: 140px; padding: 80px 0;
  min-height: calc(100vh - 140px);
  display: flex; align-items: center;
  background: var(--off-white);
}
.cita-simple-card {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 52px 48px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200); text-align: center;
}
.cita-simple-card h1 {
  font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; color: var(--navy); line-height: 1.2;
}
.cita-simple-card h1 em { color: var(--gold); font-style: normal; }
.cita-simple-price {
  display: flex; flex-direction: column; align-items: center;
  background: var(--navy); border-radius: var(--radius);
  padding: 18px 24px; margin: 28px 0;
}
.cita-simple-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1;
}
.cita-simple-note {
  font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px;
}
@media (max-width: 768px) {
  .cita-simple-card { padding: 36px 24px; }
}

/* Gracias page */
.cita-gracias-section {
  margin-top: 140px; padding: 80px 0;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  background: var(--off-white);
}
.cita-gracias-card {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 52px 48px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200); text-align: center;
}
.cita-gracias-icon {
  width: 72px; height: 72px; background: var(--gold);
  color: var(--navy); font-size: 34px; font-weight: 900;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.cita-gracias-card h1 {
  font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; color: var(--navy);
}
.cita-gracias-sub {
  font-size: 18px; color: var(--gray-600); line-height: 1.75; margin-bottom: 36px;
}
.cita-gracias-sub strong { color: var(--navy); }
.cita-gracias-next {
  text-align: left; background: var(--off-white);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 28px;
}
.cita-gracias-next h3 {
  font-size: 18px; margin-bottom: 20px; color: var(--navy);
}
.cita-gracias-steps { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.cita-gracias-steps li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 16px; color: var(--gray-600); line-height: 1.7;
}
.cita-gracias-steps li strong { display: block; color: var(--navy); margin-bottom: 2px; font-size: 16px; }
.cita-gracias-steps li p { margin: 0; }
.cita-gracias-step-num {
  width: 28px; height: 28px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
/* ── CTA PAGO ── */
.cta-pago-section {
  padding: 64px 0;
  background: var(--off-white);
}
.cta-pago-card {
  max-width: 480px; margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-pago-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--gray-400); margin-bottom: 16px;
}
.cta-pago-price {
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 8px;
}
.cta-pago-currency { font-size: 48px; }
.cta-pago-sub {
  font-size: 15px; color: var(--gray-400); margin-bottom: 28px;
}
.cta-pago-btn {
  width: 100%; justify-content: center;
  font-size: 18px; letter-spacing: 1px;
  padding: 20px 32px; border-radius: 14px;
}
.cta-pago-secure {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.cta-pago-secure-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--gray-400);
  margin-bottom: 12px;
}
.cta-pago-lock { font-size: 13px; }
.cta-pago-cards {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.cta-pago-card-img { height: 28px; width: auto; }

.price-iva {
  font-family: 'Inter', sans-serif; font-size: 0.28em;
  font-weight: 600; color: var(--gray-400);
  vertical-align: super; margin-left: 4px; letter-spacing: .5px;
}
.cita-btn-with-note { flex-direction: column; gap: 3px; }
.cita-btn-main { font-size: 16px; font-weight: 700; }
.cita-btn-note { font-size: 11px; font-weight: 500; color: rgba(3,36,73,.55); }

/* Cita responsive */
@media (max-width: 1024px) {
  .cita-hero-inner { grid-template-columns: 1fr; }
  .cita-price-card { max-width: 480px; }
  .cita-steps { grid-template-columns: 1fr; gap: 32px; }
  .cita-step-connector { display: none; }
}
@media (max-width: 768px) {
  .cita-cta-card { flex-direction: column; text-align: center; }
  .cita-gracias-card { padding: 36px 24px; }
  .cita-gracias-next { padding: 20px; }
}
