/* ===========================================================
   BrillaClean — diseño "Editorial Photo" (revista + fotografía)
   Blanco cálido, tinta, acento terracota. Menú drawer derecho.
   =========================================================== */
:root {
  --ink: #161310;
  --ink-soft: #2c2722;
  --muted: #76706a;
  --paper: #ffffff;
  --cream: #f6f3ee;
  --cream-2: #efeae1;
  --line: #e3ddd2;
  --line-strong: #c9c1b3;
  --accent: #9a4d2e;
  --accent-soft: #c98a64;
  --radius: 3px;
  --radius-lg: 6px;
  --font-head: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --t: 0.35s cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; position: relative; }
.center { text-align: center; }

/* ===== ENCABEZADOS ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--accent); display: inline-block; }
.center .eyebrow { justify-content: center; }
.eyebrow.on-dark { color: var(--accent-soft); }
.eyebrow.on-dark::before { background: var(--accent-soft); }

.section-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.08;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 22px;
}
.section-title em, .section-title span { color: var(--accent); }
.section-text { color: var(--muted); max-width: 560px; font-size: 1.05rem; }
.center .section-text { margin: 0 auto; }
.section-head { margin-bottom: 70px; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 16px 32px; border-radius: var(--radius); border: 1px solid var(--ink);
  cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-white { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-white:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.full-width { width: 100%; }

/* enlace de texto con flecha */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); transition: gap var(--t);
}
.link-arrow svg { width: 18px; height: 18px; }
.link-arrow:hover { gap: 14px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--t), background var(--t);
}
body.scrolled .site-header { background: rgba(255,255,255,0.96); box-shadow: 0 12px 30px rgba(20,18,15,0.07); }
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: 1.5rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.logo .logo-mark { width: 26px; height: 26px; color: var(--accent); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.logo:hover .logo-mark { transform: rotate(90deg) scale(1.1); }
.logo span { color: var(--accent); }
.menu-btn {
  display: inline-flex; align-items: center; gap: 14px; cursor: pointer;
  background: none; border: none; font-family: var(--font-body); color: var(--ink);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500;
}
.menu-bars { display: inline-flex; flex-direction: column; gap: 5px; width: 28px; }
.menu-bars span { display: block; height: 1.6px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.menu-bars span:nth-child(2) { width: 70%; align-self: flex-end; }
.menu-btn:hover .menu-bars span:nth-child(2) { width: 100%; }

/* ===== DRAWER (panel derecho -> izquierda) ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(22,19,16,0.55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .5s ease; z-index: 100;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(460px, 100%);
  background: var(--cream); z-index: 101; padding: 40px 48px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(.16,.84,.3,1);
  box-shadow: -30px 0 80px rgba(20,18,15,0.18);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; }
.drawer-label { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); }
.drawer-close {
  width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%;
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background var(--t), color var(--t), transform var(--t);
}
.drawer-close svg { width: 18px; height: 18px; }
.drawer-close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  display: flex; align-items: baseline; gap: 16px; padding: 14px 0;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.1; color: var(--ink); border-bottom: 1px solid var(--line-strong);
  position: relative; transition: color var(--t), padding-left var(--t);
  opacity: 0; transform: translateX(40px);
}
.drawer-nav a .idx { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--accent); transform: translateY(-6px); }
.drawer-nav a:hover, .drawer-nav a.active-link { color: var(--accent); padding-left: 12px; }
.drawer.open .drawer-nav a { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1), color var(--t), padding-left var(--t); }
.drawer.open .drawer-nav a:nth-child(1) { transition-delay: .12s; }
.drawer.open .drawer-nav a:nth-child(2) { transition-delay: .19s; }
.drawer.open .drawer-nav a:nth-child(3) { transition-delay: .26s; }
.drawer.open .drawer-nav a:nth-child(4) { transition-delay: .33s; }
.drawer-foot { margin-top: auto; opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.drawer.open .drawer-foot { opacity: 1; transform: none; transition-delay: .42s; }
.drawer-foot .btn { width: 100%; margin-bottom: 26px; }
.drawer-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; font-size: 0.95rem; }
.drawer-contact a { color: var(--ink-soft); }
.drawer-contact a:hover { color: var(--accent); }
.drawer-social { display: flex; gap: 12px; }
.drawer-social a { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--t); }
.drawer-social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.drawer-social svg { width: 18px; height: 18px; }

/* ===== HERO A PANTALLA (foto + overlay) ===== */
.hero-full { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; animation: kenburns 14s ease-out both; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-full::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(22,19,16,0.88) 0%, rgba(22,19,16,0.35) 55%, rgba(22,19,16,0.5) 100%);
}
.hero-full .container { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 64px; color: #fff; }
.hero-full .eyebrow { color: var(--accent-soft); }
.hero-full .eyebrow::before { background: var(--accent-soft); }
.hero-headline {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.0; letter-spacing: -0.02em;
  max-width: 14ch; margin-bottom: 26px;
}
.hero-headline em { color: var(--accent-soft); }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.18rem; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 30px; }
.hero-stat { padding-right: 56px; margin-right: 56px; border-right: 1px solid rgba(255,255,255,0.18); }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; line-height: 1; color: #fff; }
.hero-stat span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); }
.scroll-cue { position: absolute; bottom: 30px; right: 40px; z-index: 2; color: rgba(255,255,255,0.7); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; display: flex; align-items: center; gap: 10px; }
.scroll-cue::after { content: ''; width: 1px; height: 46px; background: rgba(255,255,255,0.5); animation: cue 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ===== SECCIÓN ALTERNA ===== */
.section-alt { background: var(--cream); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink .section-title { color: #fff; }
.section-ink .section-text { color: rgba(255,255,255,0.7); }

/* ===== ABOUT (imágenes superpuestas) ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media .img-main { width: 90%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.about-media .img-float {
  position: absolute; bottom: -40px; right: 0; width: 52%; aspect-ratio: 1/1; object-fit: cover;
  border: 8px solid var(--paper); border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(20,18,15,0.18);
}
.about-media .badge-float {
  position: absolute; top: 26px; left: -26px; background: var(--accent); color: #fff;
  padding: 20px 24px; border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(154,77,46,0.35);
}
.about-media .badge-float strong { display: block; font-family: var(--font-head); font-size: 2.2rem; line-height: 1; }
.about-media .badge-float span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: .9; }
.checklist { margin: 28px 0 36px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 38px; color: var(--ink-soft); }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); -webkit-mask: center/14px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask: center/14px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ===== SERVICIOS CON FOTO ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(20,18,15,0.12); }
.svc-figure { position: relative; aspect-ratio: 3/2.2; overflow: hidden; background: var(--cream-2); }
.svc-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover .svc-figure img { transform: scale(1.06); }
.svc-figure .svc-tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.92); color: var(--ink); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; padding: 7px 14px; border-radius: var(--pill, 999px); }
.svc-body { padding: 32px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; margin-bottom: 12px; }
.svc-body > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }
.svc-body ul { margin-bottom: 26px; display: grid; gap: 10px; }
.svc-body ul li { position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--ink-soft); }
.svc-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.svc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
.svc-price { font-family: var(--font-head); font-size: 1.45rem; }
.svc-price small { font-family: var(--font-body); color: var(--muted); font-size: 0.74rem; }

/* ===== WHY (imagen + lista numerada) ===== */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.why-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: var(--radius-lg); }
.why-list { display: grid; gap: 8px; }
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.why-item:last-child { border-bottom: none; }
.why-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent); line-height: 1; }
.why-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 0.96rem; }

/* ===== PROCESO ===== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; position: relative; }
.proc-step { border-top: 2px solid var(--ink); padding-top: 24px; }
.proc-step .proc-num { font-family: var(--font-head); font-size: 3.4rem; line-height: 1; display: block; margin-bottom: 18px; }
.proc-step h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; margin-bottom: 10px; }
.proc-step p { color: rgba(255,255,255,0.7); font-size: 0.96rem; }
.section-ink .proc-step { border-top-color: var(--accent-soft); }

/* ===== GALERÍA ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid figure { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); position: relative; background: var(--cream-2); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid .tall, .gallery-grid .wide { grid-row: auto; grid-column: auto; }

/* ===== TESTIMONIOS (con foto) ===== */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; display: flex; flex-direction: column; }
.quote-stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.quote-card p { font-family: var(--font-head); font-size: 1.22rem; line-height: 1.45; margin-bottom: 26px; }
.quote-person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote-person strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.quote-person span { font-size: 0.8rem; color: var(--muted); }

/* ===== PLANES ===== */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 34px; display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(20,18,15,0.10); }
.plan-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan-name { font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; color: var(--accent); margin-bottom: 18px; }
.plan-card.featured .plan-name { color: var(--accent-soft); }
.plan-price { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; margin-bottom: 6px; }
.plan-price small { font-family: var(--font-body); font-size: 0.85rem; color: var(--muted); }
.plan-card.featured .plan-price small { color: rgba(255,255,255,0.6); }
.plan-tagline { color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.18); }
.plan-feats { display: grid; gap: 13px; margin-bottom: 34px; }
.plan-feats li { position: relative; padding-left: 26px; font-size: 0.94rem; }
.plan-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 0.85rem; }
.plan-card.featured .plan-feats li::before { color: var(--accent-soft); }
.plan-card .btn { margin-top: auto; }
.plan-badge { display: inline-block; align-self: flex-start; background: var(--accent); color: #fff; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }

/* ===== FAQ (acordeón) ===== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-size: 1.6rem; color: var(--accent); transition: transform var(--t); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 26px; max-width: 760px; }

/* ===== CTA con foto ===== */
.cta-full { position: relative; overflow: hidden; padding: 130px 0; text-align: center; color: #fff; }
.cta-full img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-full::after { content: ''; position: absolute; inset: 0; background: rgba(22,19,16,0.72); z-index: 1; }
.cta-full .container { position: relative; z-index: 2; }
.cta-full h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 18px; max-width: 760px; margin-inline: auto; }
.cta-full p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.1rem; }

/* ===== PAGE HEADER (internas) ===== */
.page-header { background: var(--cream); padding: 90px 0 80px; text-align: center; border-bottom: 1px solid var(--line); }
.page-header h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 16px; }
.page-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1.08rem; }

/* ===== (INTERNAS) tarjetas/features/steps/testimonios genéricos ===== */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.hero-grid .hero-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3.4; filter: grayscale(12%); transition: filter .7s ease; }
.hero-grid .hero-image:hover img { filter: none; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.card { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); padding: 44px 36px; display: flex; flex-direction: column; transition: background var(--t); }
.cards-grid .card:first-child { border-left: 1px solid var(--line); }
.card:hover { background: var(--cream); }
.card-icon { width: 48px; height: 48px; color: var(--accent); margin-bottom: 24px; }
.card-icon svg { width: 32px; height: 32px; stroke-width: 1.4; }
.card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-bottom: 12px; }
.card > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 22px; }
.card ul { margin-bottom: 30px; }
.card ul li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 0.92rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.card ul li:last-child { border-bottom: none; }
.card ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.card-price { margin-top: auto; font-family: var(--font-head); font-size: 1.5rem; }
.card-price small { color: var(--muted); font-family: var(--font-body); font-size: 0.78rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature { padding: 40px 28px; border-left: 1px solid var(--line); }
.features-grid .feature:last-child { border-right: 1px solid var(--line); }
.feature-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 22px; display: flex; align-items: center; }
.feature-icon svg { width: 28px; height: 28px; stroke-width: 1.4; }
.feature h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.step { border-top: 1px solid var(--ink); padding-top: 22px; }
.step-num { font-family: var(--font-head); font-size: 3.2rem; line-height: 1; display: block; margin-bottom: 20px; }
.step h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.96rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.testi-card { padding: 44px 36px; border-left: 1px solid var(--line); }
.testi-grid .testi-card:last-child { border-right: 1px solid var(--line); }
.testi-stars { color: var(--accent); letter-spacing: 4px; margin-bottom: 22px; font-size: 0.85rem; }
.testi-card p { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.4; margin-bottom: 24px; }
.testi-author { font-weight: 500; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.cta-banner { background: var(--ink); text-align: center; padding: 110px 32px; color: #fff; }
.cta-banner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; max-width: 720px; margin-inline: auto; }
.cta-banner p { margin-bottom: 36px; color: rgba(255,255,255,0.7); }

/* ===== CONTACTO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact-info-item { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info-item:first-child { border-top: 1px solid var(--line); }
.ci-icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.ci-icon svg { width: 24px; height: 24px; stroke-width: 1.4; }
.contact-info-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.contact-info-item p { color: var(--muted); font-size: 0.92rem; }
.form-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 15px 18px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: inherit; font-size: 0.96rem; color: var(--ink); background: var(--paper); transition: border-color var(--t), box-shadow var(--t);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a39c91; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 16px; text-align: center; font-size: 0.92rem; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: #cdc6bc; padding: 90px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 50px; padding-bottom: 60px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo .logo-mark, .footer .logo span { color: var(--accent-soft); }
.footer-brand p { font-size: 0.95rem; max-width: 320px; color: #9b938a; }
.footer h4 { font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; font-size: 0.75rem; margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-news p { font-size: 0.9rem; margin-bottom: 14px; color: #9b938a; }
.footer-news form { display: flex; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); overflow: hidden; }
.footer-news input { flex: 1; background: transparent; border: none; padding: 13px 16px; color: #fff; font-family: inherit; font-size: 0.9rem; }
.footer-news input::placeholder { color: #8c847b; }
.footer-news button { background: var(--accent); border: none; color: #fff; padding: 0 18px; cursor: pointer; transition: background var(--t); }
.footer-news button:hover { background: var(--accent-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--t); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 26px 0; text-align: center; font-size: 0.82rem; color: #8c847b; }

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float { position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px; background: var(--ink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.22); z-index: 80; transition: transform var(--t), background var(--t); }
.whatsapp-float:hover { transform: translateY(-4px); background: #25d366; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== BARRA DE PROGRESO ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 95; transition: width 0.08s linear; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }
.r-grid > .reveal:nth-child(2), .svc-grid > .reveal:nth-child(2), .quotes-grid > .reveal:nth-child(2),
.plans-grid > .reveal:nth-child(2), .process-grid > .reveal:nth-child(2), .features-grid > .reveal:nth-child(2),
.cards-grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.svc-grid > .reveal:nth-child(3), .quotes-grid > .reveal:nth-child(3), .plans-grid > .reveal:nth-child(3),
.process-grid > .reveal:nth-child(3), .features-grid > .reveal:nth-child(3), .cards-grid > .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid > .reveal:nth-child(4) { transition-delay: 0.3s; }

/* entrada del hero */
@keyframes riseIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-full .eyebrow   { animation: riseIn .9s .2s cubic-bezier(.2,.7,.2,1) both; }
.hero-headline        { animation: riseIn 1s .32s cubic-bezier(.2,.7,.2,1) both; }
.hero-sub             { animation: riseIn 1s .46s cubic-bezier(.2,.7,.2,1) both; }
.hero-actions         { animation: riseIn 1s .6s cubic-bezier(.2,.7,.2,1) both; }
.hero-stats           { animation: riseIn 1s .74s cubic-bezier(.2,.7,.2,1) both; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-full .eyebrow, .hero-headline, .hero-sub, .hero-actions, .hero-stats, .hero-bg {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .container, .container-narrow { padding: 0 26px; }
  .header-inner { padding: 18px 26px; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 480px; }
  .about-media .img-float { right: 10px; }
  .svc-grid, .quotes-grid, .plans-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid, .features-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .card, .features-grid .feature, .testi-grid .testi-card { border: 1px solid var(--line); margin: -0.5px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .svc-grid, .quotes-grid, .plans-grid, .process-grid,
  .cards-grid, .features-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat { padding-right: 28px; margin-right: 28px; }
  .drawer { padding: 30px 28px; }
  .menu-btn span:first-child { display: none; }
  .scroll-cue { display: none; }
}

/* ===== MÁS MOVIMIENTO EN PLANES ===== */
.plan-card:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 34px 64px rgba(20,18,15,0.18); }
@keyframes planFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.plan-card.featured { animation: planFloat 4.5s ease-in-out infinite; }
.plan-card.featured:hover { animation-play-state: paused; transform: translateY(-14px) scale(1.02); }
@keyframes badgePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.09); opacity: .92; } }
.plan-badge { animation: badgePulse 1.8s ease-in-out infinite; transform-origin: left center; }
@media (prefers-reduced-motion: reduce) {
  .plan-card.featured, .plan-badge { animation: none !important; }
}
