/*
Theme Name: Funeraria Tábara
Author: Juan Antonio Lopez
Version: 1.0
*/

:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f4;
  --bg-deep: #161412;
  --ink: #1a1816;
  --ink-soft: #5a5550;
  --ink-mute: #9a948e;
  --accent: #7a1c1c;
  --accent-soft: #9b3030;
  --line: #e4e0db;
  --gold: #a8823c;
  --serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* === EMERGENCY BAR === */
.bar-emergency {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.bar-emergency a { color: #fff; font-weight: 600; }

/* === HEADER === */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
  text-transform: uppercase;
}
.logo-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-mute); }
.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  line-height: 1.3;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--accent-soft); }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav-link { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--ink); transition: color 0.2s; }
.header-nav-link:hover { color: var(--accent); }
.header-cta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.85; }
.header-cta-num { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: 1px; }

/* === HERO === */
.hero {
  background: #1e1a17;
  color: var(--bg);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(122,28,28,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(168,130,60,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-credentials {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-credentials-item {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}
.hero-credentials-sep {
  width: 1px;
  height: 14px;
  background: rgba(168,130,60,0.35);
}
.hero-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 400; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 40px;
  max-width: 760px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.hero-title-small { font-size: 0.52em; font-weight: 300; letter-spacing: 0px; line-height: 1.35; color: rgba(255,255,255,0.75); display: block; margin-top: 8px; }
.hero-title-small em { font-style: italic; color: rgba(255,255,255,0.75); }
.hero-chip {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245,241,234,0.7);
  border: 1px solid rgba(245,241,234,0.2);
  padding: 8px 16px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-soft); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--gold); color: var(--bg-deep); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 20px 48px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.88; }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 20px 48px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--bg-deep); }

/* === TRUST STRIP === */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 0; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  padding: 24px 40px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-mute);
  border-right: 1px solid var(--line);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  color: var(--accent);
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 4px;
}

/* === SECTIONS === */
.section { padding: 100px 0; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }
.section-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  max-width: 680px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-lead {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* === AUDIENCIAS === */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card {
  background: var(--bg);
  border-top: 3px solid var(--accent);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.audience-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.audience-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 12px; font-weight: 500; }
.audience-title { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
.audience-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; flex: 1; }
.audience-price { font-family: var(--serif); font-size: 44px; font-weight: 400; color: var(--accent); font-style: italic; line-height: 1; margin-bottom: 6px; }
.audience-price-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-mute); margin-bottom: 24px; }
.audience-cta {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: background 0.2s;
}
.audience-cta:hover { background: var(--accent-soft); }

/* === PRICING CARDS === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-card--featured:hover {
  box-shadow: 0 8px 32px rgba(122,28,28,0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 16px;
  white-space: nowrap;
}
.pricing-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--ink-mute);
  background: var(--bg-alt);
  padding: 5px 12px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -2px;
}
.pricing-price sup { font-size: 24px; font-weight: 500; letter-spacing: 0; vertical-align: super; }
.pricing-price-note {
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.pricing-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 24px;
}
.pricing-includes {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pricing-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: all 0.2s;
}
.pricing-cta:hover { background: var(--ink); color: var(--bg); }
.pricing-info {
  display: block;
  text-align: center;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.pricing-info:hover { border-color: var(--ink-soft); color: var(--ink); }
.pricing-card--featured .pricing-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pricing-card--featured .pricing-cta:hover { background: var(--accent-soft); border-color: var(--accent-soft); }
.pricing-card--featured .pricing-info { border-color: rgba(139,31,31,0.25); color: rgba(139,31,31,0.7); }
.pricing-card--featured .pricing-info:hover { border-color: var(--accent); color: var(--accent); }

/* === SERVICIOS EXTRA === */
.services-extra {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-extra-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.services-extra-item strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.services-extra-item a { color: var(--accent); text-decoration: none; }
.services-extra-item a:hover { text-decoration: underline; }

/* === DIFERENCIADORES === */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.why-item {
  padding: 28px 24px 24px;
  border-top: 1px solid var(--line);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.why-item:hover {
  background: var(--bg-alt);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.why-item:hover .why-item-tag { color: var(--accent-soft); }
.why-item-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 14px; font-weight: 500; transition: color 0.2s; }
.why-title { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 12px; line-height: 1.25; }
.why-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* === COBERTURA === */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--line);
  margin-top: 48px;
}
.coverage-item { background: var(--bg); padding: 56px 48px; }
.coverage-city { font-family: var(--serif); font-size: 48px; font-weight: 400; letter-spacing: -1px; margin-bottom: 16px; line-height: 1; }
.coverage-city em { font-style: italic; color: var(--accent); }
.coverage-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; max-width: 360px; }
.coverage-phone-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--ink-mute); margin-bottom: 6px; }
.coverage-phone { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--accent); }

/* === CTA FINAL === */
.cta-final { background: var(--bg-deep); color: var(--bg); padding: 120px 0; text-align: center; }
.cta-final-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); margin-bottom: 28px; }
.cta-final-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-final-title em { font-style: normal; color: var(--gold); }
.cta-final-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,241,234,0.7);
  margin-bottom: 48px;
}
.cta-final-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer { background: var(--ink); color: rgba(245,241,234,0.55); padding: 40px 0; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: 3px; color: var(--bg); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(245,241,234,0.45); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; transition: color 0.2s; }
.footer-links a:hover { color: var(--bg); }

/* === CENTRADO DE SECCIÓN === */
.section-eyebrow--center { text-align: center; }
.section-title.section-title--center { text-align: center; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

/* === PRICING TOOLTIP === */
.pricing-info-wrap { position: relative; }
.pricing-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 20px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.pricing-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--ink);
}
.pricing-info-wrap:hover .pricing-tooltip,
.pricing-info-wrap.is-open .pricing-tooltip { display: block; }
.pricing-tooltip-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 12px; }
.pricing-tooltip ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.pricing-tooltip ul li { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.8); padding-left: 14px; position: relative; }
.pricing-tooltip ul li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pricing-tooltip-note { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; margin-top: 4px; }
.pricing-tooltip-link { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); }
.pricing-tooltip-link:hover { text-decoration: underline; }

/* === INCLUDES GRID === */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 16px;
  background: var(--bg);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  cursor: default;
}
.includes-item:hover {
  border-color: var(--line);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  color: var(--ink);
}
.includes-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(122,28,28,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
  transition: background 0.2s, color 0.2s;
}
.includes-item:hover .includes-check {
  background: var(--accent);
  color: #fff;
}

/* === HOME PRINCIPAL === */
.hero-home .hero-title { font-size: clamp(40px, 6vw, 80px); }
.hero-home-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.home-intro-body { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.home-intro-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}
.home-intro-cta:hover { text-decoration: underline; }
.home-intro-stats { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--line); padding-left: 40px; }
.home-stat { padding: 28px 0; border-bottom: 1px solid var(--line); }
.home-stat:last-child { border-bottom: none; }
.home-stat-num { font-family: var(--serif); font-size: 40px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 6px; color: var(--accent); }
.home-stat-label { font-size: 13px; color: var(--ink-mute); }

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--line);
  margin-top: 48px;
}
.home-service-card {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
a.home-service-card:hover { background: var(--bg-alt); }
.home-service-card--featured { background: var(--bg-alt); }
.home-service-card--muted { background: var(--bg); }
.home-service-card--cta {
  background: var(--bg-deep);
  color: var(--bg);
  justify-content: center;
  gap: 24px;
}
.home-service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
}
.home-service-num { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--ink-mute); margin-bottom: 12px; letter-spacing: 1px; }
.home-service-name { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.home-service-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.home-service-price { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 12px; letter-spacing: -1px; }
.home-service-link { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-mute); text-decoration: none; }
a.home-service-card:hover .home-service-link { color: var(--accent); }
.home-service-cta-text { font-size: 16px; line-height: 1.6; color: rgba(245,241,234,0.75); }
.home-service-cta-btn {
  display: inline-block;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  align-self: flex-start;
  transition: background 0.2s;
}
.home-service-cta-btn:hover { background: var(--accent-soft); }

/* === RESEÑAS === */
.reviews-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.reviews-aggregate { display: flex; flex-direction: column; gap: 4px; }
.reviews-aggregate-score { font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; color: var(--ink); letter-spacing: -1px; }
.reviews-aggregate-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.reviews-aggregate-label { font-size: 12px; color: var(--ink-mute); }
.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  margin-left: auto;
}
.reviews-google-icon {
  width: 20px; height: 20px;
  background: conic-gradient(#4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg 360deg);
  border-radius: 50%;
  flex-shrink: 0;
}
.reviews-google-text { font-size: 12px; color: var(--ink-mute); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.review-stars { color: #f5a623; font-size: 20px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.review-divider { height: 1px; background: var(--line); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4a4a4a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.review-meta { display: flex; flex-direction: column; gap: 3px; }
.review-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.review-verified { font-size: 12px; color: var(--ink-mute); }

/* === FAQ === */
.faq-list { margin-top: 48px; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: transform 0.2s; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-icon { border-color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-icon::before,
.faq-q[aria-expanded="true"] .faq-icon::after { background: var(--accent); }
.faq-a {
  padding: 0 0 28px;
  max-width: 720px;
}
.faq-a p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; }
.faq-a p + p { margin-top: 12px; }

/* === PÁGINA DE SERVICIO === */
.service-page { padding: 80px 0 120px; }
.service-page-header { padding: 64px 0 56px; background: var(--bg-alt); border-bottom: 1px solid var(--line); margin-bottom: 80px; }
.service-page-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.service-page-title em { font-style: normal; color: var(--accent); }
.service-page-lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 600px;
  font-weight: 300;
}
.service-page-body { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.service-detail-price-box {
  border: 2px solid var(--accent);
  padding: 40px 32px;
  position: sticky;
  top: 96px;
}
.service-detail-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--ink-mute); margin-bottom: 12px; }
.service-detail-price {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 6px;
}
.service-detail-price sup { font-size: 28px; font-weight: 500; letter-spacing: 0; vertical-align: super; }
.service-detail-price-note { font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 32px; }
.service-detail-cta {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.service-detail-cta:hover { background: var(--accent-soft); }
.service-detail-wa {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.service-detail-wa:hover { border-color: var(--ink-soft); color: var(--ink); }
.service-detail-divider { height: 1px; background: var(--line); margin: 28px 0; }
.service-detail-includes-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--ink-mute); margin-bottom: 16px; }
.service-detail-includes { list-style: none; }
.service-detail-includes li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-detail-includes li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.service-content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 56px;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.service-content ul { list-style: none; margin-bottom: 24px; }
.service-content ul li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  gap: 10px;
}
.service-content ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; }
.service-steps { counter-reset: step; list-style: none; margin-bottom: 24px; }
.service-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.service-steps li strong { display: block; font-size: 16px; margin-bottom: 4px; }
.service-steps li span { font-size: 14px; color: var(--ink-soft); }
.not-included-list { list-style: none; }
.not-included-list li {
  font-size: 14px;
  color: var(--ink-mute);
  padding: 7px 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  gap: 10px;
}
.not-included-list li::before { content: '×'; color: var(--ink-mute); font-weight: 700; }
.service-faq { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-q { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.faq-a { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.service-back { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-mute); margin-bottom: 32px; }
.service-back:hover { color: var(--ink); }

/* === BOTONES FLOTANTES === */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.float-btn--wa { background: #25d366; }
.float-btn--call { background: var(--accent); }

/* === HERO STAGGER ANIMATION === */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-credentials { animation: heroFadeUp 0.6s ease both; animation-delay: 0.05s; }
.hero-title        { animation: heroFadeUp 0.65s ease both; animation-delay: 0.2s; }
.hero-subtitle     { animation: heroFadeUp 0.6s ease both; animation-delay: 0.38s; }
.hero-actions      { animation: heroFadeUp 0.6s ease both; animation-delay: 0.52s; }

/* === HERO CHIP HOVER === */
.hero-chip { transition: color 0.2s, border-color 0.2s, background 0.2s; cursor: default; }
.hero-chip:hover { color: rgba(245,241,234,0.95); border-color: rgba(245,241,234,0.45); background: rgba(255,255,255,0.06); }

/* === BUTTON PRESS EFFECT === */
.btn-primary:active, .btn-secondary:active, .btn-gold:active,
.btn-outline-gold:active, .audience-cta:active, .pricing-cta:active,
.header-cta:active { transform: scale(0.97); transition: transform 0.08s; }

/* === SECTION EYEBROW LINE === */
.section-eyebrow:not(.section-eyebrow--center) {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow:not(.section-eyebrow--center)::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* === REVIEW QUOTE MARK === */
.review-card { position: relative; overflow: hidden; }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  right: 16px;
  font-family: var(--serif);
  font-size: 100px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  font-style: italic;
}

/* === FAQ BORDER ON OPEN === */
.faq-a:not([hidden]) {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-left: 1px;
}

/* === CTA FINAL PATTERN === */
.cta-final {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.018) 24px,
    rgba(255,255,255,0.018) 25px
  );
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === STICKY CTA BAR (mobile) === */
.sticky-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; }
.sticky-cta-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
.sticky-cta-bar a {
  padding: 18px 16px; text-align: center;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #fff;
}
.sticky-cta-bar a:first-child { background: var(--accent); }
.sticky-cta-bar a:last-child { background: #25d366; }

/* === MOBILE === */
@media (max-width: 768px) {
  .hero { padding: 40px 0 48px; }
  .hero-credentials { gap: 10px; margin-bottom: 20px; }
  .hero-credentials-item { font-size: 9px; letter-spacing: 1.5px; }
  .hero-credentials-sep { height: 10px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); letter-spacing: -1px; margin-bottom: 24px; }
  .section { padding: 64px 0; }
  .hero-actions, .cta-final-actions { flex-direction: column; align-items: flex-start; }
  .cta-final-actions { align-items: center; }
  .btn-primary, .btn-secondary, .btn-gold, .btn-outline-gold { justify-content: center; }
  .audience-grid, .coverage-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card--featured { order: -1; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-page-body { grid-template-columns: 1fr; }
  .service-detail-price-box { position: static; }
  .service-page-body > .service-detail-price-box { order: -1; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .includes-item { padding: 10px 12px; font-size: 13px; }
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 12px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .reviews-grid .review-card {
    flex: 0 0 80vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .reviews-header { flex-wrap: wrap; }
  .reviews-google-badge { margin-left: 0; }
  .home-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-intro-stats { border-left: none; padding-left: 0; border-top: 2px solid var(--line); padding-top: 32px; flex-direction: row; flex-wrap: wrap; gap: 0; }
  .home-stat { flex: 1 1 50%; padding: 20px 16px 20px 0; }
  .home-services-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { width: 50%; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(even) { border-right: none; }
  .coverage-item { padding: 40px 24px; }
  .coverage-city { font-size: 36px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .header-nav { gap: 16px; flex-wrap: wrap; width: 100%; border-top: 1px solid var(--line); padding-top: 12px; }
  .header-nav-link { font-size: 10px; letter-spacing: 1.5px; }
  .header-cta { display: none; }
.site-header.scrolled .header-cta { display: none; }
  .header-cta { padding: 10px 16px; }
  .header-cta-num { font-size: 17px; }
}

@media (max-width: 480px) {
  .trust-item { width: 100%; border-right: none; border-bottom: 1px solid var(--line); }
  .services-extra-item { flex-direction: column; gap: 4px; }
  .home-services-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card { flex: 0 0 85vw; }
}
