    /* ── TOKENS · PALETA DE MARCA ───────────────────────────
       Fuente de verdad única.
       VERDES: familia "verde salud" del hero anterior (var(--green)) —
       elegida por el cliente sobre el lima del logo (mejor contraste).
       ROSAS: muestreados del logo oficial (manzana rosa suave). */
    :root {
      /* Verde salud (familia del hero anterior) */
      --green:        #B8D99D;
      --green-light:  #D4EDBA;
      --green-bg:     #EEF7E4;
      --green-dark:   #5A9640;
      --green-deep:   #3D6B28;   /* verde más oscuro (= hover de botones) — labels/eyebrows legibles AA */
      --green-cta:    #4A8032;   /* verde de botones con texto blanco (AA): base botones recomendados + hover btn-primary */
      /* Rosa de marca: suave (manzana del logo) + medio (el del photo-arch). */
      --pink:         #FFC9EA;   /* manzana (suave) — relleno/base */
      --pink-deep:    #D4699A;   /* rosa medio (= el del photo-arch) — profundidad/acento */
      --pink-mid:     #DD6BA5;   /* rosa suave subido de saturación — scripts cursivos legibles */
      --pink-dark:    #FFC9EA;   /* = --pink (alias) */
      --pink-bg:      #FFF0F8;   /* wash muy pálido p/ fondos (casi blanco) */
      /* UN solo gradiente de marca — mismo para arco, scripts y watermarks */
      --grad-pink:    linear-gradient(135deg, var(--pink-deep) 0%, var(--pink) 100%);
      /* Neutros */
      --cream:        #FBF5F8;
      --white:        #FFFFFF;
      --black:        #272727;   /* charcoal de marca: títulos, bordes, fondos oscuros */
      --charcoal:     #272727;   /* alias de --black */
      --text:         #3D3D3D;   /* texto body (marca) */
      --muted:        #7A7470;   /* secundario (marca usa #7A7470; subido para contraste AA) */
      --border:       #E2DCD6;   /* bordes suaves */
      --pill:         999px;
      --f-display:    'Cormorant Garamond', Georgia, serif;
      --f-body:       'DM Sans', system-ui, sans-serif;
      --f-script:     'Great Vibes', cursive;
    }

    /* ── SCROLL REVEAL ──────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .1s; }
    .reveal-d2 { transition-delay: .2s; }
    .reveal-d3 { transition-delay: .3s; }
    .reveal-d4 { transition-delay: .4s; }

    /* ── RESET ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img  { display: block; max-width: 100%; }
    a    { color: inherit; text-decoration: none; }

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

    body {
      font-family: var(--f-body);
      color: var(--black);
      background: var(--white);
      overflow-x: clip; /* clip (no 'hidden') para no romper position:sticky del navbar */
    }

    /* ══════════════════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════════════════ */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      height: 112px;
      display: flex;
      align-items: center;
      padding: 0 72px;
      border-bottom: 1px solid rgba(0,0,0,.05);
    }
    .navbar__inner {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
    }
    .logo__text { line-height: 1.2; }
    .logo__name {
      display: block;
      font-family: var(--f-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--black);
      letter-spacing: .5px;
    }
    .logo__sub {
      display: block;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-dark);
      margin-top: 4px;
    }
    .logo__badge { width: 54px; height: 54px; flex-shrink: 0; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 44px;
      list-style: none;
    }
    .nav-links a {
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--black);
      transition: color .2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--green-deep); }

    .nav-cta {
      display: inline-block;
      padding: 10px 26px;
      border: 1.5px solid var(--black);
      border-radius: var(--pill);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--black);
      transition: border-color .2s, color .2s, background .2s, transform .15s ease, box-shadow .25s ease;
      white-space: nowrap;
      cursor: pointer;
    }
    .nav-cta:hover {
      border-color: var(--green-dark);
      color: var(--black);
      background: var(--pink-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(212,105,154,.3);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--black); border-radius: 2px;
      transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .22s, width .22s;
    }
    .nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ══════════════════════════════════════════════════════
       HERO — rediseñado
    ══════════════════════════════════════════════════════ */
    .hero {
      min-height: 660px;
      background: var(--green);
      display: flex;
      align-items: center;
      position: relative;
      overflow: visible;
      padding: 88px 72px 108px;
    }
    /* Soft radial light en el lado del texto */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 28% 50%, rgba(255,255,255,.28) 0%, transparent 58%);
      pointer-events: none;
    }
    .hero__inner {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* -- Lado texto -- */
    .hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 2.2px;
      text-transform: uppercase;
      color: var(--green-dark);
      background: rgba(255,255,255,.65);
      backdrop-filter: blur(4px);
      border-radius: var(--pill);
      padding: 7px 18px;
      margin-bottom: 30px;
    }
    .hero__tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green-dark);
      flex-shrink: 0;
    }
    .hero__h1 {
      font-family: var(--f-display);
      font-size: clamp(42px, 5vw, 66px);
      font-weight: 700;
      color: var(--black);
      line-height: 1.07;
      letter-spacing: -.5px;
      margin-bottom: 14px;
    }
    .hero__script {
      font-family: var(--f-script);
      font-size: clamp(30px, 3.6vw, 48px);
      color: var(--green-dark);
      line-height: 1.4;
      margin-bottom: 28px;
    }
    .hero__p {
      font-size: 15.5px;
      font-weight: 300;
      color: var(--black);
      line-height: 1.85;
      max-width: 420px;
      margin-bottom: 36px;
    }
    .hero__ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    /* (botones .btn-filled/.btn-outline-dark del mockup removidos — código muerto en vivo:
       los botones son widgets Elementor estilados por vicky-bridge.css (.X .elementor-button).
       Las reglas viejas aplicaban al wrapper y causaban doble-lift en hover.) */
    .hero__credential {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11.5px;
      font-weight: 400;
      color: var(--black);
      opacity: .7;
    }
    .hero__credential::before {
      content: '';
      width: 28px; height: 1px;
      background: currentColor;
      flex-shrink: 0;
    }

    /* -- Lado foto (arch + chips) -- */
    .hero__photo {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .hero__arch {
      width: 340px;
      height: 450px;
      border-radius: 170px 170px 28px 28px;
      background: var(--grad-pink);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow:
        0 24px 64px rgba(212,105,154, .22),
        inset 0 1px 0 rgba(255,255,255,.4);
      overflow: hidden;
    }
    /* Luz en la parte superior del arco */
    .hero__arch::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 45%;
      background: linear-gradient(180deg, rgba(255,255,255,.3) 0%, transparent 100%);
      border-radius: 170px 170px 0 0;
      pointer-events: none;
    }
    .hero__arch-badge { position: relative; z-index: 1; }

    /* Chips flotantes */
    .hero__chip {
      position: absolute;
      background: var(--white);
      border-radius: var(--pill);
      padding: 8px 16px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .4px;
      color: var(--black);
      box-shadow: 0 4px 18px rgba(0,0,0,.13);
      white-space: nowrap;
    }
    .hero__chip--1 { top: 28px;    left: -42px; }
    .hero__chip--2 { top: 88px;    right: -32px; }
    .hero__chip--3 { bottom: 100px; right: -24px; }
    .hero__chip--4 { bottom: 40px;  left: -44px; }

    /* Scroll indicator */
    .hero__scroll {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: .5;
      animation: scrollBounce 2.2s ease-in-out infinite;
      cursor: pointer;
    }
    .hero__scroll span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--black);
    }
    .hero__scroll svg { width: 20px; height: 20px; }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(7px); }
    }

    /* Wave divider al final del hero */
    .hero__wave {
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 56px;
      pointer-events: none;
    }
    .hero__wave svg { width: 100%; height: 100%; display: block; }

    /* ══════════════════════════════════════════════════════
       TRUST BAR
    ══════════════════════════════════════════════════════ */
    .trust-bar {
      background: var(--green-bg);
      padding: 36px 72px;
      border-bottom: 1px solid rgba(90,150,64,.1);
    }
    .trust-bar__inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .trust-stat {
      text-align: center;
      padding: 8px 20px;
      border-right: 1px solid rgba(90,150,64,.18);
    }
    .trust-stat:last-child { border-right: none; }
    .trust-stat strong {
      display: block;
      font-family: var(--f-display);
      font-size: 30px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1;
      margin-bottom: 6px;
    }
    .trust-stat span {
      font-size: 11.5px;
      font-weight: 400;
      color: var(--muted);
    }

    /* ══════════════════════════════════════════════════════
       SOBRE MÍ
    ══════════════════════════════════════════════════════ */
    .about {
      padding: 120px 72px;
      background: var(--white);
    }
    .about__inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about__text { position: relative; }
    .about__watermark {
      font-family: var(--f-script);
      font-size: 80px;
      color: var(--pink);
      opacity: .4;
      position: absolute;
      top: -42px;
      left: -10px;
      line-height: 1;
      pointer-events: none;
      z-index: 0;
    }
    .about__inner-text { position: relative; z-index: 1; }
    .about__h2 {
      font-family: var(--f-display);
      font-size: clamp(34px, 3.8vw, 50px);
      font-weight: 600;
      color: var(--black);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .about__p {
      font-size: 15.5px;
      font-weight: 300;
      color: var(--text);
      line-height: 1.9;
      margin-bottom: 18px;
    }

    /* Specialty chips */
    .about__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 26px 0 32px;
    }
    .chip {
      display: inline-block;
      padding: 6px 14px;
      background: var(--green-bg);
      border-radius: var(--pill);
      font-size: 11.5px;
      font-weight: 500;
      color: var(--green-dark);
      letter-spacing: .2px;
    }

    /* (.btn-primary del mockup removido — código muerto en vivo, ver nota en los otros botones) */

    /* Foto composition */
    .about__photos { position: relative; height: 460px; }
    .photo-arch { position: absolute; overflow: hidden; }
    .photo-arch--main {
      width: 280px; height: 380px;
      border-radius: 140px 140px 0 0;
      right: 20px; top: 0;
      background: linear-gradient(160deg, var(--pink) 0%, var(--pink) 100%);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 16px 48px rgba(212,105,154,.18);
    }
    .photo-arch--back {
      width: 210px; height: 270px;
      border-radius: 8px;
      left: 0; bottom: 0;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(90,150,64,.14);
    }
    .photo-arch svg { opacity: .2; }

    /* ══════════════════════════════════════════════════════
       QUOTE — DARK
    ══════════════════════════════════════════════════════ */
    .quote-section {
      background: var(--charcoal);
      padding: 128px 72px 112px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    /* Glow verde sutil en fondo */
    .quote-section::before {
      content: '';
      position: absolute;
      top: -30%; left: -5%;
      width: 55%; height: 200%;
      background: radial-gradient(ellipse, rgba(184,217,157,.07) 0%, transparent 65%);
      pointer-events: none;
    }
    /* Comillas decorativas */
    .quote-section__open-quote {
      font-family: var(--f-display);
      font-size: 180px;
      color: var(--pink);   /* MISMO rosa que la firma (sin borde, opacidad plena) */
      opacity: 1;
      line-height: .4;
      display: block;
      margin-bottom: -18px;   /* pegada al texto (antes 24px la dejaban flotando) */
      position: relative;
      z-index: 1;
    }
    .quote-section__text {
      font-family: var(--f-display);
      font-size: clamp(26px, 3.6vw, 48px);
      font-weight: 400;
      font-style: italic;
      color: var(--white);
      max-width: 840px;
      margin: 0 auto 40px;
      line-height: 1.55;
      position: relative;
      z-index: 1;
    }
    .quote-section__author {
      font-family: var(--f-script);
      font-size: clamp(26px, 2.5vw, 38px);
      color: var(--pink);
      opacity: .8;
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════════════════════════════
       SERVICIOS
    ══════════════════════════════════════════════════════ */
    .services {
      padding: 104px 72px 128px;
      background: var(--cream);
    }
    .services__inner { max-width: 1100px; margin: 0 auto; }

    /* Encabezado de sección */
    .section-head { text-align: center; margin-bottom: 72px; }
    .section-label {
      display: block;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green-dark);
      margin-bottom: 16px;
    }
    .section-title {
      display: inline-block;
      font-family: var(--f-display);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--black);
      border: 1.5px solid rgba(0,0,0,.2);
      border-radius: var(--pill);
      padding: 12px 48px;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
      margin-bottom: 64px;
    }
    .service-card { text-align: center; cursor: pointer; }

    /* Arco superior en las cards */
    .service-card__img {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 50% 50% 12px 12px / 28% 28% 12px 12px;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease;
      box-shadow: 0 6px 24px rgba(0,0,0,.07);
    }
    .service-card:hover .service-card__img {
      transform: translateY(-10px);
      box-shadow: 0 22px 56px rgba(0,0,0,.14);
    }
    .service-card__img--1 { background: linear-gradient(165deg, var(--green-light) 0%, var(--green) 100%); }
    .service-card__img--2 { background: linear-gradient(165deg, var(--pink-bg) 0%, var(--pink) 100%); }
    .service-card__img--3 { background: linear-gradient(165deg, var(--green-light) 0%, var(--pink) 100%); }

    /* Overlay hover */
    .service-card__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.3);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 32px;
      opacity: 0;
      transition: opacity .25s;
    }
    .service-card:hover .service-card__overlay { opacity: 1; }
    .service-card__overlay-btn {
      display: inline-block;
      padding: 10px 22px;
      background: var(--white);
      color: var(--black);
      border-radius: var(--pill);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
    }

    .service-card__img svg { opacity: .22; position: relative; z-index: 1; }
    .service-card__title {
      font-family: var(--f-display);
      font-size: 20px;
      font-weight: 600;
      letter-spacing: .5px;
      color: var(--black);
      margin-bottom: 10px;
    }
    .service-card__desc {
      font-size: 13.5px;
      font-weight: 300;
      color: var(--text);
      line-height: 1.65;
    }

    .services__cta { text-align: center; }

    /* ══════════════════════════════════════════════════════
       TESTIMONIOS
    ══════════════════════════════════════════════════════ */
    .testimonials {
      padding: 120px 72px;
      background: var(--pink-bg);
    }
    .testimonials__inner {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .testimonials__sub {
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 2.8px;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 20px;
      margin-bottom: 60px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 24px;
      padding: 52px 64px;
      text-align: left;
      box-shadow: 0 6px 40px rgba(212,105,154,.08);
      margin-bottom: 28px;
    }
    .testimonial-card__stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
    }
    .testimonial-card__star {
      width: 18px; height: 18px;
      fill: #F59E0B;
    }
    .testimonial-card__quote {
      font-size: 56px;
      font-family: var(--f-display);
      color: var(--pink);
      line-height: .85;
      margin-bottom: 12px;
    }
    .testimonial-card__text {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text);
      margin-bottom: 28px;
    }
    .testimonial-card__name {
      font-weight: 600;
      color: var(--green-deep);
      font-size: 15px;
      letter-spacing: .8px;
    }
    .testimonials__dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: background .2s;
      border: none; padding: 0; position: relative;
      -webkit-appearance: none; appearance: none;
    }
    /* área táctil ~44px sin agrandar el punto visual (accesibilidad touch) */
    .dot::after { content: ''; position: absolute; inset: -18px; }
    .dot--active { background: var(--pink-dark); }

    /* ══════════════════════════════════════════════════════
       INSTAGRAM STRIP
    ══════════════════════════════════════════════════════ */
    .instagram {
      padding: 104px 72px;
      background: var(--white);
    }
    .instagram__inner { max-width: 1100px; margin: 0 auto; }

    .instagram__header {
      text-align: center;
      margin-bottom: 60px;
    }
    .instagram__title {
      font-family: var(--f-display);
      font-size: clamp(30px, 3.5vw, 46px);
      font-weight: 600;
      color: var(--black);
      margin-bottom: 6px;
    }
    .instagram__sub {
      font-family: var(--f-script);
      font-size: 26px;
      color: var(--green-dark);
      opacity: .65;
    }

    .instagram__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }
    .ig-card {
      border: 1px solid var(--cream);
      border-radius: 16px;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
      cursor: pointer;
    }
    .ig-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 44px rgba(0,0,0,.1);
    }
    .ig-card__header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 16px;
      border-bottom: 1px solid var(--cream);
    }
    .ig-card__avatar {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pink-dark), var(--green-dark));
      flex-shrink: 0;
    }
    .ig-card__username {
      font-size: 12px;
      font-weight: 600;
      color: var(--black);
    }
    .ig-card__dots {
      margin-left: auto;
      display: flex;
      gap: 3px;
    }
    .ig-card__dots span {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--muted);
    }

    .ig-card__img {
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .ig-card__img--1 { background: linear-gradient(145deg, var(--green-light), var(--green)); }
    .ig-card__img--2 { background: linear-gradient(145deg, var(--pink-bg), var(--pink)); }
    .ig-card__img--3 { background: linear-gradient(145deg, var(--green-light), var(--pink)); }
    /* Gradiente oscuro para legibilidad del texto */
    .ig-card__img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.38) 0%, transparent 55%);
      pointer-events: none;
    }
    .ig-card__img-label {
      position: absolute;
      bottom: 16px; left: 16px; right: 16px;
      font-family: var(--f-display);
      font-size: 20px;
      font-weight: 700;
      font-style: italic;
      color: rgba(255,255,255,.96);
      line-height: 1.25;
      z-index: 1;
      text-shadow: 0 1px 4px rgba(0,0,0,.2);
    }

    .ig-card__body { padding: 13px 16px 18px; }
    .ig-card__likes {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 6px;
    }
    .ig-card__caption {
      font-size: 12.5px;
      font-weight: 300;
      color: var(--text);
      line-height: 1.5;
    }
    .ig-card__caption strong { font-weight: 600; color: var(--black); }

    .instagram__cta { text-align: center; }
    .btn-ig {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 34px;
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: var(--white);
      border-radius: var(--pill);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: transform .15s ease, box-shadow .3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    /* Hover: el gradiente rosa de la página entra por encima del de Instagram (texto sigue blanco) */
    .btn-ig::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background: var(--grad-pink);
      opacity: 0;
      transition: opacity .35s ease;
    }
    /* texto e ícono SIEMPRE blancos (incluso en hover: Elementor tiene un a:hover gris que hay que pisar) */
    .btn-ig, .btn-ig:hover, .btn-ig:focus { color: var(--white) !important; }
    .btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(212,105,154,.4); }
    .btn-ig:hover::before { opacity: .9; }
    .btn-ig svg, .btn-ig:hover svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

    /* ══════════════════════════════════════════════════════
       CONTACTO
    ══════════════════════════════════════════════════════ */
    .contact {
      background: var(--cream);
      padding: 120px 72px;
    }
    .contact__inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .contact__title-wrap { position: relative; margin-bottom: 48px; }
    .contact__watermark {
      font-family: var(--f-script);
      font-size: 72px;
      color: var(--green-dark);
      opacity: .18;
      position: absolute;
      top: -42px; left: -10px;   /* IGUALADO al about: se apoya ARRIBA del H2 (antes top:22px lo cruzaba) */
      line-height: 1;
      pointer-events: none;
      z-index: 0;
    }
    .contact__h2 {
      position: relative; z-index: 1;
      font-family: var(--f-display);
      font-size: clamp(38px, 4.5vw, 56px);
      font-weight: 600;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1.05;
    }
    .form-field { margin-bottom: 36px; }
    .form-field label {
      display: block;
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .form-field input,
    .form-field textarea {
      width: 100%;
      border: none;
      border-bottom: 1.5px solid var(--border);
      background: transparent;
      padding: 10px 0;
      font-family: var(--f-body);
      font-size: 15px;
      font-weight: 300;
      color: var(--black);
      outline: none;
      transition: border-color .2s;
    }
    .form-field input:focus,
    .form-field textarea:focus { border-color: var(--green-dark); }
    .form-field textarea { resize: none; height: 90px; }
    .btn-send {
      display: inline-block;
      padding: 13px 40px;
      background: var(--pink-dark);
      color: var(--black);
      border-radius: var(--pill);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-send:hover { background: var(--pink); transform: translateY(-2px); }
    .contact__wa {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      font-size: 13.5px;
      font-weight: 600;
      color: #25D366;
      transition: opacity .2s;
      cursor: pointer;
    }
    .contact__wa:hover { color: var(--pink-deep); }
    .contact__wa svg { width: 20px; height: 20px; fill: #25D366; flex-shrink: 0; transition: fill .2s; }
    .contact__wa:hover svg { fill: var(--pink-deep); }

    /* Fotos contacto */
    .contact__photos { position: relative; height: 440px; }

    /* (newsletter .newsletter__* removido del home — código muerto borrado 2026-06-29; mirroreado en el backup) */
    /* (footer "simple" .footer/.footer__* removido — código muerto; el footer en vivo es .footer-full, PHP/inline) */

    /* Scroll offset para navbar sticky */
    #sobre-mi, #servicios, #testimonios, #contacto {
      scroll-margin-top: 112px;
    }

    /* ══════════════════════════════════════════════════════
       MOBILE STICKY WHATSAPP BAR
    ══════════════════════════════════════════════════════ */
    .sticky-wa {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 199;
      padding: 10px 20px 24px;
      background: linear-gradient(0deg, rgba(255,255,255,.98) 70%, rgba(255,255,255,0) 100%);
      pointer-events: none;
    }
    .sticky-wa a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      border-radius: var(--pill);
      padding: 15px 20px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .3px;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      pointer-events: all;
      transition: opacity .2s;
    }
    .sticky-wa a:hover { opacity: .9; }
    .sticky-wa svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

    /* ══════════════════════════════════════════════════════
       FLOATING BUTTONS
    ══════════════════════════════════════════════════════ */
    .floating {
      position: fixed;
      bottom: 28px; right: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 200;
    }
    .float-btn {
      width: 50px; height: 50px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(0,0,0,.22);
      transition: transform .2s;
      cursor: pointer;
    }
    .float-btn:hover { transform: scale(1.1); }
    .float-btn--wa { background: #25D366; }
    .float-btn--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .float-btn svg { width: 22px; height: 22px; fill: #fff; }

    /* ══════════════════════════════════════════════════════
       MARQUEE STRIP
    ══════════════════════════════════════════════════════ */
    .marquee-strip {
      background: var(--charcoal);
      overflow: hidden;
      padding: 13px 0;
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 26s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      display: flex; align-items: center; gap: 20px;
      padding: 0 36px;
      font-size: 10.5px; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(255,255,255,.65);
      white-space: nowrap;
    }
    .marquee-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--green); flex-shrink: 0;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation: none; }
    }

    /* ══════════════════════════════════════════════════════
       PROCESO — "Así trabajo con vos"
    ══════════════════════════════════════════════════════ */
    .process {
      padding: 104px 72px 120px;
      background: var(--white);
    }
    .process__inner { max-width: 1100px; margin: 0 auto; }
    .process__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      position: relative;
    }
    .process__steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(33.3% - 32px);
      right: calc(33.3% - 32px);
      height: 1px;
      background: linear-gradient(90deg, var(--green-light), var(--pink), var(--green-light));
      pointer-events: none;
    }
    .process-step { text-align: center; padding: 0 16px; }
    .process-step__num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--cream);
      border: 2px solid var(--green-light);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 28px;
      font-family: var(--f-display);
      font-size: 26px; font-weight: 700;
      color: var(--green-dark);
      position: relative; z-index: 1;
      transition: background .3s ease, transform .3s ease, border-color .3s;
    }
    .process-step:hover .process-step__num {
      background: var(--green);
      border-color: var(--green);
      transform: scale(1.08);
    }
    .process-step__title {
      font-family: var(--f-display);
      font-size: 22px; font-weight: 600;
      color: var(--black); margin-bottom: 14px; line-height: 1.2;
    }
    .process-step__desc {
      font-size: 14px; font-weight: 300;
      color: var(--text); line-height: 1.8;
    }

    /* ══════════════════════════════════════════════════════
       FAQ ACCORDION
    ══════════════════════════════════════════════════════ */
    .faq {
      padding: 104px 72px 120px;
      background: var(--green-bg);
    }
    .faq__inner { max-width: 800px; margin: 0 auto; }
    .faq-list { margin-top: 64px; }
    .faq-item { border-bottom: 1px solid rgba(90,150,64,.16); }
    .faq-item:first-child { border-top: 1px solid rgba(90,150,64,.16); }
    .faq-btn {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 22px 0;
      font-family: var(--f-body);
      font-size: 15.5px; font-weight: 500;
      color: var(--black);
      background: none; border: none;
      cursor: pointer; text-align: left; line-height: 1.4;
      transition: color .2s;
    }
    .faq-btn:hover { color: var(--green-dark); }
    .faq-icon {
      width: 26px; height: 26px; border-radius: 50%;
      border: 1.5px solid rgba(0,0,0,.16);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .25s, border-color .25s;
    }
    .faq-icon svg { width: 12px; height: 12px; stroke: var(--black); transition: transform .32s cubic-bezier(.4,0,.2,1); }
    .faq-item.is-open .faq-icon {
      background: var(--green-dark); border-color: var(--green-dark);
    }
    .faq-item.is-open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
    .faq-item.is-open .faq-btn { color: var(--green-dark); }
    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
    }
    .faq-answer__inner {
      padding: 0 48px 24px 0;
      font-size: 14.5px; font-weight: 300;
      color: var(--text); line-height: 1.9;
    }

    /* Press feedback: los botones Elementor lo manejan vía .elementor-button:active (bridge).
       .btn-ig es un <a> plano (no Elementor), así que necesita el suyo propio. */
    .btn-ig:active { transform: scale(.97) !important; }

    /* ══════════════════════════════════════════════════════
       MOBILE NAV DRAWER
    ══════════════════════════════════════════════════════ */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: rgba(255,255,255,.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,.06);
      z-index: 98;
      padding: 8px 28px 32px;
      transform: translateY(-105%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      box-shadow: 0 12px 40px rgba(0,0,0,.08);
    }
    .nav-drawer.is-open { transform: translateY(0); }
    .drawer__links { list-style: none; margin-bottom: 20px; }
    .drawer__links li a {
      display: block;
      padding: 15px 0;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .4px;
      color: var(--black);
      border-bottom: 1px solid rgba(0,0,0,.05);
      transition: color .15s, padding-left .15s;
    }
    .drawer__links li:last-child a { border-bottom: none; }
    .drawer__links li a:hover { color: var(--green-deep); padding-left: 6px; }
    .drawer__cta {
      display: block;
      text-align: center;
      padding: 15px 24px;
      background: var(--black);
      color: var(--white);
      border-radius: var(--pill);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      transition: background .2s;
      margin-bottom: 20px;
    }
    .drawer__cta:hover { background: #333; }
    .drawer__socials { display: flex; gap: 12px; justify-content: center; }
    .drawer__social-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s, background .2s;
    }
    .drawer__social-btn:hover { border-color: var(--green-dark); background: var(--pink-bg); }
    .drawer__social-btn svg { width: 15px; height: 15px; fill: var(--text); }

    /* ══════════════════════════════════════════════════════
       FOOTER COMPLETO
    ══════════════════════════════════════════════════════ */
    .footer-full {
      background: var(--cream);
      border-top: 2px solid var(--green-light);
    }
    .footer-full__main { padding: 72px 72px 60px; }
    .footer-full__inner {
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1.4fr;
      gap: 64px;
    }
    .footer-col__title {
      font-size: 10px; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--green-dark); margin-bottom: 20px;
    }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .footer-logo__badge { width: 44px; height: 44px; flex-shrink: 0; }
    .footer-logo__name {
      display: block;
      font-family: var(--f-display);
      font-size: 18px; font-weight: 600; color: var(--black);
    }
    .footer-logo__sub {
      display: block; font-size: 9px;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--green-dark); margin-top: 2px;
    }
    .footer-bio {
      font-size: 13.5px; font-weight: 300;
      color: var(--text); line-height: 1.8;
      margin-bottom: 24px; max-width: 310px;
    }
    .footer-social-row { display: flex; gap: 10px; }
    .footer-social-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid rgba(0,0,0,.12);
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s, background .2s; cursor: pointer;
    }
    .footer-social-btn:hover { border-color: var(--green-dark); background: var(--pink-bg); }
    .footer-social-btn svg { width: 14px; height: 14px; fill: var(--text); }
    .footer-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-nav a {
      font-size: 14px; font-weight: 400;
      color: var(--text); transition: color .2s;
    }
    .footer-nav a:hover { color: var(--green-deep); }
    .footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .footer-contact-item {
      display: flex; align-items: flex-start;
      gap: 10px; font-size: 13.5px; color: var(--text); line-height: 1.5;
    }
    .footer-contact-item svg {
      width: 14px; height: 14px; flex-shrink: 0;
      margin-top: 2px; fill: var(--green-dark);
    }
    .footer-contact-item a { color: var(--text); transition: color .2s; }
    .footer-contact-item a:hover { color: var(--green-deep); }
    .footer-full__bottom { border-top: 1px solid rgba(0,0,0,.06); }
    .footer-full__bottom-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 20px 72px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 11.5px; color: var(--muted);
    }

    /* ══════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════ */
    @media (max-width: 960px) {
      .sticky-wa { display: block; }
      .floating { display: none; }
      .nav-drawer { display: block; }
      /* Espacio para la sticky bar */
      .footer-full { padding-bottom: 80px; }

      .navbar { padding: 0 24px; height: 80px; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }

      .hero { padding: 56px 24px 64px; min-height: auto; }
      .hero__inner { grid-template-columns: 1fr; gap: 40px; }
      .hero__photo { order: -1; }
      .hero__arch { width: 220px; height: 290px; border-radius: 110px 110px 20px 20px; }
      .hero__chip { display: none; }
      .hero__p { max-width: 100%; }

      .trust-bar { padding: 28px 24px; }
      .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .trust-stat {
        border-right: none;
        border-bottom: 1px solid rgba(90,150,64,.14);
        padding: 12px 8px;
      }
      .trust-stat:nth-child(3),
      .trust-stat:nth-child(4) { border-bottom: none; }

      .about { padding: 72px 24px; }
      .about__inner { grid-template-columns: 1fr; gap: 48px; }
      .about__photos { height: 320px; }
      .photo-arch--main { width: 200px; height: 280px; border-radius: 100px 100px 0 0; right: 10px; }
      .photo-arch--back { width: 160px; height: 200px; }

      .quote-section { padding: 80px 24px 72px; }

      .services { padding: 72px 24px 80px; }
      .services__grid { grid-template-columns: 1fr; gap: 24px; }
      .service-card__img { aspect-ratio: 4/3; border-radius: 50% 50% 12px 12px / 18% 18% 12px 12px; }

      .testimonials { padding: 72px 24px; }
      .testimonial-card { padding: 32px 24px; }

      .instagram { padding: 72px 24px; }
      .instagram__grid { grid-template-columns: 1fr; }

      .contact { padding: 72px 24px; }
      .contact__inner { grid-template-columns: 1fr; gap: 48px; }
      .contact__photos { display: none; }

      .footer-full__main { padding: 48px 24px 40px; }
      .footer-full__inner { grid-template-columns: 1fr; gap: 36px; }
      .footer-bio { max-width: 100%; }
      .footer-full__bottom-inner { flex-direction: column; gap: 6px; text-align: center; padding: 16px 24px; }

      .process { padding: 64px 24px 72px; }
      .process__steps { grid-template-columns: 1fr; gap: 28px; }
      .process__steps::before { display: none; }

      .faq { padding: 64px 24px 72px; }
      .faq-answer__inner { padding-right: 0; }
    }

    /* ══════════════════════════════════════════════════════
       TABLET (601–960px) — layouts de 2 columnas
    ══════════════════════════════════════════════════════ */
    @media (min-width: 601px) and (max-width: 960px) {
      .navbar { padding: 0 40px; }

      /* Hero: mantiene 2 columnas pero más compacto */
      .hero { padding: 60px 40px 80px; }
      .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 32px; }
      .hero__photo { order: 0; }
      .hero__arch { width: 270px; height: 350px; border-radius: 135px 135px 20px 20px; }
      .hero__chip { display: block; font-size: 10px; padding: 6px 12px; }
      .hero__chip--1 { left: -22px; }
      .hero__chip--2 { right: -14px; }
      .hero__chip--3 { right: -6px; }
      .hero__chip--4 { left: -22px; }

      /* Trust bar: 4 columnas */
      .trust-bar { padding: 28px 40px; }
      .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
      .trust-stat { border-right: 1px solid rgba(90,150,64,.18); border-bottom: none; padding: 8px 12px; }
      .trust-stat:nth-child(3),
      .trust-stat:nth-child(4) { border-bottom: none; }
      .trust-stat:last-child { border-right: none; }

      /* Sobre mí: 2 columnas */
      .about { padding: 80px 40px; }
      .about__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
      .about__photos { height: 360px; }
      .photo-arch--main { width: 220px; height: 300px; border-radius: 110px 110px 0 0; right: 10px; }
      .photo-arch--back { width: 165px; height: 215px; }

      .quote-section { padding: 88px 40px 80px; }

      /* Servicios: 2 columnas en tablet */
      .services { padding: 72px 40px 80px; }
      .services__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

      .testimonials { padding: 72px 40px; }
      .testimonial-card { padding: 40px 44px; }

      /* Instagram: 2 columnas */
      .instagram { padding: 72px 40px; }
      .instagram__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

      /* Contacto: 2 columnas */
      .contact { padding: 72px 40px; }
      .contact__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
      .contact__photos { display: block; height: 380px; }


      /* Footer: 2 columnas */
      .footer-full__main { padding: 56px 40px 48px; }
      .footer-full__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-col--brand { grid-column: 1 / -1; }
      .footer-bio { max-width: 100%; }
      .footer-full__bottom-inner { flex-direction: row; padding: 20px 40px; }

      /* Proceso y FAQ en tablet */
      .process { padding: 80px 40px 96px; }
      .process__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
      .process__steps::before { display: block; }
      .faq { padding: 80px 40px 96px; }
    }

    /* ══════════════════════════════════════════════════════
       DESKTOP COMPACTO (961–1180px) — navbar sin wrap
    ══════════════════════════════════════════════════════ */
    @media (min-width: 961px) and (max-width: 1180px) {
      .navbar { padding: 0 40px; height: 96px; }
      .nav-links { gap: 28px; }
      .nav-links a { font-size: 10.5px; letter-spacing: 1.4px; }
      .hero { padding: 64px 40px 80px; }
    }

    /* ══════════════════════════════════════════════════════
       PHONE PURO (≤480px) — ajustes extra
    ══════════════════════════════════════════════════════ */
    @media (max-width: 480px) {
      .hero { padding: 40px 20px 52px; }
      .trust-bar { padding: 24px 20px; }
      .about { padding: 56px 20px; }
      .quote-section { padding: 64px 20px 56px; }
      .services { padding: 56px 20px 64px; }
      .services__grid { gap: 20px; }
      .process { padding: 56px 20px 64px; }
      .testimonials { padding: 56px 20px; }
      .testimonial-card { padding: 28px 20px; }
      .instagram { padding: 56px 20px; }
      .contact { padding: 56px 20px; }
      .faq { padding: 56px 20px 64px; }
      .footer-full__main { padding: 40px 20px 32px; }
      .section-head { margin-bottom: 48px; }
    }

    /* ── PÁGINAS LEGALES (Privacidad, etc.) — columna de texto prolija ── */
    .vk-legal { max-width: 760px; margin: 0 auto; padding: 132px 26px 96px; font-family: var(--f-body); color: var(--text); line-height: 1.8; }
    .vk-legal h1 { font-family: var(--f-display); font-size: 46px; font-weight: 700; color: var(--black); line-height: 1.1; margin-bottom: 6px; }
    .vk-legal__date { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
    .vk-legal h2 { font-family: var(--f-display); font-size: 27px; font-weight: 600; color: var(--green-dark); margin: 38px 0 12px; }
    .vk-legal p, .vk-legal li { font-size: 16px; margin-bottom: 12px; }
    .vk-legal ul { padding-left: 22px; margin-bottom: 14px; }
    .vk-legal a { color: var(--green-dark); text-decoration: underline; }
    .vk-legal strong { color: var(--black); }
    @media (max-width: 880px){ .vk-legal { padding-top: 116px; } .vk-legal h1 { font-size: 34px; } .vk-legal h2 { font-size: 22px; } }
