/* ═══════════════════════════════════════════════════════
   PIEL INTELIGENTE® · Dra. Jimena D. Frasso
   styles.css — Nube Roja Digital · 2026
   ───────────────────────────────────────────────────────
   Paleta principal derivada del logo:
   Rosa salmón #E8938A · Crema #FAF8F6 · Ink #3D2E28
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --rose:      #E8938A;
  --rose2:     #D4746A;
  --rose-dim:  rgba(232,147,138,.12);
  --rose-line: rgba(232,147,138,.30);
  --cream:     #FAF8F6;
  --cream2:    #F0ECE8;
  --ink:       #3D2E28;
  --ink2:      #6B5248;
  --sand:      #A89080;
  --white:     #FFFFFF;
  --border:    rgba(61,46,40,.10);
  --shadow:    0 6px 36px rgba(61,46,40,.09);
  --nav-h:     72px;
  --r:         12px;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; font-weight: 300; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; }
::selection { background: var(--rose-dim); color: var(--ink); }

/* ── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,246,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(61,46,40,.08); }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link {
  font-size: 12px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink2); cursor: pointer; position: relative; padding-bottom: 2px;
  transition: color .2s; border: none; background: none; font-family: var(--sans);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--rose);
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--rose); color: #fff;
  padding: 10px 20px; border-radius: 4px; border: none;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s, transform .15s; display: inline-block;
}
.nav-cta:hover { background: var(--rose2); transform: translateY(-1px); }

/* Dropdown — funciona con hover CSS puro, JS solo como refuerzo */
.nav-dropdown { position: relative; }
.ddarrow { font-size: 9px; margin-left: 2px; display: inline-block; transition: transform .2s; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 8px 0; min-width: 230px;
  box-shadow: 0 8px 32px rgba(61,46,40,.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, visibility .18s;
  /* padding-top crea un puente invisible para que el mouse no pierda hover */
  margin-top: 0;
}
/* Puente invisible entre el botón y el menú */
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
/* Abrir con hover sobre el contenedor */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
}
.nav-dropdown:hover .ddarrow,
.nav-dropdown.open .ddarrow { transform: rotate(180deg); }
.dropdown-item {
  display: block; padding: 10px 18px;
  font-size: 13px; font-weight: 400; color: var(--ink2);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.dropdown-item:hover { color: var(--rose); background: var(--rose-dim); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99; flex-direction: column;
  padding: 20px; gap: 0; overflow-y: auto; border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.ml { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); letter-spacing: .03em; }
.ml:hover { color: var(--rose); }
.mg { border-bottom: 1px solid var(--border); }
.mgt { width: 100%; text-align: left; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--ink); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); }
.msub { display: none; padding: 0 0 8px 14px; }
.msub.open { display: block; }
.msl { display: block; padding: 9px 0; font-size: 14px; color: var(--ink2); border-bottom: 1px solid rgba(61,46,40,.05); }
.msl:hover { color: var(--rose); }
.mc { margin-top: 16px; background: var(--rose); color: #fff; padding: 14px; border-radius: 4px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; }

/* ── PAGE WRAPPER ────────────────────────────────────── */
.page-wrapper { padding-top: var(--nav-h); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--rose); color: #fff; padding: 13px 28px; border-radius: 4px; border: none;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s, transform .15s; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--rose2); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink); padding: 13px 28px; border-radius: 4px;
  border: 1px solid var(--border); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: border-color .2s, color .2s, transform .15s; cursor: pointer; display: inline-block;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: #fff; padding: 13px 28px; border-radius: 4px;
  border: 1px solid rgba(250,248,246,.25); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: border-color .2s, transform .15s; cursor: pointer; display: inline-block;
}
.btn-outline-light:hover { border-color: rgba(250,248,246,.6); transform: translateY(-2px); }
.acts { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PILL STRIP ──────────────────────────────────────── */
.ps { background: var(--rose); padding: 12px 40px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.pi { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: 8px; opacity: .95; }
.pi::before { content: '·'; font-size: 16px; opacity: .6; }
.pi:first-child::before { display: none; }

/* ── SECTIONS ────────────────────────────────────────── */
.sec { padding: 76px 40px; }
.si { max-width: 1120px; margin: 0 auto; }
.shd { margin-bottom: 44px; }
.shd.center { text-align: center; }
.bg-w  { background: #fff; }
.bg-cr { background: var(--cream); }
.bg-c2 { background: var(--cream2); }
.bg-ink { background: var(--ink); }

.ey { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.ey.centered { justify-content: center; }
.ey.centered::before, .ey.centered::after { content: ''; width: 20px; height: 1px; background: var(--rose); }
.ey.left::before { content: ''; width: 20px; height: 1px; background: var(--rose); }
.sh2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 44px); font-weight: 300; color: var(--ink); line-height: 1.12; letter-spacing: -.01em; }
.sh2 strong { font-weight: 600; }
.sh2 em { color: var(--rose); font-style: italic; }
.sl { font-size: 15px; font-weight: 300; color: var(--ink2); line-height: 1.75; max-width: 60ch; margin: 14px auto 0; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  min-height: calc(100vh - var(--nav-h)); padding: 56px 40px;
  background: linear-gradient(160deg, var(--cream) 55%, rgba(232,147,138,.07) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,147,138,.09), transparent 65%);
  pointer-events: none;
}
.hc { position: relative; z-index: 1; }
.hey { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.hey::before { content: ''; width: 28px; height: 1px; background: var(--rose); }
.hh1 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 62px); font-weight: 300; color: var(--ink); line-height: 1.1; letter-spacing: -.01em; margin-bottom: 20px; }
.hh1 em { color: var(--rose); font-style: italic; font-weight: 400; }
.hl { font-size: 16px; font-weight: 300; color: var(--ink2); line-height: 1.75; max-width: 46ch; margin-bottom: 28px; }
.hs-row { display: flex; gap: 0; padding-top: 28px; border-top: 1px solid var(--border); margin-top: 10px; }
.hst { flex: 1; padding: 0 16px 0 0; }
.hst:first-child { padding-left: 0; }
.hsn { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--rose); line-height: 1; }
.hsl { font-size: 11px; color: var(--sand); margin-top: 3px; font-weight: 400; letter-spacing: .04em; }
.hsd { width: 1px; background: var(--border); margin: 0 2px; flex-shrink: 0; }
.him { position: relative; z-index: 1; }
.hiw { border-radius: var(--r); overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(61,46,40,.18); }
.hph { width: 100%; display: block; object-fit: cover; max-height: 560px; object-position: top center; }
.hbadge { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(250,248,246,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 13px 16px; display: flex; align-items: center; gap: 12px; }
.hbi { font-size: 20px; flex-shrink: 0; }
.hbl { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); margin-bottom: 2px; }
.hbt { font-family: var(--serif); font-size: 15px; font-weight: 400; color: var(--ink); }

/* ── PROPUESTA DE VALOR ──────────────────────────────── */
.pvg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.pvc { background: #fff; padding: 36px 28px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.pvc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--rose); transform: scaleX(0); transition: transform .35s; transform-origin: left; }
.pvc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pvc:hover::after { transform: scaleX(1); }
.pvn { font-family: var(--serif); font-size: 50px; font-weight: 300; color: var(--rose-dim); position: absolute; top: 16px; right: 18px; line-height: 1; }
.pvi { font-size: 26px; margin-bottom: 14px; }
.pvt { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 9px; line-height: 1.25; }
.pvd { font-size: 13.5px; font-weight: 300; color: var(--ink2); line-height: 1.7; }

/* ── TREATMENTS GRID ─────────────────────────────────── */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.tc { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .3s, box-shadow .3s; display: block; }
.tc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tct { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 50px; position: relative; }
.t-manchas  { background: linear-gradient(135deg, rgba(232,147,138,.15), rgba(232,147,138,.05)); }
.t-arrugas  { background: linear-gradient(135deg, rgba(61,46,40,.08), rgba(61,46,40,.03)); }
.t-neogen   { background: linear-gradient(135deg, rgba(232,147,138,.25), rgba(168,144,128,.10)); }
.t-calidad  { background: linear-gradient(135deg, rgba(184,144,42,.12), rgba(184,144,42,.04)); }
.t-flacidez { background: linear-gradient(135deg, rgba(61,46,40,.06), rgba(232,147,138,.08)); }
.t-cicatrices { background: linear-gradient(135deg, rgba(26,122,74,.08), rgba(26,122,74,.03)); }
.tcb { position: absolute; top: 10px; left: 10px; background: var(--rose); color: #fff; padding: 3px 9px; border-radius: 20px; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.tcbd { padding: 20px 18px; }
.tctag { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; }
.tct2 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 7px; }
.tcd { font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.6; margin-bottom: 14px; }
.tcl { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); background: none; border: none; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.tc:hover .tcl { gap: 12px; }

/* ── GOOGLE REVIEWS WIDGET ───────────────────────────── */
.gw { background: #fff; border: 1px solid #dadce0; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,.08); }
.gw-hd { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid #f1f3f4; flex-wrap: wrap; }
.gw-src { display: flex; align-items: center; gap: 8px; }
.gw-srct { font-size: 14px; font-weight: 600; color: #202124; font-family: 'Google Sans', Roboto, Arial, sans-serif; }
.gw-sc { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.gw-scn { font-size: 42px; font-weight: 300; color: #202124; line-height: 1; font-family: 'Google Sans', Roboto, Arial, sans-serif; }
.gw-scst { color: #fbbc04; font-size: 20px; letter-spacing: 2px; line-height: 1; display: block; }
.gw-scc { font-size: 12px; color: #70757a; margin-top: 3px; font-family: Roboto, Arial, sans-serif; }
.gw-wb { margin-left: auto; background: #1a73e8; color: #fff; padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 600; border: none; cursor: pointer; font-family: 'Google Sans', Roboto, Arial, sans-serif; white-space: nowrap; transition: background .2s; }
.gw-wb:hover { background: #1557b0; }
.gw-cw { position: relative; overflow: hidden; padding: 16px 0; }
.gw-arr { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid #dadce0; font-size: 20px; color: #202124; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 6px rgba(0,0,0,.12); transition: box-shadow .2s; }
.gw-arr:hover { box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.gw-l { left: 6px; }
.gw-r { right: 6px; }
.gw-car { display: flex; gap: 14px; padding: 0 48px; transition: transform .35s ease; will-change: transform; }
.gw-card { background: #fff; border: 1px solid #dadce0; border-radius: 10px; padding: 16px; min-width: 272px; max-width: 272px; flex-shrink: 0; transition: box-shadow .2s; }
.gw-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.gw-card-hd { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.gw-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; font-family: 'Google Sans', Roboto, Arial, sans-serif; }
.gw-rv { flex: 1; min-width: 0; }
.gw-rv-name { font-size: 13px; font-weight: 600; color: #202124; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Google Sans', Roboto, Arial, sans-serif; }
.gw-ck { color: #1a73e8; font-size: 11px; margin-left: 2px; }
.gw-rv-stars { color: #fbbc04; font-size: 12px; letter-spacing: 1.5px; display: block; margin-top: 3px; }
.gw-gicon { flex-shrink: 0; margin-left: auto; }
.gw-txt { font-size: 13px; color: #202124; line-height: 1.6; font-family: Roboto, Arial, sans-serif; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.gw-dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0 14px; }
.gw-dot { width: 8px; height: 8px; border-radius: 50%; background: #dadce0; border: none; cursor: pointer; transition: background .2s, transform .2s; }
.gw-dot.active { background: #1a73e8; transform: scale(1.2); }

/* ── DRA FRASSO SECTION ──────────────────────────────── */
.dra-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; max-width: 1120px; margin: 0 auto; }
.diw { border-radius: var(--r); overflow: hidden; box-shadow: 0 16px 48px rgba(61,46,40,.15); }
.dph { width: 100%; display: block; object-fit: cover; max-height: 520px; object-position: top center; }
.dcreds { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; margin-bottom: 26px; }
.dcred { font-size: 13.5px; font-weight: 300; color: var(--ink2); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.dcred::before { content: '·'; color: var(--rose); font-size: 18px; line-height: 1.3; flex-shrink: 0; }
.dq { padding: 18px 22px; border-left: 3px solid var(--rose); background: var(--rose-dim); border-radius: 0 var(--r) var(--r) 0; margin-top: 24px; }
.dq p { font-family: var(--serif); font-size: 16px; font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.6; }
.dq cite { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); display: block; margin-top: 8px; }

/* ── LP HERO (inner pages) ───────────────────────────── */
.lph { padding: 72px 40px 60px; background: linear-gradient(160deg, var(--cream) 55%, rgba(232,147,138,.07) 100%); border-bottom: 1px solid var(--border); }
.lphe { max-width: 680px; }
.lpey { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.lpey::before { content: ''; width: 24px; height: 1px; background: var(--rose); }
.lph1 { font-family: var(--serif); font-size: clamp(36px, 4vw, 58px); font-weight: 300; color: var(--ink); line-height: 1.08; letter-spacing: -.01em; margin-bottom: 20px; }
.lph1 em { color: var(--rose); font-style: italic; }
.lpl { font-size: 15px; font-weight: 300; color: var(--ink2); line-height: 1.75; max-width: 52ch; margin-bottom: 28px; }

/* ── HOW STEPS ───────────────────────────────────────── */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 44px; background: var(--border); }
.hs { background: #fff; padding: 30px 24px; }
.hn { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--rose-dim); line-height: 1; margin-bottom: 12px; }
.ht { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.hd { font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.65; }

/* ── CONDITIONS GRID ─────────────────────────────────── */
.cg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.cc { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 26px; transition: transform .25s; }
.cc:hover { transform: translateY(-3px); }
.ci { font-size: 30px; margin-bottom: 12px; }
.ct { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.cd { font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 800px; margin: 44px auto 0; }
.fi2 { border-bottom: 1px solid var(--border); }
.fq { width: 100%; text-align: left; padding: 17px 0; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 400; color: var(--ink); background: none; border: none; cursor: pointer; gap: 16px; transition: color .2s; font-family: var(--sans); }
.fq:hover { color: var(--rose); }
.fqi { font-size: 18px; color: var(--rose); flex-shrink: 0; transition: transform .3s; font-style: normal; }
.fqi.open { transform: rotate(45deg); }
.fa { display: none; padding-bottom: 16px; font-size: 13.5px; font-weight: 300; color: var(--ink2); line-height: 1.75; }
.fa.open { display: block; }

/* ── CONTACT FORM ────────────────────────────────────── */
.fw { max-width: 640px; margin: 0 auto; }
.cform { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.flbl { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); }
.finp, .fsel { width: 100%; padding: 12px 15px; background: rgba(250,248,246,.06); border: 1px solid rgba(250,248,246,.15); border-radius: 6px; color: var(--cream); font-family: var(--sans); font-size: 14px; font-weight: 300; transition: border-color .2s; outline: none; resize: vertical; }
.finp::placeholder { color: rgba(250,248,246,.3); }
.finp:focus, .fsel:focus { border-color: var(--rose); }
.fsel { cursor: pointer; appearance: none; }
.fsel option { background: #3D2E28; }
.fsub { background: var(--rose); color: #fff; padding: 14px; border-radius: 6px; border: none; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s; width: 100%; margin-top: 4px; }
.fsub:hover { background: var(--rose2); transform: translateY(-2px); }
.walt { margin-top: 12px; text-align: center; font-size: 13px; color: rgba(250,248,246,.45); }
.walt a { color: var(--rose); font-weight: 500; }
.istrip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(250,248,246,.1); border-radius: var(--r); margin-top: 36px; overflow: hidden; }
.ii { padding: 16px; text-align: center; border-right: 1px solid rgba(250,248,246,.08); }
.ii:last-child { border-right: none; }
.iico { font-size: 18px; margin-bottom: 5px; }
.ilbl { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); margin-bottom: 3px; }
.ival { font-size: 12.5px; font-weight: 300; color: rgba(250,248,246,.75); }

/* ── CREDENTIALS ─────────────────────────────────────── */
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; background: var(--border); }
.cred-box { background: #fff; padding: 18px 20px; }
.cred-lbl { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); margin-bottom: 5px; }
.cred-txt { font-size: 13.5px; font-weight: 300; color: var(--ink2); line-height: 1.55; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--ink); }
.fi { max-width: 1120px; margin: 0 auto; padding: 52px 40px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
.flogo { height: 50px; width: auto; object-fit: contain; opacity: .8; filter: brightness(0) invert(1); margin-bottom: 12px; }
.fdesc { font-size: 13px; font-weight: 300; color: rgba(250,248,246,.5); line-height: 1.7; max-width: 30ch; }
.fct { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.fl { display: block; font-size: 13px; font-weight: 300; color: rgba(250,248,246,.6); margin-bottom: 8px; transition: color .2s; }
.fl:hover { color: var(--cream); }
.fc { font-size: 13px; font-weight: 300; color: rgba(250,248,246,.55); margin-bottom: 8px; padding-left: 12px; position: relative; }
.fc::before { content: '·'; position: absolute; left: 0; color: var(--rose); }
.fb { border-top: 1px solid rgba(250,248,246,.06); padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.fb p { font-size: 11px; color: rgba(250,248,246,.25); font-weight: 300; }
.fb a { font-size: 11px; color: rgba(250,248,246,.3); }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wf { position: fixed; bottom: 22px; right: 18px; z-index: 200; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; text-decoration: none; }
.wf:hover { transform: scale(1.08); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.rv.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 40px 20px 36px; }
  .hero::before { display: none; }
  .him { order: -1; }
  .hph { max-height: 300px; }
  .hbadge { display: none; }
  .hs-row { flex-wrap: wrap; gap: 14px; }
  .hsd { display: none; }
  .hst { flex: 0 0 auto; padding: 0; }
  .pvg { grid-template-columns: 1fr; }
  .tg { grid-template-columns: 1fr 1fr; }
  .dra-grid { grid-template-columns: 1fr; }
  .dph { max-height: 300px; }
  .how { grid-template-columns: 1fr 1fr; }
  .cg { grid-template-columns: 1fr 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .fi { grid-template-columns: 1fr; gap: 32px; }
  .istrip { grid-template-columns: 1fr; }
  .ii { border-right: none; border-bottom: 1px solid rgba(250,248,246,.08); }
  .ii:last-child { border-bottom: none; }
  .gw-wb { display: none; }
  .gw-card { min-width: calc(50vw - 60px); max-width: calc(50vw - 60px); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 640px
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .sec { padding: 52px 16px; }
  .ps { padding: 10px 16px; gap: 12px; }
  .hero { padding: 28px 16px; }
  .hh1 { font-size: 34px; }
  .hl { font-size: 14px; }
  .acts { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-outline-light { width: 100%; text-align: center; }
  .tg { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .cg { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .fi { padding: 36px 16px; }
  .fb { padding: 12px 16px; flex-direction: column; text-align: center; }
  .gw-hd { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gw-sc { margin-left: 0; }
  .gw-car { padding: 0 42px; }
  .gw-card { min-width: calc(100vw - 84px); max-width: calc(100vw - 84px); }
  .lph { padding: 48px 16px 40px; }
  .sh2 { font-size: 26px; }
  .dph { max-height: 260px; }
}

/* ── INFO CARDS (panel derecho hero / LP) ────────────────
   Tarjetas blancas del primer mockup, reincorporadas
─────────────────────────────────────────────────────── */

/* Hero home — columna derecha con tarjetas */
.hero-right {
  display: flex; flex-direction: column; gap: 16px;
  position: relative; z-index: 1;
}
.hero-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 24px;
  box-shadow: var(--shadow);
}
.hero-card-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.hero-card-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rose-dim); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.hero-card-label {
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rose);
}
.hero-card-title {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--ink); margin-bottom: 6px;
}
.hero-card-desc {
  font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.6;
}
.hero-card-highlight {
  background: var(--rose-dim); border: 1px solid var(--rose-line);
  border-radius: var(--r); padding: 18px 22px; text-align: center;
}
.hero-card-highlight p {
  font-family: var(--serif); font-size: 15px; color: var(--rose2);
  font-style: italic; line-height: 1.5;
}
.hero-card-highlight cite {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sand); display: block; margin-top: 8px;
}

/* LP hero — columna derecha con info cards */
.lph-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: flex-start; max-width: 1120px; margin: 0 auto;
}
.lph-right { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.lp-info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 22px;
}
.lp-info-card-label {
  font-size: 9px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 8px;
}
.lp-info-card-text {
  font-size: 13.5px; font-weight: 300; color: var(--ink2); line-height: 1.65;
}
.lp-info-card-text strong { color: var(--ink); font-weight: 600; }
.lp-cred-strip {
  background: var(--rose-dim); border: 1px solid var(--rose-line);
  border-radius: var(--r); padding: 16px 20px;
}
.lp-cred-strip p {
  font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.5;
}
.lp-cred-strip strong { color: var(--rose2); font-weight: 600; }

/* Responsive: ocultar columna derecha en mobile */
@media (max-width: 900px) {
  .hero-right { display: none; }
  .lph-inner  { grid-template-columns: 1fr; }
  .lph-right  { display: none; }
}
