

/* ===== Despierta Sanamente — hoja de estilo (fiel al diseño original) ===== */

:root {
  --cream: #fbf9f6;
  --forest: #1d2b20;
  --gold: #c39b62;
  --gold-text: #82643c; /* darker gold for text: meets 4.5:1 contrast on cream, unlike --gold */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--cream); overflow-x: hidden; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Textura sutil de hoja/fronda (solo página de Kambo): un guiño a la selva,
   sin competir con el contenido. Reutiliza la misma silueta de hoja que
   ya aparece en los íconos del sitio, a muy baja opacidad. */
body.pagina-kambo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%231d2b20' stroke-width='1.5' opacity='0.05'%3E%3Cg transform='translate(14,14) scale(1.6)'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/g%3E%3Cg transform='translate(100,90) scale(1.3) rotate(35)'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

h1, h2, h3, h4 { font-family: "Lora", Georgia, serif; font-weight: 500; line-height: 1.2; }
.serif { font-family: "Lora", Georgia, serif; }

a { color: var(--gold-text); text-decoration: none; }
img { max-width: 100%; display: block; }

.contenedor { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Encabezado de sección ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.eyebrow {
  display: block; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-text); font-weight: 700; margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(28px, 4.5vw, 48px); color: var(--forest); letter-spacing: -0.01em; }
.sec-head.claro h2 { color: var(--cream); }
.rule { width: 48px; height: 1px; background: rgba(195,155,98,0.4); margin: 24px auto 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px; border-radius: 999px;
  font-weight: 500; letter-spacing: 0.02em; text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s; cursor: pointer; border: none;
}
.btn-forest { background: var(--forest); color: var(--cream); box-shadow: 0 4px 14px rgba(29,43,32,0.16); }
.btn-forest:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29,43,32,0.24); }
.btn-gold { background: var(--gold); color: var(--forest); box-shadow: 0 4px 14px rgba(195,155,98,0.28); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(195,155,98,0.4); }
.btn svg { width: 16px; height: 16px; }
.btn-pill-sm { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; padding: 12px 22px; }
.btn-outline {
  border: 1px solid rgba(29,43,32,0.12); color: var(--forest); background: transparent;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; padding: 12px 20px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.claro { border-color: rgba(251,249,246,0.2); color: var(--cream); }
.btn-outline.claro:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Navegación ---------- */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; padding: 22px 0; transition: background 0.3s, padding 0.3s, box-shadow 0.3s; }
.nav.scrolled { background: rgba(251,249,246,0.92); backdrop-filter: blur(10px); padding: 14px 0; box-shadow: 0 1px 0 rgba(29,43,32,0.06); }
.nav .contenedor { display: flex; align-items: center; justify-content: space-between; }
.marca { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.marca .glifo { width: 40px; height: 40px; border-radius: 999px; background: rgba(29,43,32,0.05); border: 1px solid rgba(195,155,98,0.3); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s; }
.marca:hover .glifo { border-color: var(--gold); }
.marca .glifo svg { width: 22px; height: 22px; color: var(--gold); }
.marca .txt { font-family: "Lora", serif; font-size: 19px; color: var(--forest); font-weight: 500; letter-spacing: 0.01em; }
.marca .txt small { display: block; font-family: "Inter", sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(29,43,32,0.55); margin-top: -3px; font-weight: 500; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 16px; color: rgba(29,43,32,0.8); text-decoration: none; font-weight: 500; position: relative; padding: 2px 0; }
.nav-links a::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--forest); padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-mobile { display: none; }
.nav:not(.scrolled) .marca .txt { color: var(--cream); }
.nav:not(.scrolled) .marca .txt small { color: rgba(251,249,246,0.75); }
.nav:not(.scrolled) .nav-links a { color: rgba(251,249,246,0.92); }
.nav:not(.scrolled) .nav-toggle { color: var(--cream); }

/* ---------- Héroe ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 100px 24px 60px; background: var(--cream); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); filter: contrast(1.12) saturate(1.25) brightness(1.04); }
.hero-bg .grad1 { position: absolute; inset: 0; background: linear-gradient(to top, var(--cream), rgba(251,249,246,0.55) 45%, rgba(251,249,246,0.2)); }
.hero-bg .grad2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(251,249,246,0.6), transparent 55%, rgba(251,249,246,0.05)); }
.hero-glow { position: absolute; top: 33%; left: 50%; transform: translate(-50%,-50%); width: 420px; height: 420px; border-radius: 50%; background: rgba(195,155,98,0.15); filter: blur(80px); pointer-events: none; z-index: 1; animation: pulseGlow 8s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: rgba(29,43,32,0.9); background: rgba(29,43,32,0.05); border: 1px solid rgba(195,155,98,0.2); padding: 8px 18px; border-radius: 999px; margin-bottom: 26px; backdrop-filter: blur(4px); }
.hero-eyebrow svg { width: 16px; height: 16px; color: var(--gold); }
.hero h1 { font-size: clamp(38px, 7vw, 68px); color: var(--forest); letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 24px; }
.hero .subhead { font-family: "Lora", serif; font-style: italic; font-weight: 300; font-size: clamp(19px, 3vw, 26px); color: rgba(29,43,32,0.8); letter-spacing: 0.01em; margin-bottom: 44px; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.6; text-decoration: none; transition: opacity 0.3s; animation: floaty 2s ease-in-out infinite; }
.hero-scroll:hover { opacity: 1; }
.hero-scroll span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--forest); font-weight: 700; }
.hero-scroll .line { width: 1px; height: 40px; background: rgba(29,43,32,0.4); }
@keyframes floaty { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.hero-acento { position: absolute; bottom: 28px; left: 28px; z-index: 2; width: 90px; opacity: 0.55; pointer-events: none; }
.hero-acento img { width: 100%; height: auto; display: block; }
@media (max-width: 640px) { .hero-acento { width: 60px; bottom: 18px; left: 18px; opacity: 0.4; } }

/* ---------- La bifurcación (fork) ---------- */
.fork { position: relative; padding: 104px 0; overflow: hidden; background: var(--forest); }
.fork-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); z-index: 0; }
.fork-veil { position: absolute; inset: 0; background: linear-gradient(to top, var(--forest), rgba(29,43,32,0.88), var(--forest)); z-index: 1; }
.fork-inner { position: relative; z-index: 2; }
.fork-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 940px; margin: 0 auto; }
.fork-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; background: rgba(251,249,246,0.97); border: 1px solid rgba(251,249,246,0.14); border-radius: 32px; padding: 46px; text-decoration: none; color: var(--forest); overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,0.2); transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s; }
.fork-card:hover { transform: translateY(-6px); border-color: rgba(195,155,98,0.6); box-shadow: 0 20px 44px rgba(0,0,0,0.28); }
.fork-glow { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(195,155,98,0.1); pointer-events: none; transition: background 0.3s; }
.fork-glow.verde { background: rgba(29,43,32,0.06); }
.fork-card:hover .fork-glow { background: rgba(195,155,98,0.18); }
.fork-top { position: relative; z-index: 1; }
.fork-ico { width: 58px; height: 58px; border-radius: 18px; background: rgba(29,43,32,0.05); border: 1px solid rgba(29,43,32,0.06); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--gold); transition: border-color 0.3s; }
.fork-ico.verde { color: var(--forest); }
.fork-card:hover .fork-ico { border-color: rgba(195,155,98,0.5); }
.fork-ico svg { width: 27px; height: 27px; }
.fork-card h3 { font-size: 30px; margin-bottom: 16px; color: var(--forest); transition: color 0.3s; }
.fork-card:hover h3 { color: var(--gold); }
.fork-card p { font-size: 18px; color: rgba(29,43,32,0.68); line-height: 1.65; max-width: 340px; }
.fork-act { position: relative; z-index: 1; margin-top: 34px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--forest); transition: color 0.3s; }
.fork-act svg { width: 16px; height: 16px; transition: transform 0.3s; }
.fork-card:hover .fork-act { color: var(--gold); }
.fork-card:hover .fork-act svg { transform: translateX(4px); }

/* ---------- Primera sesión (premisa) ---------- */
.primera { position: relative; padding: 84px 0; background: var(--cream); overflow: hidden; }
.ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; }
.ring.r1 { width: 600px; height: 600px; border: 1px solid rgba(29,43,32,0.03); }
.ring.r2 { width: 400px; height: 400px; border: 1px solid rgba(195,155,98,0.05); }
.premise { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; background: rgba(29,43,32,0.05); border: 1px solid rgba(29,43,32,0.1); border-radius: 28px; padding: 52px 48px; box-shadow: 0 2px 14px rgba(29,43,32,0.04); }
.premise .corner { position: absolute; top: 0; right: 0; width: 90px; height: 90px; border-top: 1px solid rgba(195,155,98,0.2); border-right: 1px solid rgba(195,155,98,0.2); border-top-right-radius: 28px; }
.premise-title { font-family: "Lora", serif; font-style: italic; font-weight: 600; font-size: clamp(24px, 3.5vw, 32px); color: var(--gold-text); text-align: center; margin-bottom: 32px; }
.premise p { font-size: 18px; color: rgba(29,43,32,0.85); margin-bottom: 18px; }
.premise p:last-child { margin-bottom: 0; }
.premise strong { font-weight: 600; color: var(--forest); }
.primera .cierre { text-align: center; font-family: "Lora", serif; font-style: italic; font-size: 18px; color: rgba(29,43,32,0.7); max-width: 620px; margin: 40px auto 0; }

/* ---------- Servicios ---------- */
.servicios { position: relative; padding: 90px 0; background: var(--cream); overflow: hidden; }
.blur-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.blur-glow.a { top: 20%; left: 5%; background: rgba(29,43,32,0.04); }
.blur-glow.b { bottom: 20%; right: 5%; background: rgba(195,155,98,0.05); }
.serv-cards { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.serv-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; border-radius: 32px; padding: 44px; overflow: hidden; border: 1px solid rgba(29,43,32,0.15); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.serv-card:hover { transform: translateY(-4px); border-color: rgba(195,155,98,0.4); }
.serv-card.claro { background: var(--cream); box-shadow: 0 2px 14px rgba(29,43,32,0.05); }
.serv-card.oscuro { background: var(--forest); box-shadow: 0 10px 30px rgba(29,43,32,0.25); min-height: 560px; }
.serv-card .card-bg { position: absolute; inset: 0; z-index: 0; }
.serv-card .card-bg img { width: 100%; height: 100%; object-fit: cover; }
.serv-card .card-bg .veil { position: absolute; inset: 0; background: linear-gradient(to top, var(--forest), rgba(29,43,32,0.9) 45%, rgba(29,43,32,0.4)); }
.serv-card .card-content { position: relative; z-index: 1; }
.serv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.serv-ico { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; position: relative; }
.serv-ico.claro { background: rgba(29,43,32,0.05); border: 1px solid rgba(29,43,32,0.1); }
.serv-ico.oscuro { background: rgba(251,249,246,0.1); border: 1px solid rgba(251,249,246,0.1); backdrop-filter: blur(4px); }
.serv-ico svg { width: 24px; height: 24px; color: var(--gold); }
.serv-tag { font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.serv-tag.claro { color: rgba(29,43,32,0.5); background: rgba(29,43,32,0.05); }
.serv-tag.oscuro { color: rgba(251,249,246,0.75); background: rgba(251,249,246,0.1); backdrop-filter: blur(4px); }
.serv-card h3 { font-size: 30px; margin-bottom: 14px; transition: color 0.3s; }
.serv-card.claro h3 { color: var(--forest); }
.serv-card.oscuro h3 { color: var(--cream); }
.serv-card:hover h3 { color: var(--gold); }
.serv-desc { font-size: 17px; line-height: 1.7; margin-bottom: 28px; }
.serv-card.claro .serv-desc { color: rgba(29,43,32,0.75); }
.serv-card.oscuro .serv-desc { color: rgba(251,249,246,0.9); }
.serv-feats { list-style: none; margin-bottom: 34px; }
.serv-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; margin-bottom: 14px; }
.serv-card.claro .serv-feats li { color: rgba(29,43,32,0.9); }
.serv-card.oscuro .serv-feats li { color: rgba(251,249,246,0.95); }
.serv-feats .check { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; background: rgba(195,155,98,0.12); border: 1px solid rgba(195,155,98,0.35); }
.serv-card.oscuro .serv-feats .check { background: rgba(195,155,98,0.2); border-color: rgba(195,155,98,0.4); }
.serv-feats .check svg { width: 11px; height: 11px; color: var(--gold); }
.serv-quote { padding-top: 24px; margin-bottom: 30px; position: relative; }
.serv-card.claro .serv-quote { border-top: 1px solid rgba(29,43,32,0.1); }
.serv-card.oscuro .serv-quote { border-top: 1px solid rgba(251,249,246,0.1); }
.serv-quote p.q { font-family: "Lora", serif; font-style: italic; font-size: 16px; line-height: 1.6; margin-bottom: 6px; }
.serv-card.claro .serv-quote p.q { color: rgba(29,43,32,0.8); }
.serv-card.oscuro .serv-quote p.q { color: rgba(251,249,246,0.9); }
.serv-quote p.a { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.serv-card.claro .serv-quote p.a { color: rgba(29,43,32,0.6); }
.serv-card.oscuro .serv-quote p.a { color: rgba(251,249,246,0.6); }
.serv-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Conoce a Alexis ---------- */
.alexis { position: relative; padding: 96px 0; background: var(--cream); overflow: hidden; }
.alexis-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: center; max-width: 940px; margin: 0 auto; }
.alexis-card { position: relative; width: 100%; max-width: 300px; aspect-ratio: 3/4; margin: 0 auto; border-radius: 28px; overflow: hidden; border: 1px solid rgba(29,43,32,0.15); box-shadow: 0 10px 30px rgba(29,43,32,0.15); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.alexis-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.alexis-card .veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,43,32,0.9), rgba(29,43,32,0.4) 55%, rgba(29,43,32,0.1)); }
.alexis-card .frame { position: absolute; inset: 16px; border: 1px solid rgba(195,155,98,0.3); border-radius: 20px; z-index: 1; }
.alexis-card .row { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; }
.alexis-card .row svg { width: 22px; height: 22px; color: var(--gold); }
.alexis-card .cert { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,249,246,0.8); font-weight: 700; }
.alexis-card .center { position: relative; z-index: 2; text-align: center; }
.alexis-card .center .badge { width: 54px; height: 54px; border-radius: 50%; background: rgba(251,249,246,0.1); border: 1px solid rgba(195,155,98,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; backdrop-filter: blur(4px); }
.alexis-card .center .badge svg { width: 22px; height: 22px; color: var(--gold); }
.alexis-card .center h4 { font-size: 26px; color: var(--cream); }
.alexis-card .center .sub { font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 600; margin-top: 4px; }
.alexis-card .loc { position: relative; z-index: 2; text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--cream); font-weight: 600; }
.alexis-bio h3 { font-size: clamp(20px, 3vw, 26px); color: var(--forest); margin-bottom: 18px; }
.alexis-bio p { font-size: 17px; color: rgba(29,43,32,0.8); margin-bottom: 16px; line-height: 1.7; }
.alexis-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.alexis-tag { border-left: 2px solid var(--gold); padding-left: 16px; }
.alexis-tag .k { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(29,43,32,0.5); font-weight: 700; }
.alexis-tag .v { font-size: 15px; color: rgba(29,43,32,0.9); font-weight: 500; }

/* ---------- Donación ---------- */
.donacion { position: relative; padding: 90px 0; background: var(--cream); }
.don-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; max-width: 1000px; margin: 0 auto; }
.don-intro h2 { font-size: clamp(28px, 4vw, 42px); color: var(--forest); margin-bottom: 20px; }
.don-intro .eyebrow { text-align: left; }
.don-intro p { font-size: 18px; color: rgba(29,43,32,0.8); line-height: 1.75; }
.don-card { background: var(--cream); border: 1px solid rgba(29,43,32,0.15); border-radius: 28px; padding: 34px; box-shadow: 0 2px 14px rgba(29,43,32,0.04); }
.don-card h3 { font-size: 20px; color: var(--forest); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.don-card h3 svg { width: 20px; height: 20px; color: var(--gold); }
.don-card .desc { font-size: 14px; color: rgba(29,43,32,0.6); margin-bottom: 24px; }
.tier { padding: 16px; border-radius: 16px; background: rgba(29,43,32,0.05); border: 1px solid rgba(29,43,32,0.1); margin-bottom: 14px; transition: border-color 0.3s; }
.tier:hover { border-color: rgba(195,155,98,0.35); }
.tier .top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.tier .name { font-family: "Lora", serif; font-size: 16px; font-weight: 600; color: var(--forest); }
.tier .amt { font-family: ui-monospace, monospace; font-size: 16px; font-weight: 700; color: var(--gold-text); }
.tier .txt { font-size: 14px; color: rgba(29,43,32,0.7); line-height: 1.6; }

/* ---------- Contacto ---------- */
.contacto { position: relative; padding: 96px 0; background: var(--forest); color: var(--cream); }
.contacto .sec-head h2 { color: var(--cream); }
.contacto-body { text-align: center; max-width: 560px; margin: 0 auto; }
.contacto-body .lead { font-size: 18px; color: rgba(251,249,246,0.85); margin-bottom: 28px; }
.contacto-body .loc { font-size: 16px; color: rgba(251,249,246,0.65); margin-top: 24px; }

/* ---------- Pie ---------- */
.pie { background: var(--forest); color: rgba(251,249,246,0.7); padding: 60px 0 32px; border-top: 1px solid rgba(251,249,246,0.1); }
.pie .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.pie .marca-pie { font-family: "Lora", serif; font-size: 18px; color: var(--cream); font-weight: 600; margin-bottom: 12px; }
.pie p { font-size: 16px; max-width: 360px; color: rgba(251,249,246,0.65); }
.pie h5 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); margin-bottom: 16px; }
.pie .flinks a { display: block; font-size: 16px; color: rgba(251,249,246,0.75); margin-bottom: 9px; text-decoration: none; }
.pie .flinks a:hover { color: var(--gold); }
.pie .aviso { border-top: 1px solid rgba(251,249,246,0.12); padding-top: 24px; font-size: 14px; color: rgba(251,249,246,0.45); max-width: 820px; line-height: 1.7; }
.pie .creditos { border-top: 1px solid rgba(251,249,246,0.12); margin-top: 24px; padding-top: 24px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(251,249,246,0.4); }

/* ---------- Recursos (índice y artículos educativos) ---------- */
.recursos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1120px; margin: 0 auto; }
.recursos-grupo { max-width: 1120px; margin: 0 auto 48px; }
.recursos-grupo:last-child { margin-bottom: 0; }
.recursos-grupo-titulo { font-family: "Lora", serif; font-size: 26px; color: var(--forest); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.recursos-grupo-titulo::after { content: ""; flex: 1; height: 1px; background: rgba(29,43,32,0.12); }
.recurso-card { display: flex; flex-direction: column; border: 1px solid rgba(29,43,32,0.12); border-radius: 22px; padding: 32px; background: rgba(255,255,255,0.55); text-decoration: none; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.recurso-card:hover { transform: translateY(-4px); border-color: rgba(195,155,98,0.4); box-shadow: 0 10px 24px rgba(29,43,32,0.08); }
.recurso-card .r-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-text); font-weight: 700; margin-bottom: 10px; }
.recurso-card h3 { font-size: 21px; color: var(--forest); margin-bottom: 10px; line-height: 1.3; }
.recurso-card p { font-size: 15px; color: rgba(29,43,32,0.72); line-height: 1.65; flex-grow: 1; }
.recurso-card .r-link { margin-top: 18px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--forest); display: flex; align-items: center; gap: 8px; }
.recurso-card:hover .r-link { color: var(--gold-text); }
.recurso-card.medicina-ancestral { border-color: rgba(29,43,32,0.22); border-left: 3px solid var(--forest); background: rgba(29,43,32,0.025); }
.recurso-card.medicina-ancestral .r-tag { color: var(--forest); }
.recurso-card.medicina-ancestral:hover { border-color: var(--forest); box-shadow: 0 10px 24px rgba(29,43,32,0.14); }
@media (max-width: 860px) { .recursos-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .recursos-grid { grid-template-columns: 1fr; } }
.fuentes { max-width: 760px; margin: 40px auto 0; border-top: 1px solid rgba(29,43,32,0.1); padding-top: 20px; }
.fuentes h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(29,43,32,0.5); font-weight: 700; margin-bottom: 10px; }
.fuentes ul { list-style: none; }
.fuentes ul li { font-size: 14px; color: rgba(29,43,32,0.55); margin-bottom: 6px; }
.fuentes ul li a { color: rgba(29,43,32,0.6); text-decoration: underline; }
.fuentes ul li a:hover { color: var(--gold-text); }
.ilustracion { max-width: 720px; margin: 0 auto 8px; }
.ilustracion img { width: 100%; height: auto; display: block; border-radius: 20px; border: 1px solid rgba(29,43,32,0.1); }
.ilustracion-mini { max-width: 480px; margin: 24px auto 0; }
.ilustracion-mini img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid rgba(29,43,32,0.1); }

/* ---------- Página de servicio ---------- */
.svc-hero { background: var(--forest); color: var(--cream); padding: 140px 0 68px; position: relative; overflow: hidden; }
.svc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.svc-hero-bg .veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(29,43,32,0.5), rgba(29,43,32,0.88) 65%, var(--forest) 100%); }
.svc-hero .glow { position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: rgba(195,155,98,0.1); filter: blur(120px); z-index: 1; }
.svc-hero .back { position: relative; z-index: 1; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: rgba(251,249,246,0.6); text-decoration: none; }
.svc-hero .back:hover { color: var(--gold); }
.svc-hero .tag { position: relative; z-index: 1; display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; margin: 26px 0 10px; }
.svc-hero h1 { position: relative; z-index: 1; font-size: clamp(32px, 5vw, 50px); color: var(--cream); margin-bottom: 16px; }
.svc-hero p { position: relative; z-index: 1; color: rgba(251,249,246,0.82); font-size: 18px; max-width: 640px; }
.hero-facilitador { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.hero-facilitador img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(195,155,98,0.5); box-shadow: 0 4px 14px rgba(29,43,32,0.25); flex-shrink: 0; }
.hero-facilitador span { font-size: 15px; color: rgba(251,249,246,0.85); }

/* ---------- Variante suave del hero (Liberación Emocional: gentil, no intensa) ---------- */
.svc-hero.suave { background: linear-gradient(160deg, var(--cream) 0%, rgba(195,155,98,0.16) 100%); }
.svc-hero.suave .glow { background: rgba(195,155,98,0.22); }
.svc-hero.suave .back { color: rgba(29,43,32,0.55); }
.svc-hero.suave .back:hover { color: var(--gold-text); }
.svc-hero.suave .tag { color: var(--gold-text); }
.svc-hero.suave h1 { color: var(--forest); }
.svc-hero.suave p { color: rgba(29,43,32,0.75); }
.svc-hero.suave .hero-facilitador span { color: rgba(29,43,32,0.8); }
.svc-hero.suave .hero-facilitador span strong { color: var(--forest); }
.svc-hero-watermark { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.svc-hero-watermark img { position: absolute; right: -4%; top: 50%; transform: translateY(-50%); width: 52%; max-width: 620px; height: auto; opacity: 0.14; }
@media (max-width: 760px) {
  .svc-hero-watermark img { width: 78%; opacity: 0.1; }
}
.hero-facilitador span strong { color: var(--cream); font-weight: 600; }
.svc-section { padding: 72px 0; }
.pasos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 0 auto; }
.paso { border: 1px solid rgba(29,43,32,0.08); border-radius: 20px; padding: 28px; background: var(--cream); }
.paso .num { font-family: "Lora", serif; font-size: 32px; font-weight: 600; color: rgba(195,155,98,0.5); display: block; margin-bottom: 8px; }
.paso h3 { font-size: 18px; color: var(--forest); margin-bottom: 8px; }
.paso p { font-size: 16px; color: rgba(29,43,32,0.72); }
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid rgba(29,43,32,0.08); border-radius: 16px; padding: 18px 24px; margin-bottom: 12px; background: rgba(255,255,255,0.6); }
.faq summary { font-weight: 600; font-size: 18px; cursor: pointer; list-style: none; color: var(--forest); display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; font-size: 17px; color: rgba(29,43,32,0.78); line-height: 1.7; }
.svc-cost { max-width: 620px; margin: 0 auto; text-align: center; background: rgba(29,43,32,0.05); border: 1px solid rgba(29,43,32,0.1); border-radius: 28px; padding: 40px; }
.svc-cost h3 { font-size: 22px; color: var(--forest); margin-bottom: 10px; }
.svc-cost p { font-size: 18px; color: rgba(29,43,32,0.75); margin-bottom: 22px; }
.svc-cost.dorado { background: rgba(195,155,98,0.1); border-color: rgba(195,155,98,0.35); }

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .serv-cards, .alexis-grid, .don-grid { grid-template-columns: 1fr; }
  .serv-card.oscuro { min-height: auto; }
  .alexis-card { max-width: 280px; }
  .pie .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-mobile { display: block; position: absolute; top: 100%; left: 0; width: 100%; background: var(--cream); border-top: 1px solid rgba(29,43,32,0.06); box-shadow: 0 10px 20px rgba(29,43,32,0.08); padding: 20px 24px; }
  .nav.open .nav-mobile a { display: block; padding: 12px 0; font-size: 18px; color: var(--forest); text-decoration: none; border-bottom: 1px solid rgba(29,43,32,0.05); font-weight: 500; }
  .fork-cards, .pasos { grid-template-columns: 1fr; }
  .pie .cols { grid-template-columns: 1fr; }
  .alexis-tags { grid-template-columns: 1fr; }
  .premise { padding: 36px 24px; }
}

/* Safety: never let an icon render unbounded */
svg { max-width: 100%; height: auto; }
.btn svg, .fork-act svg, .serv-feats .check svg { height: 1em; }


/* ---------- Botón fijo móvil (sticky CTA) ---------- */
/* Filosofía de sitio educativo: NO presiona. Empieza oculto y solo
   aparece cuando el visitante ya leyó buena parte de la página
   (clase .revealed via JS, tras ~65% de scroll). Usa la paleta del
   sitio (verde bosque / dorado), no el verde de WhatsApp. */
.sticky-cta { display: none; }
@media (max-width: 640px) {
  .sticky-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
    background: var(--forest); color: var(--cream); text-decoration: none;
    padding: 14px 20px; border-radius: 999px; font-weight: 600; font-size: 16px;
    border: 1px solid rgba(195,155,98,0.4);
    box-shadow: 0 8px 24px rgba(29,43,32,0.28);
    opacity: 0; transform: translateY(120%); pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .sticky-cta.revealed { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .sticky-cta svg { width: 18px; height: 18px; color: var(--gold); }
}


/* ---------- Funnel (páginas informativas) ---------- */
.funnel-step { max-width: 780px; margin: 0 auto 20px; border: 1px solid rgba(29,43,32,0.1); border-left: 3px solid var(--gold); border-radius: 0 18px 18px 0; padding: 28px 30px; background: rgba(255,255,255,0.5); }
.funnel-step .kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.funnel-step .kicker .n { font-family: "Lora", serif; font-size: 22px; font-weight: 600; color: var(--gold-text); }
.funnel-step .kicker h3 { font-size: 20px; color: var(--forest); }
.funnel-step p { font-size: 17px; color: rgba(29,43,32,0.82); margin-bottom: 12px; line-height: 1.7; }
.funnel-step p:last-child { margin-bottom: 0; }
.funnel-step ul { list-style: none; margin: 6px 0 12px; }
.funnel-step ul li { position: relative; padding-left: 22px; margin-bottom: 8px; font-size: 17px; color: rgba(29,43,32,0.82); }
.funnel-step ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.funnel-note { max-width: 780px; margin: 30px auto 0; font-size: 15px; color: rgba(29,43,32,0.55); font-style: italic; text-align: center; }
/* Testimonios */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 900px; margin: 0 auto; }
.testi-grid.tres-col { grid-template-columns: 1fr 1fr 1fr; max-width: 1040px; }
.testi { background: rgba(255,255,255,0.6); border: 1px solid rgba(29,43,32,0.1); border-radius: 22px; padding: 30px; }
.testi .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi p.body { font-family: "Lora", serif; font-style: italic; font-size: 18px; color: rgba(29,43,32,0.85); line-height: 1.7; margin-bottom: 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av { width: 42px; height: 42px; border-radius: 50%; background: rgba(195,155,98,0.15); border: 1px solid rgba(195,155,98,0.35); display: flex; align-items: center; justify-content: center; font-family: "Lora", serif; font-weight: 600; color: var(--gold-text); }
.testi .who .meta strong { display: block; font-size: 16px; color: var(--forest); font-family: "Inter", sans-serif; }
.testi .who .meta span { font-size: 14px; color: rgba(29,43,32,0.55); }
.placeholder-tag { display:inline-block; font-size: 13px; text-transform:uppercase; letter-spacing:0.1em; color:#b45; background:rgba(180,68,85,0.08); border:1px dashed rgba(180,68,85,0.4); border-radius:6px; padding:3px 8px; margin-bottom:10px; }
/* Foto del espacio (placeholder) */
.space-photo { max-width: 900px; margin: 0 auto; border-radius: 24px; overflow: hidden; border: 1px solid rgba(29,43,32,0.1); }
.space-photo img { width: 100%; height: 420px; object-fit: cover; display: block; }
.space-slot { max-width: 900px; margin: 0 auto; height: 320px; border-radius: 24px; border: 2px dashed rgba(29,43,32,0.2); display:flex; align-items:center; justify-content:center; text-align:center; color: rgba(29,43,32,0.45); font-size: 16px; padding: 20px; background: rgba(29,43,32,0.02); }
@media (max-width: 860px) { .testi-grid.tres-col { grid-template-columns: 1fr 1fr; max-width: 900px; } }
@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } .testi-grid.tres-col { grid-template-columns: 1fr; } }


/* ---------- Funnel: summary card ---------- */
.svc-summary { position: relative; max-width: 1120px; margin: 0 auto 34px; background: rgba(29,43,32,0.03); border: 1px solid rgba(29,43,32,0.1); border-radius: 28px; padding: 44px; display: grid; grid-template-columns: 1.9fr 1fr; gap: 36px; align-items: stretch; }
.svc-summary .s-tag { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); font-weight: 700; margin-bottom: 10px; display: block; }
.svc-summary h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--forest); margin-bottom: 18px; }
.svc-summary .s-desc { font-size: 17px; color: rgba(29,43,32,0.8); line-height: 1.75; }
.svc-summary .s-quote { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(29,43,32,0.1); font-family: "Lora", serif; font-style: italic; font-size: 17px; color: var(--gold-text); line-height: 1.7; }
.svc-focus { background: var(--forest); border: 1px solid rgba(195,155,98,0.25); border-radius: 20px; padding: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 14px 30px rgba(29,43,32,0.16); }
.svc-focus::before { content: ""; width: 44px; height: 44px; border-radius: 999px; margin-bottom: 16px; background-color: rgba(195,155,98,0.14); border: 1px solid rgba(195,155,98,0.35); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c39b62' stroke-width='1.6'%3E%3Ccircle cx='12' cy='13' r='5'/%3E%3Cpath d='M12 8V2M12 2L9.5 4.5M12 2l2.5 2.5'/%3E%3Cpath d='M4 13H1M23 13h-3M6 7L4 5M18 7l2-2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 22px; }
.svc-focus .f-k { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,249,246,0.55); font-weight: 700; margin-bottom: 12px; }
.svc-focus h3 { font-size: 26px; color: var(--cream); margin-bottom: 10px; }
.svc-focus p { font-size: 16px; color: rgba(251,249,246,0.75); }

/* ---------- Funnel: step accordion (colapsable, de arriba hacia abajo) ---------- */
.step-accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.step-accordion details { border: 1px solid rgba(29,43,32,0.1); border-radius: 18px; background: rgba(255,255,255,0.5); overflow: hidden; transition: border-color 0.2s; }
.step-accordion details[open] { border-color: rgba(195,155,98,0.4); }
.step-accordion summary { display: flex; align-items: center; gap: 18px; padding: 18px 22px; cursor: pointer; list-style: none; }
.step-accordion summary::-webkit-details-marker { display: none; }
.step-accordion summary .st-ico { width: 52px; height: 52px; border-radius: 50%; background: rgba(29,43,32,0.05); border: 1px solid rgba(29,43,32,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.step-accordion summary .st-ico svg { width: 24px; height: 24px; color: rgba(29,43,32,0.55); transition: color 0.2s; }
.step-accordion details[open] summary .st-ico { background: rgba(195,155,98,0.9); border-color: var(--gold); }
.step-accordion details[open] summary .st-ico svg { color: var(--forest); }
.step-accordion summary .st-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.step-accordion summary .st-k { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: rgba(29,43,32,0.55); line-height: 1.4; }
.step-accordion summary .st-t { font-size: 17px; color: var(--forest); font-family: "Lora", serif; }
.step-accordion summary::after { content: "+"; color: var(--gold); font-size: 24px; line-height: 1; flex-shrink: 0; }
.step-accordion details[open] summary::after { content: "\2013"; }
.step-accordion .p-body { padding: 0 22px 24px 92px; }
.step-accordion .p-body p { font-size: 17px; color: rgba(29,43,32,0.82); line-height: 1.75; margin-bottom: 16px; }
.step-accordion .p-body ul { list-style: none; margin: 0 0 16px; }
.step-accordion .p-body ul li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: 17px; color: rgba(29,43,32,0.82); line-height: 1.65; }
.step-accordion .p-body ul li::before { content: ""; position: absolute; left: 6px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.step-accordion .p-body strong { color: var(--forest); font-weight: 600; }
.step-accordion .p-callout { background: rgba(29,43,32,0.05); border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; padding: 20px 24px; margin: 22px 0; font-size: 17px; color: rgba(29,43,32,0.8); line-height: 1.7; }
.p-photo { max-width: 220px; margin: 0 auto 22px; }
.p-photo img { width: 100%; height: auto; display: block; border-radius: 18px; border: 1px solid rgba(29,43,32,0.12); box-shadow: 0 8px 20px rgba(29,43,32,0.12); }
.p-photo figcaption { text-align: center; font-size: 13px; color: rgba(29,43,32,0.55); margin-top: 8px; font-style: italic; }

/* ---------- Video real (viaje de Alexis a Perú) ---------- */
.p-video { max-width: 520px; margin: 0 auto; }
.p-video video { width: 100%; height: auto; display: block; border-radius: 18px; border: 1px solid rgba(29,43,32,0.12); box-shadow: 0 8px 20px rgba(29,43,32,0.12); background: #000; }
.p-video figcaption { text-align: center; font-size: 14px; color: rgba(29,43,32,0.6); margin-top: 12px; line-height: 1.6; }
@media (max-width: 640px) {
  /* En pantallas angostas, el texto no debe quedar indentado bajo el ícono: se usa todo el ancho */
  .step-accordion .p-body { padding: 0 18px 20px; }
}

/* ---------- Mapa (contacto) ---------- */
.map-box { display: block; position: relative; border: 1px solid rgba(29,43,32,0.15); border-radius: 18px; overflow: hidden; aspect-ratio: 3/2; text-decoration: none; background: rgba(29,43,32,0.04); }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-caption { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(29,43,32,0.5); font-weight: 600; text-align: center; margin-top: 10px; }

@media (max-width: 860px) {
  .svc-summary { grid-template-columns: 1fr; }
}

  
/* ---------- Mapa estático (contacto) ---------- */
.map-static { display:block; position:relative; max-width:420px; margin:34px auto 0; aspect-ratio:16/10; border:1px solid rgba(251,249,246,0.18); border-radius:18px; overflow:hidden; background:linear-gradient(135deg, rgba(251,249,246,0.06), rgba(251,249,246,0.02)); text-decoration:none; }
.map-static .map-grid { position:absolute; inset:0; background-image: linear-gradient(rgba(251,249,246,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(251,249,246,0.08) 1px, transparent 1px); background-size: 40px 40px; }
.map-static .map-pin { position:absolute; top:42%; left:50%; transform:translate(-50%,-50%); width:36px; height:36px; }
.map-static .map-pin svg { width:36px; height:36px; color:var(--gold); }
.map-static .map-place { position:absolute; top:calc(42% + 22px); left:50%; transform:translateX(-50%); font-size: 15px; font-weight:600; color:var(--cream); font-family:"Inter",sans-serif; white-space:nowrap; }
.map-static .map-foot { position:absolute; bottom:14px; left:0; right:0; text-align:center; font-size: 13px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(251,249,246,0.5); font-weight:600; }
.map-static .map-cta { position:absolute; top:12px; right:14px; font-size: 14px; font-weight:600; color:var(--gold); font-family:"Inter",sans-serif; }
.map-static:hover { border-color:rgba(195,155,98,0.5); }

/* Safety: cap any inline icon so it can never render unbounded */
svg { max-width:100%; }
.map-static .map-pin svg, .btn svg, .fork-act svg, .serv-feats .check svg, .hero-eyebrow svg, .st-ico svg { height:auto; }


/* ---------- Puente de confianza (Alexis en la página de embudo) ---------- */
.trust-bridge { background: rgba(29,43,32,0.03); border-bottom: 1px solid rgba(29,43,32,0.06); padding: 56px 0; }
.tb-grid { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; max-width: 900px; margin: 0 auto; }
.tb-photo { width: 132px; height: 132px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(195,155,98,0.4); flex-shrink: 0; box-shadow: 0 8px 22px rgba(29,43,32,0.15); }
.tb-photo img { width: 100%; height: 100%; object-fit: cover; }
.tb-body .tb-k { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-text); font-weight: 700; margin-bottom: 10px; display: block; }
.tb-body h2 { font-size: clamp(21px, 3vw, 28px); color: var(--forest); line-height: 1.35; margin-bottom: 12px; }
.tb-body p { font-size: 17px; color: rgba(29,43,32,0.78); line-height: 1.7; margin-bottom: 6px; }
.tb-body .tb-cred { font-size: 15px; color: rgba(29,43,32,0.6); margin-top: 10px; }
.tb-body .tb-cred strong { color: var(--forest); font-weight: 600; }

/* ---------- Línea de tiempo vertical (embudo abierto) ---------- */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--gold), rgba(195,155,98,0.2)); }
.tl-item { position: relative; padding-left: 76px; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; z-index: 1; }
.tl-dot svg { width: 26px; height: 26px; color: var(--gold); }
.tl-item.key .tl-dot { background: var(--forest); border-color: var(--forest); }
.tl-item.key .tl-dot svg { color: var(--gold); }
.tl-k { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-text); font-weight: 700; margin-bottom: 6px; }
.tl-item h3 { font-size: 23px; color: var(--forest); margin-bottom: 12px; }
.tl-item p { font-size: 17px; color: rgba(29,43,32,0.82); line-height: 1.75; margin-bottom: 12px; }
.tl-item ul { list-style: none; margin: 0 0 12px; }
.tl-item ul li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 17px; color: rgba(29,43,32,0.82); line-height: 1.6; }
.tl-item ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.tl-item strong { color: var(--forest); font-weight: 600; }
.tl-reassure { background: rgba(195,155,98,0.1); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; padding: 16px 20px; font-size: 16px; color: rgba(29,43,32,0.82); line-height: 1.65; margin-top: 10px; }

/* ---------- FAQ contraindicaciones destacadas ---------- */
.faq-warn { background: rgba(29,43,32,0.04); border: 1px solid rgba(195,155,98,0.3); border-radius: 16px; padding: 24px 28px; margin-bottom: 20px; }
.faq-warn h4 { font-size: 18px; color: var(--forest); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.faq-warn h4 svg { width: 20px; height: 20px; color: var(--gold); }
.faq-warn ul { list-style: none; margin: 0; column-count: 2; column-gap: 28px; }
.faq-warn ul li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 16px; color: rgba(29,43,32,0.82); line-height: 1.5; break-inside: avoid; }
.faq-warn ul li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.faq-warn .note { margin-top: 14px; font-size: 15px; color: rgba(29,43,32,0.65); line-height: 1.6; }

/* ---------- Deeper dive (filosofía opcional) ---------- */
.deeper { max-width: 760px; margin: 0 auto; }
.deeper details { border: 1px solid rgba(29,43,32,0.1); border-radius: 18px; padding: 24px 28px; background: rgba(29,43,32,0.02); }
.deeper summary { font-family: "Lora", serif; font-size: 18px; color: var(--forest); cursor: pointer; list-style: none; display: flex; align-items: center; gap: 10px; }
.deeper summary::-webkit-details-marker { display: none; }
.deeper summary::after { content: "+"; margin-left: auto; color: var(--gold); font-size: 24px; }
.deeper details[open] summary::after { content: "\2013"; }
.deeper .d-body { margin-top: 18px; }
.deeper .d-body p { font-size: 17px; color: rgba(29,43,32,0.8); line-height: 1.75; margin-bottom: 14px; }
.deeper .d-body strong { color: var(--forest); font-weight: 600; }

/* ---------- Disclaimer visible ---------- */
.med-banner { background: rgba(29,43,32,0.05); border-top: 1px solid rgba(29,43,32,0.08); border-bottom: 1px solid rgba(29,43,32,0.08); padding: 18px 0; }
.med-banner p { max-width: 820px; margin: 0 auto; text-align: center; font-size: 15px; color: rgba(29,43,32,0.7); line-height: 1.6; padding: 0 24px; }

@media (max-width: 640px) {
  .tb-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .faq-warn ul { column-count: 1; }
}

/* ---------- Declaración de propósito ---------- */
.purpose { background: var(--cream); padding: 56px 0 8px; }
.purpose-card { max-width: 780px; margin: 0 auto; text-align: center; border: 1px solid rgba(195,155,98,0.3); border-radius: 22px; padding: 36px 40px; background: rgba(195,155,98,0.05); }
.purpose-card p { font-size: 18px; color: rgba(29,43,32,0.85); line-height: 1.8; }
.purpose-card p strong { color: var(--forest); font-weight: 600; }

/* ---------- Orientación: qué hace Alexis ---------- */
.orient { padding: 72px 0; background: var(--cream); }
.orient-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 940px; margin: 0 auto; }
.orient-col h3 { font-size: 21px; color: var(--forest); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.orient-col h3 svg { width: 22px; height: 22px; color: var(--gold); }
.orient-col ul { list-style: none; }
.orient-col ul li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 17px; color: rgba(29,43,32,0.82); line-height: 1.6; }
.orient-col ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.orient-col.no ul li::before { background: rgba(29,43,32,0.3); }
.orient-col p.role { font-size: 17px; color: rgba(29,43,32,0.82); line-height: 1.7; }
.forwho { max-width: 780px; margin: 44px auto 0; background: rgba(29,43,32,0.04); border-radius: 22px; padding: 34px 40px; }
.forwho h3 { font-size: 20px; color: var(--forest); margin-bottom: 18px; text-align: center; }
.forwho ul { list-style: none; max-width: 620px; margin: 0 auto; }
.forwho ul li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 17px; color: rgba(29,43,32,0.85); line-height: 1.6; }
.forwho ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-text); font-weight: 700; }

/* ---------- Cierre con permiso ---------- */
.permission { background: var(--cream); padding: 20px 0 80px; }
.permission-card { max-width: 720px; margin: 0 auto; text-align: center; }
.permission-card p { font-family: "Lora", serif; font-style: italic; font-size: 18px; color: rgba(29,43,32,0.75); line-height: 1.8; }

@media (max-width: 640px) {
  .orient-grid { grid-template-columns: 1fr; }
}


/* ---------- Ajuste de desbordamiento horizontal en móvil ---------- */
@media (max-width: 640px) {
  /* Elementos decorativos que superaban el ancho de la pantalla */
  .ring.r1 { width: 92vw; height: 92vw; }
  .ring.r2 { width: 64vw; height: 64vw; }
  .hero-glow { width: 70vw; height: 70vw; }
  /* Garantiza que ninguna sección genere scroll lateral */
  section, header, footer, .contenedor { max-width: 100%; }
  .contenedor { overflow-x: clip; }
}

/* ---------- Menos ruido visual/movimiento en móvil ---------- */
@media (max-width: 640px) {
  /* El movimiento decorativo (resplandor pulsante, flecha flotante) se siente
     más intenso en una pantalla pequeña que en una grande: se detiene. */
  .hero-glow, .hero-scroll { animation: none; }
  .hero-glow { opacity: 0.35; }
  .ring.r1, .ring.r2 { opacity: 0.5; }
  .blur-glow { display: none; }
}

