:root{
  --bg:#000;
  --text:#fff;
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --red:#d00000;

  /* ✅ MESMO CONTAINER PARA TUDO (header + sections) */
  --container:1200px;

  --header-h:72px;
  --radius:18px;

  /* pesos tipográficos (Google Fonts Asap) */
  --fw-thin:300;
  --fw-regular:400;
  --fw-medium:500;
  --fw-semibold:600;
  --fw-bold:700;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: 'Asap', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg); /* ✅ background preto */
  color:var(--text);
  overflow-x:hidden; /* evita scroll horizontal acidental */
}
img{max-width:100%;height:auto;display:block;}
.container{
  width:100%;
  max-width:var(--container); /* ✅ mesmo max do header */
  margin:0 auto;
  padding:0 24px;
}

/* Wrapper 1200px para mídia (HERO / CASES / CLIENTES) */
.slider-shell{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 0px;
}


/* =========================
   HEADER
========================= */
.header{
  position:fixed;
  top:0;left:0;
  width:100%;
  height:var(--header-h);
  z-index:1000;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-content{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo img{
  width:38px;
  height:38px;
  object-fit:contain;
}

/* NAV com ícones */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:rgba(255,255,255,.88);
  font-size:13px;
  letter-spacing:.2px;
  transition:.18s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-ico{
  width:16px;
  height:16px;
  object-fit:contain;
  opacity:.95;
  filter:grayscale(1) brightness(1.35);
  transition:.18s ease;
}
.nav-link:hover{color:var(--red);}
.nav-link:hover .nav-ico{
  filter:grayscale(0) brightness(1.1);
  transform:translateY(-1px);
}
.nav-link--cta{
  border:1px solid rgba(208,0,0,.7);
  padding:8px 14px;
  border-radius:999px;
}
.nav-link--cta .nav-ico{
  width:15px;
  height:15px;
}

/* =========================
   MENU MOBILE (expansível)
========================= */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.50);
  color:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0;
}
.nav-toggle:hover{background:rgba(0,0,0,.75);border-color:rgba(208,0,0,.45);}
.nav-toggle-bar{
  width:18px;
  height:2px;
  background:rgba(255,255,255,.88);
  display:block;
  border-radius:99px;
}

.mobile-nav{
  position:fixed;
  inset:0;
  z-index:1500;
  display:none;
}
.mobile-nav.is-open{display:block;}
.mobile-nav__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
}
.mobile-nav__panel{
  position:absolute;
  top:14px;
  right:14px;
  width:min(360px, calc(100% - 28px));
  border-radius:20px;
  background:rgba(10,10,10,.92);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 90px rgba(0,0,0,.65);
  padding:16px;
}
.mobile-nav__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 6px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:10px;
}
.mobile-nav__title{font-weight:var(--fw-semibold);letter-spacing:.2px;}
.mobile-nav__close{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition:.18s ease;
}
.mobile-nav__close:hover{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.18);}

.mobile-nav__links{display:flex;flex-direction:column;gap:6px;}
.mobile-link{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  text-decoration:none;
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  transition:.18s ease;
  font-size:14px;
}
.mobile-link:hover{border-color:rgba(208,0,0,.35);background:rgba(208,0,0,.08);}
.mobile-link--cta{
  background:rgba(208,0,0,.12);
  border-color:rgba(208,0,0,.45);
}

/* =========================
   HERO SLIDER
========================= */
.hero{
  padding-top:var(--header-h);
  min-height:auto;
  position:relative;
  overflow:hidden;
}
.hero-slider{
  position:relative;
  width:100%;
  min-height:auto;
}
.hero-viewport{
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  overflow:hidden;
  position:relative;
}
.hero-track{
  width:100%;
  height:100%;
  position:relative;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .45s ease;
}
.hero-slide.is-active{
  opacity:1;
  pointer-events:auto;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:saturate(1.05) contrast(1.05);
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 35%, rgba(0,0,0,.25) 65%, rgba(0,0,0,.15) 100%),
    radial-gradient(900px 500px at 20% 40%, rgba(208,0,0,.22), rgba(0,0,0,0) 60%);
}
.hero-content{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}
.hero-inner{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 120px;
}
.hero-text{max-width:520px;}
.hero-kicker{
  color:var(--red);
  font-weight:800;
  letter-spacing:.6px;
  font-size:14px;
  margin-bottom:10px;
}
.hero-title{
  font-size:44px;
  line-height:1.12;
  margin-bottom:14px;
  font-weight:900;
}
.hero-desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  margin-bottom:22px;
  max-width:480px;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:transparent;
  border:1px solid rgba(208,0,0,.85);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:650;
  font-size:13px;
  transition:.2s ease;
  cursor:pointer;
}
.btn-primary:hover{
  background:rgba(208,0,0,.12);
  border-color:rgba(208,0,0,1);
}
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:650;
  font-size:13px;
  transition:.2s ease;
  cursor:pointer;
}
.btn-secondary:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

.hero-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 91px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
    transition: .18s ease;
}

.hero-arrow--left{left:14px;}
.hero-arrow--right{right:14px;}
.hero-arrow span{font-size:100px;line-height:1;user-select:none;}
.hero-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.08);
  z-index:2;
}
.hero-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  transition:.18s ease;
}
.hero-dot[aria-selected="true"]{
  background:var(--red);
  transform:scale(1.15);
}

/* =========================
   SEÇÕES (80px)
========================= */
.section{
  padding:86px 0; /* respiro consistente entre seções */
}
.section-head{
  text-align:center;
  margin-bottom:64px;
}
.section-title{
  font-weight:var(--fw-bold);
  letter-spacing:.8px;
  font-size:44px;
  margin-bottom:18px;
}
.section-subtitle{
  color:#fff;
  font-size:20px;
  font-weight:var(--fw-thin);
  line-height:1.35;
  max-width:920px;
  margin:0 auto;
}

/* descrições padrão (thin) */
.about-text,
.solutions-desc,
.footer-subtitle,
.footer-info p,
.footer-links li,
.footer-bottom{
  font-weight:var(--fw-thin);
}

/* títulos / labels (bold/semibold) */
.about-title,
.solutions-title,
.footer-title,
.footer-col-title{font-weight:var(--fw-semibold);}
.about-title,
.solutions-title,
.footer-title{font-weight:var(--fw-bold);}
.sol-label{
  font-weight:var(--fw-semibold);
}

/* =========================
   QUEM SOMOS
========================= */
#quem-somos,
.section.about{
  background-color:#020202;
}
.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:80px;
  align-items:start;
}
.about-item{text-align:center;}
.about-icon{
  width:120px;height:120px;
  margin:0 auto 22px;
  display:grid;place-items:center;
}
.about-icon img{
  width:110px;height:110px;object-fit:contain;
  filter:brightness(1.15);
}
.about-title{
  font-size:34px;
  font-weight:var(--fw-semibold);
  margin-bottom:14px;
}
.about-underline{
  width:210px;height:4px;
  margin:0 auto 30px;
  border-radius:999px;
  background:rgba(208,0,0,.9);
  box-shadow:0 10px 22px rgba(208,0,0,.18);
}
.about-text{
  color:rgba(255,255,255,.70);
  font-size:18px;
  line-height:1.45;
  max-width:360px;
  margin:0 auto;
}

/* =========================
   SOLUÇÕES
========================= */
.solutions{position:relative;overflow:hidden;}
.solutions::before{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    url(../assets/images/bgSectionSolucoes.png) no-repeat bottom center,
    radial-gradient(900px 420px at 70% 70%, rgba(208,0,0,.28), rgba(0,0,0,0) 60%),
    radial-gradient(800px 520px at 40% 90%, rgba(208,0,0,.22), rgba(0,0,0,0) 62%);
  pointer-events:none;
}
.solutions .container{position:relative;z-index:1;}
.solutions-layout{
  margin-top:10px;
  display:grid;
  grid-template-columns:520px 1fr;
  gap:72px;
  align-items:start;
}
.solutions-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}
.sol-card{
  height:210px;
  border-radius:var(--radius);
  border:2px solid rgba(208,0,0,.65);
  background:rgba(0,0,0,.15);
  cursor:pointer;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  transition:.18s ease;
}
.sol-card:hover{
  transform:translateY(-2px);
  border-color:rgba(208,0,0,.95);
}
.sol-card.is-active{
  background:rgba(120,0,0,.75);
  border-color:rgba(120,0,0,.75);
}
.sol-ico{width:84px;height:84px;display:grid;place-items:center;}
.sol-ico img{width:84px;height:84px;object-fit:contain;filter:brightness(1.2);}
.sol-label{font-size:14px;font-weight:800;letter-spacing:.6px;color:rgba(255,255,255,.92);}

.solutions-panel{padding-top:12px;}
.solutions-title{font-size:26px;font-weight:var(--fw-bold);margin-bottom:12px;}
.solutions-desc{color:rgba(255,255,255,.68);font-size:16px;line-height:1.45;margin-bottom:22px;}
.solutions-list{list-style:none;display:flex;flex-direction:column;gap:18px;padding:0;margin:0;}
.solutions-list li{position:relative;padding-left:34px;color:rgba(255,255,255,.90);font-size:16px;line-height:1.3;}
.solutions-list li::before{
  content:"";
  position:absolute;left:0;top:3px;
  width:14px;height:14px;border-radius:999px;
  background:rgba(208,0,0,1);
  box-shadow:0 0 0 6px rgba(208,0,0,.12);
}

/* =========================
   CASES
========================= */
.cases{background:#000; padding: 1px;}
.cases-media{
  position:relative;
  width:100%;
  aspect-ratio:16/9; /* ajuste conforme Figma */

}
.cases-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.cases-bg::after{
  content:"";
  position:absolute;inset:0;
}
.cases-inner{
  position:absolute;top:0;left:0;right:0;
  z-index:2;
}
.cases-head{margin-top:80px;margin-bottom:0;}
.cases-arrow{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:54px;height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  cursor:pointer;
  display:grid;place-items:center;
  z-index:3;
  transition:.18s ease;
}
.cases-arrow:hover{background:rgba(0,0,0,.65);border-color:rgba(255,255,255,.28);}
.cases-arrow--left{left:28px;}
.cases-arrow--right{right:28px;}
.cases-arrow span{font-size:34px;line-height:1;user-select:none;}



/* CTA "Veja mais" sobrepondo o case */
.cases-cta{
  position:absolute;
  left: 136px;
  bottom: 60px;
  z-index:4;
  padding:10px 16px;
  font-size:13px;
  line-height:1;
}
/* =========================
   CLIENTES
========================= */
.clients {background:#020202; padding: 1px;}

.clients-media{
  position:relative;
  width:100%;
  aspect-ratio:1920/300; /* ajuste conforme Figma */
  min-height: 520px;
  overflow:hidden;
}
.clients-bg{
  position:absolute;inset:0;
  background:url("assets/images/bgClientes.png") center center / cover no-repeat;
  z-index:0;
}
.clients-bg::after{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(208,0,0,.25), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.75) 100%);
}
.clients-inner{
  position:absolute;inset:0;
  z-index:1;
  display:flex;
  flex-direction:column;
}
.clients .section-head{margin-top:80px;margin-bottom:24px;}
.clients-carousel{margin-top:20px;}
.clients-viewport{
  overflow:hidden;
  padding:18px 0;
  border-radius:var(--radius);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.clients-track{
  display:flex;width:100%;
  will-change:transform;
  transform:translate3d(0,0,0);
  cursor:grab;user-select:none;
  transition:transform 420ms cubic-bezier(.2,.9,.2,1);
}
.clients-track.is-dragging{transition:none;cursor:grabbing;}
.client-logo{
  flex:0 0 calc(100% / 6);
  height:92px;
  display:grid;place-items:center;
  padding:0 14px;
}
.client-logo img{
  max-width:100%;
  max-height:70px;
  object-fit:contain;
  filter:brightness(1.12);
  opacity:.92;
  pointer-events:none;
}

/* =========================
   FOOTER
========================= */
.footer{
  background:#000;
  padding: 96px 0 46px;
}
.footer-title{
  font-size:44px;
  font-weight:var(--fw-bold);
  letter-spacing:.6px;
  margin-bottom:18px;
}
.footer-subtitle{
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  max-width: 920px;
}
.footer-grid{
  margin-top:64px;
  display:grid;
  grid-template-columns:1fr 1.1fr 1fr;
  gap:64px;
  align-items:start;
}
.footer-col-title{
  font-size:24px;
  font-weight:var(--fw-semibold);
  margin-bottom:18px;
}
.footer-social{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:14px;
}
.social-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  opacity:.95;
  transition:.18s ease;
}
.social-btn:hover{
  opacity:1;
  transform:translateY(-2px);
  background:rgba(255,255,255,.10);
  border-color:rgba(208,0,0,.55);
}
.social-ico{
  width:22px;
  height:22px;
  display:block;
}
.footer-info p{
  color:rgba(255,255,255,.92);
  font-size:18px;
  line-height:1.4;
  margin-bottom:14px;
}
.footer-info strong{font-weight:800;}
.footer-links{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:10px;
}
.footer-links li{display:flex;align-items:center;gap:10px;font-size:18px;}
.footer-links li::before{content:"·";font-size:22px;line-height:1;color:rgba(255,255,255,.85);}
.footer-links a{color:rgba(255,255,255,.92);text-decoration:none;transition:.18s ease;}
.footer-links a:hover{color:var(--red);}
.footer-bottom{
  margin-top:72px;
  color:rgba(255,255,255,.92);
  font-size:18px;
}

/* =========================
   MODAL ORÇAMENTO
========================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:2000;
}
.modal.is-open{display:block;}

.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.modal-dialog{
  position:relative;
  width:min(560px, calc(100% - 32px));
  margin: 110px auto 40px;
  border-radius: 22px;
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  padding: 26px 26px 22px;
}

.modal-close{
  position:absolute;
  top:14px; right:14px;
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition:.18s ease;
}
.modal-close:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

.modal-title{
  font-size: 26px;
  font-weight: var(--fw-bold);
  letter-spacing: .2px;
  margin-bottom: 8px;
}
.modal-subtitle{
  color: rgba(255,255,255,.68);
  line-height: 1.4;
  margin-bottom: 18px;
}

.modal-form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field{display:flex;flex-direction:column;gap:8px;}
.field span{font-size:12px;color:rgba(255,255,255,.70);}
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color:#fff;
  padding: 12px 12px;
  outline:none;
  transition:.18s ease;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(208,0,0,.55);
  box-shadow: 0 0 0 4px rgba(208,0,0,.12);
}
.field--full{grid-column: 1 / -1;}

.modal-actions{
  grid-column: 1 / -1;
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 6px;
}
.modal-hint{
  grid-column: 1 / -1;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.50);
  line-height: 1.35;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 980px){
  .clients-media{min-height: 560px;}
  .nav{display:none;}
  .nav-toggle{display:inline-flex;}

  .hero-title{font-size:36px;}
  .section{padding:64px 0;}
  .section-head{margin-bottom:44px;}
  .section-title{font-size:38px;}
  .section-subtitle{font-size:18px;}

  .about-grid{grid-template-columns:1fr;gap:56px;}
  .about-title{font-size:28px;}
  .about-text{font-size:16px;max-width:520px;}

  .solutions-layout{grid-template-columns:1fr;gap:44px;}
  .solutions-grid{max-width:560px;margin:0 auto;}

  .cases-head{margin-top:56px;}
  .cases-arrow--left{left:12px;}
  .cases-arrow--right{right:12px;}
  .cases-cta{ left:20px; bottom:18px; }

  .clients .section-head{margin-top:56px;}
  .client-logo{flex-basis:calc(100% / 3);}

  .footer{padding:72px 0 40px;}
  .footer-title{font-size:38px;}
  .footer-subtitle{font-size:18px;}
  .footer-grid{grid-template-columns:1fr;gap:44px;margin-top:48px;}
  .footer-social{gap:24px;}
  .footer-bottom{margin-top:56px;}

  .modal-dialog{margin: 92px auto 40px;}
  .modal-form{grid-template-columns:1fr;}
}

@media (max-width: 520px){
  .clients-media{min-height: 520px;}
  .hero-title{font-size:30px;}
  .hero-desc{font-size:13px;}
  .hero-arrow{width:40px;height:40px;}
  .hero-arrow span{font-size:30px;}

  .client-logo{flex-basis:calc(100% / 2);height:84px;padding:0 10px;}
}


/* HERO vídeo (16:9) */
.hero-bg--video{
  filter:none;
}
.hero-bg--video::after{
  display:none;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}


/* =========================
   GALERIA CASES (MODAL)
========================= */
.gmodal{
  position:fixed;
  inset:0;
  display:none;
  z-index:2500;
  /* centraliza o modal */
  align-items:center;
  justify-content:center;
  padding:24px;
}
.gmodal.is-open{display:flex;}
.gmodal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}

.gmodal-dialog{
  position:relative;
  width:min(1080px, calc(100% - 28px));
  margin: 0;
  border-radius: 22px;
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  max-height: calc(100vh - 48px);
  overflow:auto;
  padding: 18px 18px 16px;
}

.gmodal-close{
  position:absolute;
  top:12px; right:12px;
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition:.18s ease;
  z-index:3;
}
.gmodal-close:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

.gmodal-main{
  display:grid;
  grid-template-columns: 64px 1fr 64px;
  align-items:center;
  gap:12px;
}

.gmodal-stage{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  min-height: 420px;
  touch-action: pan-y;
}

.gmodal-img{
  width:100%;
  height: min(62vh, 620px);
  object-fit:contain;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
}

.gmodal-arrow{
  width:64px;
  height:64px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:.18s ease;
  font-size:46px;
  line-height:1;
  user-select:none;
}
.gmodal-arrow:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(208,0,0,.45);
}
.gmodal-arrow:disabled{
  opacity:.35;
  cursor:not-allowed;
}

.gmodal-spinner{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:3px solid rgba(255,255,255,.18);
  border-top-color: rgba(208,0,0,.95);
  animation: gspin .85s linear infinite;
  display:none;
}
.gmodal-stage.is-loading .gmodal-spinner{display:block;}
@keyframes gspin{to{transform:translate(-50%,-50%) rotate(360deg);} }

.gmodal-counter{
  position:absolute;
  left:14px;
  bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  color:rgba(255,255,255,.90);
}

.gmodal-thumbs{
  margin-top:12px;
  display:flex;
  gap:10px;
  overflow:auto;
  padding: 10px 6px 6px;
  border-top:1px solid rgba(255,255,255,.08);
}
.gthumb{
  flex:0 0 auto;
  width:92px;
  height:58px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
  cursor:pointer;
  transition:.18s ease;
  position:relative;
}
.gthumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.92;
}
.gthumb:hover{transform:translateY(-1px);border-color:rgba(208,0,0,.35);}
.gthumb.is-active{border-color:rgba(208,0,0,.9); box-shadow:0 0 0 3px rgba(208,0,0,.18) inset;}
.gthumb.is-active img{opacity:1;}

@media (max-width: 980px){
  .gmodal-dialog{margin: 84px auto 18px;}
  .gmodal-main{grid-template-columns: 44px 1fr 44px;}
  .gmodal-arrow{width:44px;height:44px;font-size:34px;}
  .gthumb{width:82px;height:54px;}
}

@media (max-width: 520px){
  .gmodal-dialog{padding: 14px 14px 12px;}
  .gmodal-stage{min-height: 320px;}
  .gmodal-img{height: min(56vh, 520px);}
  .gmodal-counter{left:10px; bottom:10px;}
}


/* =========================
   REVEAL ON SCROLL (sutil)
========================= */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal[data-reveal="fade"]{ transform:none; }
.reveal.is-in{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}


/* CLIENTES marquee contínuo */
.clients-track.is-marquee{
  transition: none !important;
  cursor: default;
}
