:root {
      --sage:       #7a9e87;
      --sage-light: #b5cebe;
      --sage-dark:  #4e6e59;
      --sage-bg:    #eef4f0;
      --cream:      #f7f3ee;
      --warm-white: #fdfaf6;
      --accent:     #c4a882;
      --accent-light:#eddfc9;
      --ink:        #1a2e22;   /* verde muy oscuro en lugar de negro */
      --mid:        #607068;
      --light:      #a8b8ae;
      --border:     #dce8e0;
      --white:      #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
    }
    /* iOS Safari fix: overflow-x:hidden no funciona cuando hay elementos con transform
       (como .reveal). Usamos contain:paint + translateZ para forzar un GPU layer
       que sí contiene correctamente el overflow horizontal. */
    .page-wrap {
      overflow-x: hidden;
      position: relative;
      width: 100%;
      /* Estas dos propiedades son el fix real para iOS Safari */
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }

    /* ── SCROLL REVEALS ── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 48px;
      background: rgba(255,255,255,0.85);
      transition: padding .4s, background .4s, box-shadow .4s;
    }
    nav.up {
      padding: 10px 48px;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border);
    }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      height: auto !important;
      width: 150px !important;
      max-width: 150px !important;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--mid); text-decoration: none; font-weight: 400;
      transition: color .25s;
    }
    .nav-links a:hover { color: var(--sage-dark); }
    .nav-btn {
      background: var(--sage-dark); color: var(--white) !important;
      padding: 10px 22px; border-radius: 100px;
      font-size: 10px !important; letter-spacing: 0.15em !important;
      transition: background .25s !important;
    }
    .nav-btn:hover { background: var(--sage) !important; }
    .burger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .burger span { width: 22px; height: 1.5px; background: var(--ink); display: block; }

    /* Mobile overlay */
    .mob {
      display: none; position: fixed; inset: 0; z-index: 300;
      background: var(--warm-white);
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mob.open { display: flex; }
    .mob a {
      font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 600;
      color: var(--ink); text-decoration: none; letter-spacing: 0.02em;
    }
    .mob-close {
      position: absolute; top: 24px; right: 28px;
      font-size: 26px; background: none; border: none; cursor: pointer; color: var(--mid);
    }
    .mob-cta {
      background: var(--sage-dark) !important; color: white !important;
      padding: 14px 44px; border-radius: 100px; font-family: 'DM Sans', sans-serif !important;
      font-size: 11px !important; letter-spacing: 0.15em; text-transform: uppercase;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100svh;
      display: grid; grid-template-columns: 55% 45%;
      background: var(--white);
      position: relative; overflow: hidden;
    }
    /* Sage background on right */
    .hero::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 45%; height: 100%;
      background: var(--white); z-index: 0;
    }
    .hero-text {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
      padding: 72px 60px 72px 72px;
    }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--sage-bg); border: 1px solid var(--border);
      padding: 10px 14px 5px; border-radius: 100px;
      font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--sage-dark); font-weight: 500;
      margin-bottom: 24px; width: fit-content;
      margin-top: 40px;
    }
    .hero-pill span { width: 5px; height: 5px; background: var(--sage); border-radius: 50%; }
    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(44px, 5vw, 68px);
      font-weight: 300;
      line-height: 1.08;
      color: var(--charcoal);
      margin-bottom: 10px;
    }
    .hero-h1 .italic {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic; font-weight: 300;
      color: var(--sage-dark);
    }
    .hero-sub {
      font-size: 14px; line-height: 1.75; color: var(--mid);
      max-width: 400px; margin-bottom: 32px; font-weight: 300;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .btn-fill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--sage-dark); color: var(--white); text-decoration: none;
      padding: 12px 26px; border-radius: 100px;
      font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 500; transition: background .3s, transform .2s;
    }
    .btn-fill:hover { background: var(--sage); transform: translateY(-1px); }
    .btn-fill svg { width: 13px; height: 13px; fill: none; stroke: white; stroke-width: 2; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--sage-dark); text-decoration: none;
      font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
      border-bottom: 1px solid var(--sage-light); padding-bottom: 2px;
      transition: border-color .3s, color .3s;
    }
    .btn-ghost:hover { color: var(--sage); border-color: var(--sage); }
    .hero-badge {
      margin-top: 40px; display: flex; align-items: center; gap: 16px;
      padding-top: 32px; border-top: 1px solid var(--border);
    }
    .hero-badge-num {
      font-family: 'DM Sans', sans-serif; font-size: 36px; font-weight: 600;
      color: var(--sage-dark); line-height: 1; letter-spacing: -0.02em;
    }
    .hero-badge-text { font-size: 11px; color: var(--mid); line-height: 1.6; max-width: 130px; }

    /* Photo side */
    .hero-photo {
      position: relative; z-index: 2; overflow: hidden;
    }
    .hero-photo::before {
      content: '';
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 120px; z-index: 3;
      background: linear-gradient(to right, var(--white), transparent);
    }
    .hero-photo img {
      width: 100%; height: calc(100% + 200px);
      margin-top: -200px;
      object-fit: cover; object-position: center 100%;
      display: block;
    }
    /* Floating tag on photo */
    .photo-tag {
      position: absolute; top: 110px; left: 28px;
      background: rgba(255,255,255,0.95); border: 1px solid var(--border);
      padding: 12px 16px; border-radius: 12px;
      box-shadow: 0 8px 24px rgba(78,110,89,0.12);
      display: flex; flex-direction: column; gap: 2px;
    }
    .photo-tag strong {
      font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600;
      color: var(--sage-dark); line-height: 1;
    }
    .photo-tag span { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }

    /* ── MARQUEE ── */
    .marquee {
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      background: var(--white); padding: 16px 0; overflow: hidden;
      width: 100%; position: relative;
      isolation: isolate;
    }
    .marquee-track {
      display: flex; animation: mq 26s linear infinite; white-space: nowrap;
      will-change: transform;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 32px; padding: 0 32px;
      font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
      flex-shrink: 0;
    }
    .marquee-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
    @keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── SHARED ── */
    .tag-line {
      font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--sage-dark); font-weight: 500;
      display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    }
    .tag-line::before { content: ''; width: 20px; height: 1.5px; background: var(--sage); }
    .tag-line-light { color: var(--sage-light); }
    .tag-line-light::before { background: var(--sage-light); }

    h2.h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 300; line-height: 1.15; margin-bottom: 20px;
    }
    h2.h2 em {
      font-family: 'Cormorant Garamond', serif; font-weight: 300;
      font-style: italic; color: var(--sage-dark);
    }
    h2.h2-light { color: var(--white); }
    h2.h2-light em { color: var(--sage-light); }

    .body { font-size: 15px; line-height: 1.85; color: var(--mid); font-weight: 300; }
    .body-light { color: rgba(255,255,255,0.88); }

    .pregunta-destacada { font-size: clamp(40px, 4.8vw, 62px); margin-bottom: 18px; }
    .subpregunta-destacada { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 20px; opacity: 0.92; }

    /* ── PROBLEMA ── */
    .problema {
      background: var(--sage-dark); padding: 80px 72px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
      overflow: hidden;
    }
    .sig-list { display: flex; flex-direction: column; gap: 0; }
    .sig-item {
      display: grid; grid-template-columns: 36px 1fr;
      gap: 16px; align-items: start;
      padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background .2s;
    }
    .sig-item:last-child { border-bottom: none; }
    .sig-n {
      font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
      color: var(--sage-light); letter-spacing: 0.1em; margin-top: 3px;
    }
    .sig-t { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.6; }
    .sig-t b { color: rgba(255,255,255,0.95); display: block; margin-bottom: 2px; font-weight: 500; font-size: 14px; }

    /* ── SOBRE MÍ ── */
    .sobre {
      display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; overflow: hidden;
    }
    .sobre-photo { position: relative; overflow: hidden; }
    .sobre-photo img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 10%;
      display: block; transition: transform 6s ease;
    }
    .sobre-photo:hover img { transform: scale(1.03); }
    /* Decorative stripe */
    .sobre-photo::after {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 6px; background: linear-gradient(to bottom, var(--sage-light), var(--sage-dark));
    }
    .sobre-content {
      background: var(--cream); padding: 72px 64px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-list { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 0; }
    .about-list li {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 13px; color: var(--mid); line-height: 1.6;
      padding: 14px 0; border-bottom: 1px solid var(--border);
    }
    .about-list li:last-child { border-bottom: none; }
    .about-check {
      width: 20px; height: 20px; border-radius: 50%; background: var(--sage-bg);
      border: 1.5px solid var(--sage); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .about-check::after { content: ''; width: 6px; height: 6px; background: var(--sage-dark); border-radius: 50%; }
    .ks-pill {
      display: flex; gap: 14px; align-items: center;
      background: var(--white); border: 1px solid var(--border); padding: 14px 18px;
      border-radius: 12px; margin-bottom: 32px;
    }
    .ks-icon { width: 40px; height: 40px; background: var(--sage-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .ks-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-dark); }
    .ks-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); }
    .ks-sub { font-size: 11px; color: var(--mid); }

    /* ── QUOTE ── */
    .quote-section {
      background: var(--sage-bg); padding: 80px 120px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .quote-big { display: none; }
    .quote-text {
      font-family: 'DM Sans', sans-serif; font-size: clamp(15px, 1.6vw, 18px);
      font-weight: 400; line-height: 1.85; color: var(--ink); font-style: normal;
      max-width: 780px;
    }
    .quote-text strong { font-style: normal; font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--sage-dark); }
    .quote-cite {
      margin-top: 24px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--sage-dark); display: flex; align-items: center; gap: 12px;
      justify-content: center;
    }
    .quote-cite::before { content: ''; width: 20px; height: 1.5px; background: var(--sage); }

    /* ── TRATAMIENTOS ── */
    .trat-section { padding: 80px 72px; background: var(--white); overflow: hidden; }
    .trat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
    .trat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .trat-card-photo {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center top;
      border-radius: 14px 14px 0 0;
      display: block;
    }
    .trat-card {
      background: var(--cream); border-radius: 16px; padding: 32px 24px;
      position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      border: 1px solid transparent;
    }
    .trat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(78,110,89,0.1);
      border-color: var(--border);
    }
    .trat-card.featured { background: var(--sage-dark); }
    .trat-card.featured * { color: rgba(255,255,255,0.9) !important; }
    .trat-card.featured .trat-age { background: rgba(255,255,255,0.15) !important; color: white !important; }
    .trat-card.featured .trat-num { color: rgba(255,255,255,0.08) !important; }
    .trat-n {
      font-family: 'DM Sans', sans-serif; font-size: 64px; font-weight: 600;
      color: rgba(78,110,89,0.1); line-height: 1; position: absolute;
      top: 16px; right: 20px; letter-spacing: -0.03em;
    }
    .trat-age {
      display: inline-block; background: var(--sage-bg); color: var(--sage-dark);
      font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; font-weight: 600;
    }
    .trat-card h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
      line-height: 1.2; margin-bottom: 16px; color: var(--ink);
    }
    .trat-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .trat-items li {
      font-size: 12px; color: var(--mid); line-height: 1.55;
      display: flex; gap: 10px;
    }
    .trat-items li::before { content: '–'; color: var(--sage); flex-shrink: 0; }

    /* ── POR QUÉ NO ESPERAR ── */
    .porque {
      padding: 80px 72px; background: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }
    .porque-img {
      border-radius: 12px; overflow: hidden;
      aspect-ratio: 1/1; position: relative;
    }
    .porque-img img {
      width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
    }
    .datos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 32px 0 40px; }
    .dato {
      padding: 28px 24px; border-top: 1px solid var(--border); border-right: 1px solid var(--border);
    }
    .dato:nth-child(2n) { border-right: none; }
    .dato:nth-child(3), .dato:nth-child(4) { border-bottom: none; }
    .dato-n {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 300; color: var(--sage-dark); line-height: 1; margin-bottom: 8px;
    }
    .dato-l { font-size: 12px; color: var(--mid); line-height: 1.6; }

    /* ── GALERÍA ── */
    .gallery { padding: 80px 72px; background: var(--white); }
    .gallery-header { margin-bottom: 36px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 300px 300px;
      gap: 12px;
    }
    .g-item { border-radius: 16px; overflow: hidden; position: relative; }
    .g-item.wide { grid-column: span 2; }
    .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
    .g-item:hover img { transform: scale(1.05); }
    .g-cap {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 20px 20px; background: linear-gradient(to top, rgba(78,110,89,0.5) 0%, transparent 100%);
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0); transition: color .3s;
    }
    .g-item:hover .g-cap { color: white; }

    /* ── SEÑALES + LEAD ── */
    .leads { display: grid; grid-template-columns: 1fr 1fr; }
    .leads-left {
      background: var(--sage-dark); padding: 80px 64px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .leads-right {
      background: var(--cream); padding: 80px 64px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .sig2-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
    .sig2-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .sig2-n {
      font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
      color: var(--sage-light); flex-shrink: 0; width: 22px; letter-spacing: 0.08em;
    }
    .sig2-t { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.65; }
    .sig2-t b { color: rgba(255,255,255,0.95); display: block; font-weight: 500; margin-bottom: 1px; }

    .form-label {
      display: inline-block; background: var(--sage-bg); color: var(--sage-dark);
      font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; font-weight: 600; margin-bottom: 20px;
    }
    .form-title {
      font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 3vw, 32px);
      font-weight: 600; line-height: 1.15; color: var(--ink);
      letter-spacing: -0.01em; margin-bottom: 12px;
    }
    .form-desc { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
    .form-group { display: flex; flex-direction: column; gap: 10px; }
    .form-group input {
      padding: 14px 18px; background: var(--white); border: 1.5px solid var(--border);
      border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 16px;
      color: var(--ink); outline: none; transition: border-color .25s;
    }
    .form-group input:focus { border-color: var(--sage-dark); }
    .form-group input::placeholder { color: var(--light); }
    .form-submit {
      background: var(--sage-dark); color: var(--white); padding: 15px;
      border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      cursor: pointer; transition: background .25s, transform .2s;
    }
    .form-submit:hover { background: var(--sage); transform: translateY(-1px); }
    .form-note { font-size: 10px; color: var(--light); margin-top: 8px; }

    /* ── BIOLÓGICA ── */
    .bio {
      padding: 80px 72px;
      position: relative;
      overflow: hidden;
      background: var(--sage-bg);
    }
    .bio::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../img/bio-bg.jpg');
      background-size: cover;
      background-position: center 30%;
      opacity: 0.35;
      z-index: 0;
    }
    .bio::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(238,244,240,0.88) 35%, rgba(238,244,240,0.30) 100%);
      z-index: 1;
    }
    .bio-inner { position: relative; z-index: 2; }
    .bio-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: stretch; position: relative; z-index: 2; }
    .bio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 36px; }
    .bio-card {
      background: var(--white); border-radius: 14px; padding: 22px 24px;
      border: 1px solid var(--border); transition: box-shadow .3s;
    }
    .bio-card:hover { box-shadow: 0 10px 32px rgba(78,110,89,0.08); }
    .bio-card strong { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; color: var(--ink); }
    .bio-card p { font-size: 12px; color: var(--mid); line-height: 1.65; }
    .bio-quote {
      background: transparent; border-radius: 0; padding: 52px;
      display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
      position: relative; overflow: hidden; height: 100%; min-height: 300px;
    }
    .bio-quote::before {
      content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 200px;
      color: rgba(78,110,89,0.12); position: absolute; top: -30px; left: 20px; line-height: 1;
    }
    .bio-quote q {
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400;
      line-height: 1.85; color: var(--ink); quotes: none; font-style: normal;
    }
    .bio-quote cite {
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--sage-dark); display: flex; align-items: center; gap: 10px; margin-top: 24px;
    }
    .bio-quote cite::before { content: ''; width: 20px; height: 1px; background: var(--sage-dark); }

    /* ── TESTIMONIOS ── */
    .testi { padding: 80px 72px; background: var(--white); }
    .testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .testi-card {
      background: var(--cream); border-radius: 16px; padding: 28px 24px;
      border: 1px solid var(--border); transition: box-shadow .3s, transform .3s;
    }
    .testi-card:hover { box-shadow: 0 16px 40px rgba(78,110,89,0.08); transform: translateY(-3px); }
    .testi-photo {
      width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
      margin-bottom: 14px; border: 2px solid var(--border);
    }
    .testi-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .testi-stars { color: var(--sage); font-size: 13px; letter-spacing: 3px; margin-bottom: 12px; }
    .testi-card blockquote {
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 300;
      line-height: 1.8; color: var(--ink); margin-bottom: 18px; font-style: normal;
    }
    .testi-sep { width: 20px; height: 2px; background: var(--sage-light); border-radius: 1px; margin-bottom: 14px; }
    .testi-who strong { font-size: 13px; font-weight: 500; color: var(--ink); }
    .testi-who span { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); margin-top: 2px; }

    /* ── INSTAGRAM ── */
    .ig { padding: 56px 72px; background: var(--cream); }
    .ig-head { display: flex; justify-content: flex-start; align-items: flex-start; margin-bottom: 28px; }
    .social-handles { display: flex; gap: 48px; margin-top: 8px; }
    .social-item { display: flex; flex-direction: column; gap: 10px; }
    .ig-handle {
      font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; color: var(--ink);
    }
    .ig-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
    .ig-thumb { aspect-ratio: 1; border-radius: 10px; overflow: hidden; }
    .ig-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .4s; filter: saturate(.9); }
    .ig-thumb:hover img { transform: scale(1.08); filter: saturate(1.1); }

    /* ── CIERRE ── */
    .cierre {
      background: var(--sage-dark); padding: 100px 72px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cierre::before {
      content: '';
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 800px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.04); pointer-events: none;
    }
    .cierre::after {
      content: '';
      position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 500px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.04); pointer-events: none;
    }
    .cierre-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
      padding: 6px 18px; border-radius: 100px;
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: white; font-weight: 500; margin-bottom: 32px;
    }
    .cierre h2 {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5vw, 60px);
      font-weight: 300; line-height: 1.15;
      color: var(--white); margin-bottom: 18px;
    }
    .cierre h2 em {
      font-style: italic; font-weight: 300; color: var(--white);
    }
    .cierre p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.92); max-width: 460px; margin: 0 auto 48px; font-weight: 400; }
    .btn-white-fill {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--white); color: var(--sage-dark); text-decoration: none;
      padding: 16px 40px; border-radius: 100px;
      font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      transition: background .3s, transform .2s;
    }
    .btn-white-fill:hover { background: var(--accent-light); transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer {
      background: var(--cream); padding: 64px 72px 36px;
      border-top: 1px solid var(--border);
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    }
    .f-logo { margin-bottom: 16px; }
    .f-logo img { height: 30px; }
    .f-desc { font-size: 12px; color: var(--mid); line-height: 1.8; max-width: 220px; font-weight: 300; }
    footer h5 { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
    footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    footer ul a { font-size: 12px; color: var(--mid); text-decoration: none; transition: color .2s; }
    footer ul a:hover { color: var(--sage-dark); }
    .f-bottom {
      grid-column: 1/-1; padding-top: 28px; border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
    }
    .f-bottom p { font-size: 11px; color: var(--light); }

    /* ── WA FLOAT ── */
    .wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 300;
      display: flex; align-items: center; gap: 10px;
      background: var(--sage-dark); color: var(--white); text-decoration: none;
      padding: 13px 20px; border-radius: 100px;
      box-shadow: 0 8px 24px rgba(78,110,89,0.28);
      font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      transition: background .25s, transform .2s;
    }
    .wa:hover { background: var(--sage); transform: translateY(-2px); }
    .wa svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      /* NAV */
      nav { padding: 12px 20px; }
      nav.up { padding: 10px 20px; }
      .logo img { width: 100px; }
      .nav-links { display: none; }
      .burger { display: flex; }

      /* HERO */
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero::before { display: none; }
      .hero-text { padding: 90px 20px 36px; background: var(--white); }
      .hero-pill {
        font-size: 7px; padding: 8px 10px 5px;
        white-space: normal; text-align: center;
        max-width: calc(100% - 4px); width: calc(100% - 4px);
        box-sizing: border-box;
        justify-content: center;
        letter-spacing: 0.06em;
        line-height: 1.6;
        display: flex; flex-wrap: wrap;
        gap: 4px;
        border-radius: 8px;
      }
      .hero-h1 { font-size: clamp(36px, 9vw, 52px); margin-bottom: 14px; }
      .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
      .hero-photo { height: auto; max-height: none; }
      .hero-photo img { width: 100%; height: auto; object-fit: contain; object-position: center center; margin-top: 0; }
      .photo-tag { display: none; }
      .hero-badge { margin-top: 28px; padding-top: 24px; }
      .hero-badge-num { font-size: 28px; }
      .hero-actions { flex-direction: column; gap: 10px; }
      .btn-fill, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; font-size: 10px; }

      /* MARQUEE */
      .marquee-item { font-size: 8px; padding: 0 20px; gap: 20px; }

      /* PROBLEMA */
      .problema { padding: 56px 20px; grid-template-columns: 1fr; gap: 36px; }
      .sig-item { gap: 12px; padding: 16px 0; }
      .sig-n { font-size: 9px; }
      .sig-t { font-size: 12px; }
      .sig-t b { font-size: 13px; }

      /* SOBRE */
      .sobre { grid-template-columns: 1fr; }
      .sobre-photo { height: 65vw; max-height: 380px; }
      .sobre-content { padding: 48px 20px; }
      .about-list li { font-size: 12px; }
      .ks-pill { flex-wrap: wrap; }

      /* QUOTE */
      .quote-section { padding: 48px 20px; }
      .quote-text { font-size: 14px; }

      /* TRATAMIENTOS */
      .trat-section { padding: 56px 20px; }
      .trat-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
      .trat-grid { grid-template-columns: 1fr; gap: 12px; }
      .trat-card { padding: 28px 20px; }
      .trat-n { font-size: 48px; top: 12px; right: 16px; }
      .trat-card h3 { font-size: 18px; }
      .trat-items li { font-size: 12px; }

      /* POR QUÉ */
      .porque { padding: 56px 20px; grid-template-columns: 1fr; gap: 32px; }
      .porque-img { display: block; width: 100%; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; }
      .datos-grid { gap: 0; }
      .dato { padding: 20px 16px; }
      .dato-n { font-size: clamp(28px, 8vw, 40px); }
      .dato-l { font-size: 11px; }

      /* GALERÍA */
      .gallery { padding: 56px 20px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; gap: 6px; }
      .g-item.wide { grid-column: span 2; }

      /* SEÑALES + LEAD */
      .leads { grid-template-columns: 1fr; }
      .leads-left { padding: 56px 20px; }
      .leads-right { padding: 48px 20px; }
      .sig2-item { padding: 14px 0; gap: 12px; }
      .sig2-t { font-size: 12px; }
      .form-title { font-size: 20px; }
      .form-group input { font-size: 16px; padding: 12px 14px; }
      .form-submit { font-size: 9px; padding: 13px; }

      /* BIOLÓGICA */
      .bio { padding: 56px 20px; }
      .bio-inner { grid-template-columns: 1fr; gap: 32px; }
      .bio-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
      .bio-card { padding: 18px; }
      .bio-quote { padding: 32px 24px; min-height: auto; }
      .bio-quote q { font-size: 14px; }

      /* TESTIMONIOS */
      .testi { padding: 56px 20px; }
      .testi-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
      .testi-grid { grid-template-columns: 1fr; gap: 14px; }
      .testi-card { padding: 24px 20px; }

      /* INSTAGRAM */
      .ig { padding: 48px 20px; }
      .ig-grid { grid-template-columns: repeat(3,1fr); gap: 5px; }
      .ig-head { flex-direction: column; align-items: flex-start; gap: 10px; }
      .ig-handle { font-size: 18px; }
      .social-handles { flex-direction: column; gap: 24px; }

      /* CIERRE */
      .cierre { padding: 72px 20px; }
      .cierre h2 { font-size: clamp(28px, 8vw, 44px); }
      .cierre p { font-size: 14px; }
      .cierre::before { width: 100vw; height: 100vw; top: -30vw; }
      .cierre::after { width: 70vw; height: 70vw; top: -10vw; }
      .btn-white-fill { padding: 14px 32px; font-size: 10px; }

      /* FOOTER */
      footer { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 28px; }
      .f-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .f-logo img { height: 28px; }
      .f-desc { font-size: 12px; }

      /* WHATSAPP */
      .wa { bottom: 20px; right: 16px; padding: 11px 16px; font-size: 9px; }
      .wa svg { width: 14px; height: 14px; }

      /* GENERAL */
      .tag-line { font-size: 8px; }
      h2.h2 { font-size: clamp(26px, 7vw, 38px); }
      .body { font-size: 14px; }

      /* FIX DEFINITIVO iOS Safari — scroll horizontal
         El transform:translateY en .reveal rompe overflow:hidden en todos los contenedores.
         En móvil desactivamos las animaciones de reveal para que no haya transforms activos. */
      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .reveal.in {
        opacity: 1 !important;
        transform: none !important;
      }

      /* FIX PÍLDORA — letra-espaciado reducido + word-break para que nunca se corte */
      .hero-pill {
        letter-spacing: 0.06em !important;
        white-space: normal !important;
        word-break: break-word !important;
        hyphens: auto !important;
        max-width: calc(100% - 4px) !important;
        width: calc(100% - 4px) !important;
        font-size: 7px !important;
      }
    }

/* ── LANDING GUÍA (standalone /guia) ── */
.guia-landing {
  min-height: 100vh;
  background: var(--sage-bg);
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.guia-landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/bio-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.guia-landing-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(78,110,89,0.12);
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 30px 80px rgba(78,110,89,0.12);
  box-sizing: border-box;
}
.guia-landing-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}
.guia-landing-copy .tag-line { color: var(--sage-dark); }
.guia-cover {
  max-width: 220px;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.guia-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow:
    0 30px 60px rgba(44, 66, 52, 0.28),
    0 10px 24px rgba(44, 66, 52, 0.18),
    0 1px 0 rgba(255,255,255,0.4) inset;
}
.guia-cover:hover { transform: rotate(-1deg) translateY(-4px); }
.guia-landing-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 14px 0 20px;
}
.guia-landing-h1 em {
  font-style: italic;
  color: var(--sage-dark);
}
.guia-landing-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
  margin: 12px 0 20px;
  max-width: 42ch;
}
.guia-landing-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guia-landing-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
}
.guia-landing-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--sage-dark);
}
.guia-landing-form {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(78,110,89,0.10);
}

@media (max-width: 860px) {
  .guia-landing { padding: 110px 16px 64px; }
  .guia-landing-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    border-radius: 20px;
  }
  .guia-landing-h1 { font-size: clamp(28px, 8vw, 38px); }
  .guia-landing-form { padding: 28px 20px; }
  .guia-landing-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .guia-cover { max-width: 180px; margin: 0 auto; }
  .guia-landing-sub { margin-left: auto; margin-right: auto; }
  .guia-landing-bullets { text-align: left; display: inline-flex; }
}