/* Versión blanco y negro, Calibri y sin cards: secciones limpias, líneas sutiles y aire */
    *{ box-sizing:border-box; margin:0; padding:0; }
    html{ scroll-behavior:smooth; }

    :root{
      --bg:#ffffff;
      --ink:#0b0b0b;
      --muted:#5f5f5f;
      --line:rgba(0,0,0,.14);
      --line-strong:rgba(0,0,0,.32);
      --maxw:1160px;
    }

    body{
      font-family: Calibri, "Segoe UI", Arial, sans-serif;
      background:#ffffff;
      color:var(--ink);
      line-height:1.5;
    }

    img{ max-width:100%; }
    a{ color:inherit; }
    button, input, textarea, select{ font-family:inherit; }

    .page{
      width:min(var(--maxw), calc(100% - 42px));
      margin:0 auto;
    }

    .site-header{
      padding:26px 0 20px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:22px;
      border-bottom:1px solid var(--line);
    }

    .logo-link{
      display:inline-flex;
      align-items:center;
      text-decoration:none;
    }

    .brand-logo{
      width:clamp(190px, 24vw, 310px);
      height:auto;
      display:block;
      filter:grayscale(1) contrast(1.05);
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .header-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid var(--line-strong);
      background:#ffffff;
      color:var(--ink);
      text-decoration:none;
      text-transform:uppercase;
      letter-spacing:.12em;
      font-weight:800;
      font-size:16px;
      transition:background .25s ease, color .25s ease, transform .25s ease;
    }

    .header-pill:hover{
      background:#111111;
      color:#ffffff;
      transform:translateY(-2px);
    }

    .section{
      margin:0;
      padding:64px 0;
      border-top:1px solid var(--line);
    }

    main .section:first-child{
      border-top:none;
    }

    .panel{
      background:transparent;
      border:none;
      border-radius:0;
      box-shadow:none;
      overflow:visible;
    }

    .hero{
      position:relative;
      padding:70px 0 76px;
      display:grid;
      grid-template-columns:minmax(0, 1.02fr) minmax(360px, .98fr);
      gap:54px;
      align-items:center;
    }

    .hero::before{ display:none; }

    .eyebrow,
    .section-kicker,
    .offer-badge,
    .carousel-title{
      color:var(--ink);
      text-transform:uppercase;
      letter-spacing:.14em;
      font-size:clamp(14px, 1.35vw, 16px);
      font-weight:900;
    }

    .eyebrow{ margin-bottom:15px; }

    h1{
      max-width:720px;
      font-size:clamp(38px, 5vw, 52px);
      line-height:.98;
      letter-spacing:-.055em;
      font-weight:900;
      color:var(--ink);
    }

    h2{
      font-size:clamp(34px, 4vw, 36px);
      line-height:1.05;
      letter-spacing:-.04em;
      color:var(--ink);
      font-weight:900;
    }

    h3{
      color:var(--ink);
      font-size:clamp(22px, 2.1vw, 25px);
      line-height:1.18;
      margin-bottom:12px;
      font-weight:900;
    }

    h4{ color:var(--ink); }

    p,
    li,
    .hero-lead,
    .section-copy,
    .offer p,
    .mini-list,
    .scope-note span,
    .floating-note span,
    .footer-wrap,
    .footer-notes,
    .footer-legal,
    .footer-copy{
      color:var(--muted);
    }

    .hero-lead{
      max-width:620px;
      margin-top:22px;
      font-size:clamp(16px, 1.45vw, 19px);
    }

    .cta-row{
      margin-top:28px;
      display:flex;
      align-items:center;
      gap:13px;
      flex-wrap:wrap;
    }

    .btn{
      display:inline-flex;
      min-height:50px;
      align-items:center;
      justify-content:center;
      padding:0 28px;
      border-radius:999px;
      border:1.5px solid var(--line-strong);
      background:#fff;
      color:var(--ink);
      text-decoration:none;
      text-transform:uppercase;
      letter-spacing:.13em;
      font-weight:900;
      font-size:16px;
      transition:transform .25s ease, background .25s ease, color .25s ease;
      white-space:nowrap;
    }

    .btn.primary{
      background:#111111;
      color:#ffffff;
      border-color:#111111;
    }

    .btn:hover{
      transform:translateY(-3px);
    }

    .btn:not(.primary):hover{
      background:#111111;
      color:#ffffff;
    }

    .scope-note{
      margin-top:30px;
      padding-top:18px;
      border-top:1px solid var(--line);
      max-width:620px;
    }

    .scope-note strong{
      display:block;
      margin-bottom:7px;
      font-size:12px;
      letter-spacing:.16em;
      text-transform:uppercase;
      color:var(--ink);
      font-weight:900;
    }

    .scope-note span{
      display:block;
      font-size:15px;
      line-height:1.55;
    }

    .hero-visual{
      position:relative;
      min-height:430px;
      z-index:1;
    }

    .visual-card{
      position:absolute;
      border-radius:28px;
      overflow:hidden;
      background:transparent;
      border:none;
      box-shadow:none;
    }

    .visual-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .visual-main{
      inset:30px 10px 38px 92px;
    }

    .visual-small-a{
      width:180px;
      height:180px;
      left:0;
      top:0;
      border-radius:32px;
      transform:rotate(-5deg);
    }

    .visual-small-b{
      width:172px;
      height:172px;
      right:0;
      bottom:0;
      border-radius:50%;
      transform:rotate(5deg);
    }

    .floating-note{
      position:absolute;
      left:18px;
      bottom:28px;
      width:min(320px, 82%);
      padding:18px 22px 18px;
      border-radius:24px;
      background:#ffffff;
      border:1px solid rgba(0,0,0,.16);
      box-shadow:0 12px 28px rgba(0,0,0,.10);
    }

    .floating-note strong{
      display:block;
      color:var(--ink);
      font-size:clamp(13px, 1.2vw, 15px);
      letter-spacing:.13em;
      text-transform:uppercase;
      margin-bottom:8px;
      font-weight:900;
    }

    .floating-note span{
      display:block;
      color:var(--muted);
      font-size:clamp(15px, 1.3vw, 16px);
      line-height:1.5;
    }

    .section-head{
      width:min(760px, 100%);
      margin:0 auto 34px;
      text-align:center;
    }

    .section-kicker{
      margin-bottom:12px;
    }

    .section-copy{
      margin-top:12px;
      font-size:16px;
    }

    .offer{
      display:grid;
      grid-template-columns:minmax(300px, .85fr) minmax(0, 1.15fr);
      gap:54px;
      align-items:center;
      padding:64px 0;
      background:transparent;
    }

    .offer-image{
      display:block;
      position:relative;
      border-radius:28px;
      overflow:hidden;
      border:none;
      box-shadow:none;
      min-height:320px;
      background:transparent;
    }

    .offer-image img{
      width:100%;
      height:100%;
      min-height:320px;
      object-fit:cover;
      display:block;
    }

    .offer-badge{
      display:block;
      margin-bottom:10px;
    }

    .offer p{
      margin-top:15px;
      font-size:16px;
    }

    .mini-list{
      margin-top:18px;
      padding-left:20px;
      font-size:15px;
      line-height:1.65;
    }

    .mini-list li{ margin:3px 0; }
    .mini-list li::marker{ color:var(--muted); }

    .carousel-panel{
      padding:54px 0 58px;
    }

    .carousel-title{
      text-align:center;
      margin-bottom:26px;
    }

    .carousel{
      display:flex;
      align-items:center;
      gap:14px;
      max-width:100%;
      margin:0 auto;
    }

    .car-btn{
      width:44px;
      height:44px;
      border-radius:50%;
      border:1px solid var(--line-strong);
      background:#fff;
      color:var(--ink);
      cursor:pointer;
      font-size:22px;
      line-height:1;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      transition:transform .25s ease, background .25s ease, color .25s ease;
    }

    .car-btn:hover{
      transform:translateY(-2px);
      background:#111111;
      color:#ffffff;
    }

    .track{
      flex:1;
      overflow-x:hidden;
      overflow-y:visible;
      padding:8px 0 16px;
    }

    .track-inner{
      display:flex;
      gap:18px;
      transition:transform .5s ease;
      will-change:transform;
    }

    .avatar{
      width:122px;
      height:122px;
      border-radius:50%;
      border:none;
      overflow:hidden;
      flex:0 0 auto;
      background:#fff;
      display:block;
      text-decoration:none;
      cursor:pointer;
      transition:transform .28s ease, opacity .28s ease;
    }

    .avatar:hover{
      transform:translateY(-5px) scale(1.025);
      opacity:.88;
    }

    .avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:0;
    }

    .info-card{
      padding:0 28px;
      border:none;
      background:transparent;
      box-shadow:none;
      border-radius:0;
      min-height:100%;
    }

    .grid-3 .info-card:not(:last-child){
      border-right:1px solid var(--line);
    }

    .info-card .number{ display:none; }

    .info-card p{
      color:var(--muted);
      font-size:15px;
    }

    .service-card{
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
    }

    .service-link{
      color:var(--ink);
      text-decoration:none;
      border-bottom:2px solid rgba(0,0,0,.22);
      transition:border-color .25s ease, opacity .25s ease;
    }

    .service-link:hover{
      border-bottom-color:var(--ink);
      opacity:.72;
    }

    .service-link:focus-visible{
      outline:2px solid var(--ink);
      outline-offset:4px;
      border-bottom-color:var(--ink);
    }


    .steps{ counter-reset:steps; }

    .steps .info-card{ position:relative; }

    .steps .info-card::before{
      counter-increment:steps;
      content:counter(steps);
      display:block;
      color:var(--ink);
      font-size:42px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.06em;
      margin-bottom:14px;
    }

    .instagram-panel{
      padding:64px 0;
    }

    .footer{
      margin-top:0;
      padding:46px 0 38px;
      background:#fff;
      border-top:1px solid rgba(0,0,0,.22);
      font-size:13px;
    }

    .footer-wrap{
      width:min(var(--maxw), calc(100% - 42px));
      margin:0 auto;
      color:var(--muted);
    }

    .footer-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
    }

    .footer-block h4{
      color:var(--ink);
      font-weight:800;
      margin-bottom:8px;
    }

    .footer-block a{
      color:var(--ink);
      text-decoration:none;
    }

    .footer-sep{
      margin:22px auto;
      height:1px;
      border:none;
      background:linear-gradient(90deg, transparent, var(--line), transparent);
    }

    .footer-notes{
      font-size:12px;
      color:rgba(43,43,43,.85);
      line-height:1.55;
    }

    .footer-legal{
      font-size:11px;
      color:rgba(43,43,43,.7);
      line-height:1.5;
      margin-top:18px;
    }

    .footer-copy{
      margin-top:14px;
      text-align:center;
      font-size:11px;
      color:rgba(43,43,43,.6);
    }

    .wa-float{
      position:fixed;
      right:18px;
      bottom:18px;
      width:58px;
      height:58px;
      border-radius:50%;
      z-index:9999;
      display:block;
      filter:drop-shadow(0 14px 22px rgba(0,0,0,.18));
      transition:transform .25s ease;
    }

    .wa-float:hover{ transform:translateY(-3px) scale(1.02); }

    .wa-float img{
      width:58px;
      height:58px;
      display:block;
      filter:grayscale(1) contrast(1.25);
    }

    .js .reveal,
    .js .reveal-left,
    .js .reveal-right,
    .js .reveal-zoom{
      opacity:0;
      transition:opacity .75s ease, transform .75s ease;
    }

    .js .reveal{ transform:translateY(22px); }
    .js .reveal-left{ transform:translateX(-26px); }
    .js .reveal-right{ transform:translateX(26px); }
    .js .reveal-zoom{ transform:scale(.96); }
    .js .is-visible{ opacity:1; transform:none; }

    .delay-1{ transition-delay:.08s; }
    .delay-2{ transition-delay:.16s; }
    .delay-3{ transition-delay:.24s; }
    .delay-4{ transition-delay:.32s; }

    @media(prefers-reduced-motion:reduce){
      html{ scroll-behavior:auto; }
      *, *::before, *::after{
        transition:none !important;
        animation:none !important;
      }
      .js .reveal,
      .js .reveal-left,
      .js .reveal-right,
      .js .reveal-zoom{
        opacity:1;
        transform:none;
      }
    }

    @media(max-width:920px){
      .site-header{
        align-items:center;
        flex-direction:column;
        text-align:center;
      }

      .header-actions{ justify-content:center; }

      .hero{
        grid-template-columns:1fr;
        padding:52px 0 58px;
      }

      .hero-visual{ min-height:370px; }
      .visual-main{ inset:34px 8px 34px 70px; }
      .offer{ grid-template-columns:1fr; gap:34px; }
      .grid-3{ grid-template-columns:1fr; gap:24px; }

      .grid-3 .info-card{
        border-right:none !important;
        border-bottom:1px solid var(--line);
        padding:0 0 24px;
      }

      .grid-3 .info-card:last-child{
        border-bottom:none;
        padding-bottom:0;
      }
    }

    @media(max-width:680px){
      .page{ width:min(100% - 26px, var(--maxw)); }
      .brand-logo{ width:min(280px, 82vw); }

      .header-pill{
        min-height:40px;
        padding:0 14px;
        font-size:10px;
      }

      .section{ padding:48px 0; }
      .hero{ padding:46px 0 50px; }

      h1{
        font-size:clamp(38px, 12vw, 52px);
        letter-spacing:-.05em;
      }

      h2{
        font-size:clamp(34px, 10vw, 44px);
      }

      h3{
        font-size:23px;
      }

      .eyebrow,
      .section-kicker,
      .offer-badge,
      .carousel-title{
        font-size:14px;
        letter-spacing:.12em;
      }

      .hero-lead{ font-size:16px; }
      .btn{ width:100%; min-height:50px; }
      .hero-visual{ min-height:310px; }
      .visual-main{ inset:44px 0 26px 56px; }
      .visual-small-a{ width:126px; height:126px; }
      .visual-small-b{ width:120px; height:120px; }

      .floating-note{
        left:6px;
        bottom:14px;
        width:250px;
        padding:15px 16px 15px;
        border-radius:22px;
      }

      .offer,
      .carousel-panel,
      .instagram-panel{
        padding:48px 0;
      }

      .avatar{ width:94px; height:94px; }
      .car-btn{ width:40px; height:40px; }

      .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
      }
    }
/* =========================================================
   FIX FINAL RESPONSIVE INDEX BRAVÍA — 2026-06-12
   Refuerza móvil y evita desbordes horizontales.
========================================================= */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

img,
picture,
video,
canvas,
svg,
iframe{
  max-width:100%;
  height:auto;
}

button,
input,
select,
textarea{
  max-width:100%;
}

.page,
.site-header,
.hero,
.hero-copy,
.hero-visual,
.offer,
.carousel,
.track,
.footer-wrap{
  min-width:0;
}

@media screen and (max-width:680px){
  .page,
  .footer-wrap{
    width:min(100% - 26px, var(--maxw)) !important;
  }

  .site-header{
    gap:16px !important;
  }

  .header-actions,
  .cta-row,
  .footer-cta{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
  }

  .header-pill,
  .btn,
  .footer-btn{
    width:100% !important;
    max-width:100% !important;
    text-align:center !important;
    white-space:normal !important;
    line-height:1.15 !important;
  }

  .floating-note{
    max-width:100% !important;
  }

  .offer-image,
  .offer-image img{
    min-height:240px !important;
  }

  .footer-grid{
    grid-template-columns:1fr !important;
  }
}

@media screen and (max-width:420px){
  h1{
    font-size:clamp(34px, 12vw, 44px) !important;
  }

  h2{
    font-size:clamp(30px, 11vw, 38px) !important;
  }

  .hero-visual{
    min-height:280px !important;
  }

  .visual-main{
    inset:44px 0 26px 42px !important;
  }

  .floating-note{
    left:0 !important;
    width:min(100%, 260px) !important;
  }
}
