/* ============ TOKENS ============ */
  :root{
    --black:#000000;
    --panel:#0a0a0a;
    --panel-2:#111111;
    --line: rgba(166,166,166,0.16);
    --gold-1:#FDE25F;
    --gold-2:#FFD044;
    --white:#FFFFFF;
    --gray:#A6A6A6;
    --gray-dim: rgba(166,166,166,0.6);
    --radius-lg:18px;
    --radius-md:14px;
    --radius-sm:12px;
    --maxw:1140px;
    --section-pad: 150px;
    --ease: cubic-bezier(.16,.8,.24,1);
  }

  @media (max-width: 780px){
    :root{ --section-pad: 90px; }
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    background:var(--black);
    color:var(--white);
    font-family:'Manrope', sans-serif;
    font-weight:400;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:500;
    line-height:1.12;
    margin:0;
    letter-spacing:-0.01em;
  }
  p{ margin:0; }
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  ul{ list-style:none; margin:0; padding:0; }
  button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }

  ::selection{ background:var(--gold-2); color:#000; }

  .wrap{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 32px;
  }
  @media (max-width:600px){ .wrap{ padding:0 22px; } }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Manrope',sans-serif;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--gold-2);
    margin-bottom:20px;
  }
  .eyebrow::before{
    content:"";
    width:26px; height:1.5px;
    background:linear-gradient(90deg,var(--gold-1),var(--gold-2));
    display:inline-block;
  }

  .grad-text{
    background:linear-gradient(120deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 30px;
    border-radius:100px;
    background:linear-gradient(120deg, var(--gold-1), var(--gold-2));
    color:#0a0a00;
    font-weight:700;
    font-size:14.5px;
    letter-spacing:.01em;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), filter .3s ease;
    box-shadow: 0 8px 24px rgba(253,226,95,0.08);
    will-change:transform;
  }
  .btn:hover{
    transform:translateY(-3px);
    box-shadow: 0 14px 34px rgba(253,226,95,0.22);
    filter:brightness(1.04);
  }
  .btn svg{ width:16px; height:16px; }

  .btn-ghost{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 26px;
    border-radius:100px;
    border:1px solid rgba(255,255,255,0.18);
    color:var(--white);
    font-weight:600;
    font-size:14px;
    transition: border-color .35s ease, background .35s ease;
  }
  .btn-ghost:hover{ border-color:var(--gold-2); background:rgba(255,208,68,0.06); }

  section{ padding: var(--section-pad) 0; position:relative; }

  /* Espaçamentos ajustados: Diferenciais → Operações → Processo → Banner */
  #operacoes{ padding-top: 96px; padding-bottom: 96px; }
  #processo{ padding-top: 96px; padding-bottom: 96px; }
  .banner{ padding-top: 96px; }
  @media (max-width:780px){
    #operacoes{ padding-top: 56px; padding-bottom: 56px; }
    #processo{ padding-top: 56px; padding-bottom: 56px; }
    .banner{ padding-top: 56px; }
  }

  .snap-section{ scroll-margin-top: 90px; }

  @media (prefers-reduced-motion: no-preference){
    .reveal{ opacity:0; transform:translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .reveal.in{ opacity:1; transform:translateY(0); }
  }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
  }

  /* ============ HEADER ============ */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:1000;
    padding:22px 0;
    transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s var(--ease);
  }
  header.scrolled{
    background:rgba(0,0,0,0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding:14px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 32px 0 18px;
    display:grid;
    grid-template-columns: 1fr auto 1fr;
    align-items:center;
    gap:24px;
  }
  @media (max-width:600px){ .header-inner{ padding:0 22px; } }
  .logo{
    display:flex; align-items:center; gap:12px;
    justify-self:start;
    margin-left:0;
  }
  .logo img{ height:58px; width:auto; }

  nav.main-nav{ display:flex; justify-self:center; }
  nav.main-nav ul{ display:flex; align-items:center; gap:36px; }
  nav.main-nav a{
    font-size:13.5px;
    font-weight:600;
    letter-spacing:.02em;
    color:var(--gray);
    position:relative;
    padding:6px 0;
    transition: color .3s ease;
  }
  nav.main-nav a::after{
    content:"";
    position:absolute; left:0; bottom:0;
    width:0; height:1px;
    background:linear-gradient(90deg,var(--gold-1),var(--gold-2));
    transition: width .35s var(--ease);
  }
  nav.main-nav a:hover{ color:var(--white); }
  nav.main-nav a:hover::after{ width:100%; }

  .burger{
    display:none;
    width:26px; height:18px;
    position:relative;
    flex-direction:column;
    justify-content:space-between;
    justify-self:end;
    grid-column:3;
  }
  .burger span{
    display:block; height:1.5px; width:100%;
    background:var(--white); border-radius:2px;
    transition: transform .35s ease, opacity .3s ease;
  }
  .burger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
  .burger.open span:nth-child(2){ opacity:0; }
  .burger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

  .nav-close{
    display:none;
    position:absolute; top:28px; right:28px;
    width:26px; height:26px;
    align-items:center; justify-content:center;
  }
  .nav-close span{
    position:absolute;
    width:24px; height:1.6px;
    background:var(--white); border-radius:2px;
  }
  .nav-close span:nth-child(1){ transform:rotate(45deg); }
  .nav-close span:nth-child(2){ transform:rotate(-45deg); }
  .nav-close:hover span{ background:var(--gold-2); }

  .nav-overlay{
    position:fixed; inset:0;
    background:rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    opacity:0; pointer-events:none;
    transition: opacity .4s ease;
    z-index:998;
  }
  .nav-overlay.open{ opacity:1; pointer-events:auto; }

  @media (max-width:900px){
    nav.main-nav{
      position:fixed; top:0; right:0; bottom:0;
      width:min(320px, 78vw);
      background:#060606;
      border-left:1px solid var(--line);
      flex-direction:column;
      padding: 100px 34px 40px;
      transform:translateX(100%);
      transition: transform .5s var(--ease);
      z-index:999;
    }
    nav.main-nav.open{ transform:translateX(0); }
    nav.main-nav ul{ flex-direction:column; align-items:flex-start; gap:26px; }
    nav.main-nav a{ font-size:16px; }
    .burger{ display:flex; }
    .nav-close{ display:flex; }
  }

  /* ============ HERO ============ */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:stretch;
    background:#000;
    overflow:hidden;
  }
  .hero-grid{
    width:100%;
    display:grid;
    grid-template-columns: 1.05fr 1fr;
    min-height:100vh;
  }
  .hero-left{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding: 160px 60px 120px clamp(32px, 6vw, 96px);
    background:
      radial-gradient(900px 500px at -10% 20%, rgba(255,208,68,0.06), transparent 60%),
      #050505;
    z-index:2;
  }
  .hero-right{
    position:relative;
    overflow:hidden;
  }
  .hero-right img{
    width:100%; height:100%;
    object-fit:cover;
    object-position: right center;
    position:absolute; inset:0;
    transform:none;
  }
  .hero-right::before{
    content:"";
    position:absolute; inset:0;
    background:
      linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.12) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 16%);
    z-index:1;
  }
  .hero-title{
    font-size:clamp(38px, 4.6vw, 62px);
    color:var(--white);
    max-width:620px;
    margin-bottom:26px;
  }
  .hero-title em{
    font-style:italic;
    font-weight:400;
  }
  .hero-desc{
    font-size:17px;
    color:var(--gray);
    max-width:460px;
    margin-bottom:44px;
  }
  .hero-divider{
    width:64px;
    height:2px;
    border-radius:2px;
    background:linear-gradient(90deg,var(--gold-1),var(--gold-2));
  }
  .hero-cta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;
    margin-bottom:44px;
  }

  /* ---- header CTA + small button ---- */
  .btn-sm{ padding:11px 20px; font-size:13px; }
  .btn-sm svg{ width:15px; height:15px; }
  .header-cta{ grid-column:3; justify-self:end; }
  .nav-cta-mobile{ display:none; }
  @media (max-width:900px){
    .header-cta{ display:none; }
    .nav-cta-mobile{ display:block; width:100%; margin-top:16px; }
    nav.main-nav .nav-cta-mobile a.btn-sm{
      display:flex;
      width:100%;
      justify-content:center;
      align-items:center;
      text-align:center;
      gap:8px;
      padding:15px 20px;
      font-size:14.5px;
      font-weight:700;
      color:#0a0a00;
    }
    nav.main-nav .nav-cta-mobile a.btn-sm::after{ display:none; }
    nav.main-nav .nav-cta-mobile a.btn-sm:hover{ color:#0a0a00; }
  }

  /* ---- operations CTA ---- */
  .ops-cta{
    margin-top:56px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:22px;
    text-align:center;
  }
  .ops-cta p{
    color:var(--gray);
    font-size:16px;
    max-width:520px;
  }

  @media (max-width: 980px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-left{ padding:150px 26px 60px; order:2; }
    .hero-left::after{ display:none; }
    .hero-right{ height:52vh; order:1; }
    .hero-right img{ transform:scale(1.02); }
    .hero-tag{ display:none; }
    .hero{ min-height:auto; }
  }

  /* ============ NUMBERS ============ */
  .numbers{
    padding: 90px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .numbers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--line);
    border-radius:var(--radius-lg);
    overflow:hidden;
  }
  .num-card{
    background:#040404;
    padding:40px 30px;
    display:flex;
    flex-direction:column;
    gap:14px;
    transition: background .4s ease;
  }
  .num-card:hover{ background:#0a0a0a; }
  .num-card .figure{
    font-family:'Fraunces',serif;
    font-size:clamp(30px, 3vw, 40px);
    font-weight:500;
  }
  .num-card .cap{
    font-size:13.5px;
    color:var(--gray);
    line-height:1.5;
  }
  @media (max-width:900px){
    .numbers-grid{ grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:560px){
    .numbers-grid{ grid-template-columns:1fr; }
  }

  /* ============ ABOUT ============ */
  .about-grid{
    display:grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap:64px;
    align-items:center;
  }
  .about-copy p{
    color:var(--gray);
    font-size:16px;
    margin-top:20px;
    max-width:520px;
  }
  .about-copy h2{ font-size:clamp(30px,3.4vw,44px); max-width:520px; }
  .about-media{
    position:relative;
    border-radius:var(--radius-lg);
    overflow:hidden;
    aspect-ratio: 3/2;
  }
  .about-media img{
    width:100%; height:100%; object-fit:cover;
    object-position: center;
  }
  .about-media::after{
    content:"";
    position:absolute; inset:0;
    box-shadow: inset 0 -80px 90px -40px rgba(0,0,0,0.6);
  }
  .about-media .frame{
    position:absolute; inset:14px;
    border:1px solid rgba(255,208,68,0.28);
    border-radius:calc(var(--radius-lg) - 6px);
    pointer-events:none;
  }
  @media (max-width:920px){
    .about-grid{ grid-template-columns:1fr; gap:44px; }
    .about-media{ order:-1; aspect-ratio:16/10; }
  }

  /* ============ DIFERENCIAIS ============ */
  .section-head{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    margin-bottom:64px;
  }
  .section-head h2{ font-size:clamp(30px,3.4vw,44px); max-width:560px; }
  .section-head .sub{ color:var(--gray); font-size:15px; max-width:460px; text-align:left; }

  .diff-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border-radius:var(--radius-lg);
    overflow:hidden;
  }
  .diff-card{
    background:#040404;
    padding:42px 34px;
    display:flex;
    flex-direction:column;
    gap:20px;
    transition: background .4s ease, box-shadow .4s ease;
    position:relative;
  }
  .diff-card:hover{
    background:#0b0a05;
    box-shadow: inset 0 0 0 1px rgba(255,208,68,0.35);
  }
  .diff-icon{
    width:44px; height:44px;
    border-radius:11px;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,208,68,0.07);
    border:1px solid rgba(255,208,68,0.22);
  }
  .diff-icon svg{ width:22px; height:22px; stroke:url(#goldGrad); }
  .diff-card h3{ font-size:19px; font-weight:600; font-family:'Manrope',sans-serif; }
  .diff-card p{ color:var(--gray); font-size:14.5px; line-height:1.65; }
  @media (max-width:900px){ .diff-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .diff-grid{ grid-template-columns:1fr; } }

  /* ============ OPERATIONS / PORTFOLIO ============ */
  .filters{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:44px;
  }
  .filter-btn{
    padding:10px 20px;
    border-radius:100px;
    border:1px solid rgba(255,255,255,0.15);
    font-size:13px;
    font-weight:600;
    color:var(--gray);
    transition: all .3s ease;
  }
  .filter-btn.active, .filter-btn:hover{
    border-color:transparent;
    background:linear-gradient(120deg,var(--gold-1),var(--gold-2));
    color:#0a0a00;
  }
  .ops-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
  }
  .ops-card{
    border-radius:var(--radius-lg);
    overflow:hidden;
    position:relative;
    background:#0a0a0a;
    border:1px solid var(--line);
    cursor:pointer;
    transition: transform .5s var(--ease), border-color .4s ease;
  }
  .ops-card:hover{ transform:translateY(-6px); border-color:rgba(255,208,68,0.35); }
  .ops-media{
    aspect-ratio: 4/3;
    overflow:hidden;
    position:relative;
  }
  .ops-media img{
    width:100%; height:100%; object-fit:cover;
    transition: transform .8s var(--ease);
  }
  .ops-card:hover .ops-media img{ transform:scale(1.07); }
  .ops-media::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0) 55%);
  }
  .ops-seal{
    position:absolute; top:16px; left:16px; z-index:2;
    font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    padding:7px 12px; border-radius:100px;
    background:rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border:1px solid rgba(255,208,68,0.4);
    color:var(--gold-2);
  }
  .ops-body{ padding:24px; }
  .ops-body h3{ font-size:18px; font-weight:600; font-family:'Manrope',sans-serif; margin-bottom:8px; }
  .ops-body p{ color:var(--gray); font-size:13.5px; margin-bottom:18px; }
  .ops-link{
    display:inline-flex; align-items:center; gap:8px;
    font-size:13px; font-weight:700; color:var(--gold-2);
  }
  .ops-link svg{ width:14px; height:14px; transition: transform .3s ease; }
  .ops-card:hover .ops-link svg{ transform:translateX(4px); }
  @media (max-width:960px){ .ops-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:620px){ .ops-grid{ grid-template-columns:1fr; } }

  /* Lightbox */
  .lightbox{
    position:fixed; inset:0; z-index:2000;
    background:rgba(0,0,0,0.92);
    display:flex; align-items:center; justify-content:center;
    opacity:0; pointer-events:none;
    transition: opacity .4s ease;
    padding:40px;
  }
  .lightbox.open{ opacity:1; pointer-events:all; }
  .lightbox-inner{ max-width:900px; width:100%; }
  .lightbox img{ width:100%; border-radius:var(--radius-lg); max-height:70vh; object-fit:cover; }
  .lightbox-cap{ margin-top:20px; text-align:center; }
  .lightbox-cap h3{ font-size:22px; margin-bottom:8px; }
  .lightbox-cap p{ color:var(--gray); font-size:14px; }
  .lightbox-close{
    position:absolute; top:30px; right:36px;
    width:42px; height:42px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.2);
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:20px;
    transition: border-color .3s ease;
  }
  .lightbox-close:hover{ border-color:var(--gold-2); color:var(--gold-2); }

  /* ============ PROCESS ============ */
  .process-wrap{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:64px;
  }
  .process-sticky{
    position:sticky;
    top:100px;
    align-self:start;
    aspect-ratio: 4 / 3;
    width:100%;
    border-radius:var(--radius-lg);
    overflow:hidden;
    background:#050505;
  }
  .process-sticky img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:center;
  }
  .process-sticky::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(0,0,0,0.6), transparent 45%);
    z-index:2;
  }
  .process-sticky.phone-active::after{ display:none; }
  .process-sticky img, .process-sticky .phone-mock{
    position:absolute; inset:0;
    opacity:0;
    transition:opacity .7s ease;
  }
  .process-sticky img.active, .process-sticky .phone-mock.active{ opacity:1; }
  .process-sticky.phone-active{
    background:transparent;
  }
  .phone-mock{
    display:flex; align-items:center; justify-content:center;
    z-index:1;
  }
  .phone-frame{
    width:280px;
    max-width:82%;
  }
  .phone-head{
    display:flex; align-items:center; gap:10px;
    padding-bottom:14px; margin-bottom:14px;
    border-bottom:1px solid var(--line);
  }
  .phone-avatar{
    width:34px; height:34px; border-radius:50%;
    background:linear-gradient(120deg,var(--gold-1),var(--gold-2));
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:11.5px; color:#000;
    flex:none;
  }
  .phone-name{ font-size:13px; font-weight:700; }
  .phone-status{ font-size:11px; color:#6fbf73; }
  .phone-chat{ display:flex; flex-direction:column; gap:10px; }
  .bubble{
    max-width:84%;
    padding:10px 14px;
    border-radius:14px;
    font-size:12.2px;
    line-height:1.5;
    opacity:0;
    transform:translateY(8px);
  }
  .bubble-in{ align-self:flex-start; background:#1c1c1c; color:#ddd; border-bottom-left-radius:4px; }
  .bubble-out{ align-self:flex-end; background:linear-gradient(120deg,var(--gold-1),var(--gold-2)); color:#0a0a00; border-bottom-right-radius:4px; font-weight:600; }
  .typing{
    display:inline-flex; gap:4px;
    align-self:flex-start;
    background:#1c1c1c;
    padding:10px 14px;
    border-radius:14px;
    border-bottom-left-radius:4px;
    opacity:0;
  }
  .typing i{
    width:5px; height:5px; border-radius:50%;
    background:#999;
    animation:typingBounce 1s infinite ease-in-out;
  }
  .typing i:nth-child(2){ animation-delay:.15s; }
  .typing i:nth-child(3){ animation-delay:.3s; }
  @keyframes typingBounce{ 0%,60%,100%{ transform:translateY(0); opacity:.4; } 30%{ transform:translateY(-4px); opacity:1; } }
  @keyframes bubbleIn{ from{ opacity:0; transform:translateY(8px);} to{ opacity:1; transform:translateY(0);} }
  @keyframes typingPulse{ 0%{opacity:0;} 15%{opacity:1;} 82%{opacity:1;} 100%{opacity:0;} }
  .phone-mock.active .bubble{ animation:bubbleIn .5s var(--ease) forwards; }
  .phone-mock.active .typing{ animation:typingPulse 1.6s ease forwards; }
  @media (prefers-reduced-motion:reduce){
    .bubble, .typing, .typing i{ animation:none !important; opacity:1 !important; transform:none !important; }
  }

  .process-list{ display:flex; flex-direction:column; }
  .process-item{
    padding: 44px 0;
    border-top:1px solid var(--line);
    cursor:pointer;
    transition: opacity .4s ease;
    opacity:.45;
  }
  .process-item:last-child{ border-bottom:1px solid var(--line); }
  .process-item.active{ opacity:1; }
  .process-item .row{ display:flex; align-items:baseline; gap:18px; margin-bottom:10px; }
  .process-item .idx{
    font-family:'Fraunces',serif; font-size:15px; font-weight:500;
    color:var(--gray);
  }
  .process-item.active .idx{
    background:linear-gradient(120deg,var(--gold-1),var(--gold-2));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .process-item h3{ font-size:21px; font-weight:500; }
  .process-item p{ color:var(--gray); font-size:14.5px; max-width:440px; display:none; }
  .process-item.active p{ display:block; }
  @media (max-width:920px){
    .process-wrap{ grid-template-columns:1fr; gap:30px; }
    .process-sticky{ position:relative; top:0; aspect-ratio:16/10; }
    .process-item p{ display:block; }
    .process-item{ opacity:1; }
  }

  /* ============ BANNER INSTITUCIONAL ============ */
  .banner{ padding: var(--section-pad) 0; }
  .banner-media{
    position:relative;
    border-radius:var(--radius-lg);
    overflow:hidden;
    height:min(64vh, 620px);
  }
  .banner-media img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:center 38%;
  }
  .banner-media::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0) 45%);
  }
  .banner-content{
    padding: 40px 0 0;
    max-width:640px;
    text-align:left;
  }
  .banner-content h2{
    font-size:clamp(28px,4vw,48px);
    }
  .banner-content .btn{ margin-top:28px; }
  @media (max-width:700px){ .banner-media{ height:42vh; } }

  /* ============ TESTIMONIALS ============ */
  .testi-wrap{
    position:relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    overflow:hidden;
  }
  .testi-track{
    display:flex;
    gap:22px;
    width:max-content;
    animation: scroller 46s linear infinite;
  }
  .testi-wrap:hover .testi-track{ animation-play-state:paused; }
  @keyframes scroller{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce){
    .testi-track{ animation:none; overflow-x:auto; }
  }
  .testi-card{
    width:360px;
    flex:0 0 auto;
    background:#f7f5ef;
    color:#1a1a1a;
    border-radius:var(--radius-md);
    padding:30px;
  }
  .testi-stars{ display:flex; gap:4px; margin-bottom:16px; }
  .testi-stars svg{ width:15px; height:15px; fill:#FFB200; }
  .testi-card p{ font-size:14.5px; line-height:1.7; color:#333; margin-bottom:22px; }
  .testi-who{ display:flex; align-items:center; gap:12px; }
  .testi-avatar{
    width:38px; height:38px; border-radius:50%;
    background:linear-gradient(120deg,var(--gold-1),var(--gold-2));
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:13px; color:#000;
  }
  .testi-who .name{ font-size:13.5px; font-weight:700; }
  .testi-who .role{ font-size:12px; color:#777; }

  /* ============ CTA FINAL ============ */
  .cta-final{ text-align:center; }
  .cta-final h2{ font-size:clamp(32px,4.2vw,52px); max-width:760px; margin:0 auto 20px; }
  .cta-final p{ color:var(--gray); font-size:16px; max-width:520px; margin:0 auto 40px; }

  /* ============ LOCATION ============ */
  .loc-wrap{
    position:relative;
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--line);
    min-height:480px;
    display:flex;
    align-items:center;
  }
  .loc-map{ position:absolute; inset:0; width:100%; height:100%; }
  .loc-map svg{ width:100%; height:100%; }
  .loc-map img, .loc-map iframe{
    display:block;
    width:100%; height:100%;
    min-height:480px;
    border:0;
    object-fit:cover;
  }
  .loc-map-fallback{
    position:absolute; right:18px; bottom:18px; z-index:2;
    display:inline-flex; align-items:center; gap:8px;
    padding:10px 16px;
    border-radius:100px;
    background:rgba(6,6,6,0.86);
    backdrop-filter: blur(8px);
    border:1px solid rgba(255,208,68,0.3);
    font-size:12.5px; font-weight:700; color:var(--gold-2);
    transition: border-color .3s ease, background .3s ease;
  }
  .loc-map-fallback:hover{ border-color:var(--gold-2); background:rgba(6,6,6,0.95); }
  .loc-map-fallback svg{ width:14px; height:14px; }
  .loc-card{
    position:relative; z-index:2;
    margin: 40px;
    background:rgba(6,6,6,0.86);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,208,68,0.22);
    border-radius:var(--radius-lg);
    padding:38px;
    max-width:360px;
  }
  .loc-card h3{ font-size:21px; margin-bottom:22px; }
  .loc-row{ display:flex; gap:14px; margin-bottom:18px; }
  .loc-row svg{ width:18px; height:18px; flex:none; margin-top:2px; stroke:var(--gold-2); }
  .loc-row .lbl{ font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--gray); margin-bottom:3px; }
  .loc-row .val{ font-size:14.5px; color:var(--white); line-height:1.5; }
  @media (max-width:640px){ .loc-card{ margin:20px; padding:26px; } }

  /* ============ FOOTER ============ */
  footer{
    padding: 80px 0 40px;
    border-top:1px solid var(--line);
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
    border-bottom:1px solid var(--line);
  }
  .footer-logo img{ height:60px; margin-bottom:20px; }
  .footer-grid p{ color:var(--gray); font-size:14px; max-width:320px; line-height:1.7; }
  .footer-col h4{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--gray); margin-bottom:20px; font-family:'Manrope',sans-serif; font-weight:700; }
  .footer-col ul{ display:flex; flex-direction:column; gap:12px; }
  .footer-col a{ font-size:14px; color:var(--white); transition:color .3s ease; }
  .footer-col a:hover{ color:var(--gold-2); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:30px; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom p{ font-size:12.5px; color:var(--gray-dim); }
  @media (max-width:800px){ .footer-grid{ grid-template-columns:1fr; gap:36px; } }

  /* ============ FLOATING WHATSAPP ============ */
  .fab{
    position:fixed;
    right:26px; bottom:26px;
    z-index:900;
    width:60px; height:60px;
    border-radius:50%;
    background:linear-gradient(120deg,var(--gold-1),var(--gold-2));
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 8px 26px rgba(255,208,68,0.28), 0 0 0 1px rgba(255,255,255,0.06);
    transition: transform .4s var(--ease), box-shadow .4s ease;
  }
  .fab:hover{ transform:scale(1.07); box-shadow: 0 10px 34px rgba(255,208,68,0.42); }
  .fab svg{ width:28px; height:28px; }
  @media (prefers-reduced-motion:no-preference){
    .fab::before{
      content:"";
      position:absolute; inset:-6px;
      border-radius:50%;
      border:1px solid rgba(255,208,68,0.35);
      animation: pulse 2.6s ease-out infinite;
    }
  }
  @keyframes pulse{
    0%{ transform:scale(0.9); opacity:.8; }
    100%{ transform:scale(1.35); opacity:0; }
  }

  /* utility */
  .counter{ display:inline; }
