/* ============================================================
   Componentes & Seções
   ============================================================ */

/* ===================== HEADER ===================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .4s var(--ease-out), background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header.scrolled {
  height: 66px;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(14,27,51,.4);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mono { height: 40px; width: auto; transition: height .4s var(--ease-out); }
.header.scrolled .brand .mono { height: 34px; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.brand .wordmark .nm { font-weight: 700; font-size: 1.14rem; color: var(--ink); letter-spacing: -0.025em; white-space: nowrap; }
.brand .wordmark .sb { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel-500); font-weight: 600; margin-top: 3px; white-space: nowrap; }
@media (max-width: 420px) { .brand .wordmark .sb { display: none; } .brand .wordmark .nm { font-size: 1.04rem; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 12px; font-size: .96rem; font-weight: 500;
  color: var(--steel-700); border-radius: var(--r-pill);
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: var(--grad-orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }

.header__cta { display: flex; align-items: center; gap: 14px; }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; background: var(--steel-100); }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: .35s var(--ease-out); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 850;
  background: var(--grad-navy-deep);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 100px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform .55s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:not(.btn) { color: #fff; font-size: 1.7rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a:not(.btn) span { color: var(--orange-400); }
.mobile-menu .btn { margin-top: 28px; width: 100%; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(36px, 6vw, 76px));
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 88% 0%, var(--bg-soft) 0%, transparent 55%),
    var(--bg);
}
.hero__mesh { position: absolute; inset: -10% -5%; z-index: 0; }
.hero__mesh .mesh--1 { top: -8%; left: 40%; }
.hero__mesh .mesh--2 { top: 30%; left: 60%; }
.hero__mesh .mesh--3 { top: 35%; left: -10%; }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 8px 16px 8px 8px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs);
  font-size: .86rem; font-weight: 500; color: var(--steel-600);
}
.hero__badge b { color: var(--ink); font-weight: 600; }
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #1faf54; box-shadow: 0 0 0 4px rgba(31,175,84,.18); }
.hero__badge .pill-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--grad-navy); display: grid; place-items: center; }
.hero__badge .pill-ic svg { width: 16px; color: #fff; }

.hero h1 { margin-bottom: 22px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--steel-600); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero__trust { display: flex; align-items: center; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__crm { display: flex; gap: 22px; }
.hero__crm .item { }
.hero__crm .k { font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.hero__crm .l { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.hero__crm .sep { width: 1px; background: var(--line); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; z-index: 2;
  border-radius: 28px 28px 28px 90px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  background: var(--steel-100);
}
.hero__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(10,19,34,.10));
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero__frame {
  position: absolute; z-index: 1; inset: -22px -22px auto auto; width: 70%; height: 78%;
  border-radius: 28px 28px 28px 90px;
  background: var(--grad-navy);
}
.hero__frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--grad-metal); mix-blend-mode: overlay; opacity: .25;
}

/* floating cards on hero photo */
.hero__chip {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px; box-shadow: var(--sh-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 13px;
}
.hero__chip .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero__chip .ic.navy { background: var(--grad-navy); }
.hero__chip .ic.orange { background: var(--grad-orange); }
.hero__chip .ic svg { width: 22px; color: #fff; }
.hero__chip .t { font-size: .78rem; color: var(--muted); font-weight: 500; }
.hero__chip .v { font-size: 1.12rem; color: var(--ink); font-weight: 700; line-height: 1.1; }
.hero__chip--1 { left: -46px; top: 9%; animation: floatY 7s var(--ease-soft) infinite; }
.hero__chip--2 { right: -40px; bottom: 7%; animation: floatY 8s var(--ease-soft) .8s infinite; }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid var(--steel-300); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; background: var(--orange-500); border-radius: 4px; transform: translateX(-50%); animation: floatY-sm 1.6s ease-in-out infinite; }

/* ===================== MARQUEE (sociedades) ===================== */
.marquee-band { background: var(--grad-navy-deep); padding: 30px 0; position: relative; overflow: hidden; }
.marquee-band::before, .marquee-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 3;
}
.marquee-band::before { left: 0; background: linear-gradient(90deg, var(--navy-900), transparent); }
.marquee-band::after { right: 0; background: linear-gradient(270deg, var(--navy-900), transparent); }
.marquee { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .item {
  display: flex; align-items: center; gap: 14px; padding: 0 34px; white-space: nowrap;
  color: rgba(255,255,255,.78); font-weight: 500; font-size: 1.02rem;
}
.marquee .item svg { width: 22px; color: var(--orange-400); flex: none; }
.marquee .item .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); }

/* ===================== SECTION DECOR ===================== */
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--grad-navy-deep); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy .h2, .bg-navy .h3 { color: #fff; }
.bg-navy .lead { color: rgba(255,255,255,.72); }
.dots-deco {
  position: absolute; width: 180px; height: 180px; opacity: .5;
  background-image: radial-gradient(var(--steel-300) 1.6px, transparent 1.6px);
  background-size: 18px 18px; pointer-events: none;
}
.dots-deco--cond { right: 4%; top: 8%; }

/* ===================== SOBRE ===================== */
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media .main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3.2; }
.about__media .main img { width: 100%; height: 100%; object-fit: cover; }
.about__quote {
  position: absolute; right: -26px; bottom: -52px; max-width: 320px; z-index: 3;
  background: var(--grad-navy); color: #fff; border-radius: 20px; padding: 24px 26px;
  box-shadow: var(--sh-navy);
}
.about__quote .q { font-size: 3.2rem; line-height: .5; color: var(--orange-400); font-weight: 800; height: 26px; }
.about__quote p { font-size: 1.02rem; line-height: 1.5; font-style: italic; color: rgba(255,255,255,.92); }
.about__quote .by { margin-top: 12px; font-size: .82rem; color: var(--blue-200); font-weight: 600; font-style: normal; }
.about__media .badge-years {
  position: absolute; left: -26px; top: 28px; z-index: 3;
  width: 116px; height: 116px; border-radius: 50%;
  background: #fff; box-shadow: var(--sh-md); display: grid; place-items: center; text-align: center;
  border: 1px solid var(--line);
}
.about__media .badge-years .n { font-size: 2.1rem; font-weight: 800; color: var(--orange-500); line-height: 1; }
.about__media .badge-years .t { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--steel-500); font-weight: 600; margin-top: 0; }

.about__body p { margin-top: 18px; color: var(--text); }
.about__body p:first-of-type { margin-top: 24px; }
.about__sign { margin-top: 28px; font-family: var(--font); font-weight: 600; }
.about__creds { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.cred {
  display: flex; gap: 13px; padding: 16px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease-out), box-shadow .4s;
}
.cred:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.cred .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--steel-100); display: grid; place-items: center; flex: none; }
.cred .ic svg { width: 20px; color: var(--navy-600); }
.cred .t { font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.25; }
.cred .d { font-size: .82rem; color: var(--muted); margin-top: 2px; }

/* ===================== CONDIÇÕES ===================== */
.cond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.cond {
  position: relative; padding: 30px 26px 28px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}
.cond::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-orange); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.cond:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.cond:hover::before { transform: scaleX(1); }
.cond .ic { width: 60px; height: 60px; border-radius: 16px; background: var(--steel-100); display: grid; place-items: center; margin-bottom: 22px; transition: background .5s, transform .5s var(--ease-out); }
.cond .ic svg { width: 30px; color: var(--navy-700); transition: color .5s; stroke-width: 1.6; }
.cond:hover .ic { background: var(--grad-navy); transform: rotate(-6deg) scale(1.05); }
.cond:hover .ic svg { color: #fff; }
.cond h3 { font-size: 1.28rem; color: var(--ink); margin-bottom: 8px; }
.cond p { font-size: .95rem; color: var(--muted); line-height: 1.5; }
.cond .more { margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--navy-600); display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(6px); transition: .4s var(--ease-out); }
.cond:hover .more { opacity: 1; transform: none; }

/* ===================== TRATAMENTOS ===================== */
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.treat {
  position: relative; padding: 32px 30px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s;
  isolation: isolate;
}
.treat__glow { position: absolute; z-index: -1; width: 220px; height: 220px; border-radius: 50%; right: -90px; top: -90px; background: radial-gradient(circle, rgba(45,82,163,.16), transparent 70%); opacity: 0; transition: opacity .5s; }
.treat:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.treat:hover .treat__glow { opacity: 1; }
.treat__num { position: absolute; right: 26px; top: 24px; font-size: .82rem; font-weight: 700; color: var(--steel-300); letter-spacing: .05em; }
.treat .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-navy); display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--sh-sm); transition: transform .5s var(--ease-out); }
.treat:hover .ic { transform: scale(1.08) rotate(5deg); }
.treat .ic svg { width: 26px; color: #fff; stroke-width: 1.7; }
.treat h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.treat p { font-size: .94rem; color: var(--muted); line-height: 1.55; }
.treat .ribbon { display: inline-block; margin-top: 16px; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-600); padding: 5px 11px; border-radius: 99px; background: rgba(236,90,26,.08); }

/* ===================== DIFERENCIAIS ===================== */
.why { position: relative; overflow: hidden; }
.why > .container { position: relative; z-index: 2; }
.why .mesh--1 { top: -20%; right: -10%; left: auto; opacity: .4; }
.why .mesh--3 { bottom: -30%; left: -10%; opacity: .3; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.stat {
  padding: 26px 24px; border-radius: var(--r-md);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transition: transform .5s var(--ease-out), background .5s;
}
.stat:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); }
.stat .n { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat .n .suf { color: var(--orange-400); }
.stat .l { margin-top: 10px; font-size: .92rem; color: rgba(255,255,255,.66); }

.why__list { display: flex; flex-direction: column; gap: 8px; }
.feat {
  display: flex; gap: 20px; padding: 22px; border-radius: var(--r-md);
  transition: background .4s, transform .4s var(--ease-out);
}
.feat:hover { background: var(--bg-soft); transform: translateX(6px); }
.feat .ic { width: 54px; height: 54px; border-radius: 14px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs); }
.feat .ic svg { width: 26px; color: var(--orange-500); stroke-width: 1.7; }
.feat h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: 5px; }
.feat p { font-size: .96rem; color: var(--muted); }
/* contraste no tema escuro */
.bg-navy .feat h3 { color: #fff; }
.bg-navy .feat p { color: rgba(255,255,255,.7); }
.bg-navy .feat:hover { background: rgba(255,255,255,.06); }

/* ===================== TECNOLOGIA ===================== */
.tech__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.tech__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.tech__media img { width: 100%; height: 100%; object-fit: cover; }
.tech__list { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.tech-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.tech-item:last-child { border-bottom: 0; }
.tech-item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--steel-100); display: grid; place-items: center; flex: none; }
.tech-item .ic svg { width: 22px; color: var(--navy-600); }
.tech-item h4 { font-size: 1.06rem; color: var(--ink); font-weight: 600; }
.tech-item p { font-size: .92rem; color: var(--muted); margin-top: 2px; }

/* ===================== DEPOIMENTOS ===================== */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.google-rating { display: flex; align-items: center; gap: 16px; padding: 16px 22px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.google-rating .score { font-size: 2.3rem; font-weight: 800; color: var(--ink); line-height: 1; }
.google-rating .stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; }
.google-rating .sub { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.google-rating .g-ic { width: 44px; height: 44px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.review {
  padding: 28px 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.review .stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; }
.review p { color: var(--text); font-size: 1.01rem; line-height: 1.6; flex: 1; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; flex: none; }
.review .av--navy { background: var(--grad-navy); }
.review .av--orange { background: var(--grad-orange); }
.review .av--steel { background: var(--steel-700); }
.review .nm { font-weight: 600; color: var(--ink); font-size: .98rem; }
.review .src { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.reviews-more { display: flex; justify-content: center; margin-top: 40px; }
.htmx-indicator { opacity: 0; transition: opacity .3s; }
.htmx-request .htmx-indicator { opacity: 1; }
.htmx-request.reviews-more .btn { pointer-events: none; opacity: .6; }
.spin { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spinSlow .7s linear infinite; }
.spin--ghost { border-color: rgba(20,35,63,.25); border-top-color: var(--navy-700); }

/* ===================== LOCAIS ===================== */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.loc {
  border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--sh-sm); transition: transform .5s var(--ease-out), box-shadow .5s;
}
.loc:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.loc__map { height: 220px; position: relative; background: var(--steel-100); }
.loc__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.02); }
.loc__pin { position: absolute; left: 20px; top: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 99px; background: var(--grad-navy); color: #fff; font-weight: 600; font-size: .9rem; box-shadow: var(--sh-md); }
.loc__pin svg { width: 16px; }
.loc__body { padding: 26px 28px 28px; }
.loc__body h3 { font-size: 1.4rem; color: var(--ink); }
.loc__row { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; color: var(--text); font-size: .98rem; }
.loc__row svg { width: 19px; color: var(--orange-500); flex: none; margin-top: 3px; }
.loc__body .btn { margin-top: 24px; width: 100%; }

/* ===================== FAQ ===================== */
.faq { max-width: 860px; margin-inline: auto; margin-top: 50px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left; font-size: clamp(1.05rem, 1.8vw, 1.28rem); font-weight: 600; color: var(--ink);
  transition: color .3s;
}
.faq__q:hover { color: var(--navy-600); }
.faq__ic { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--steel-300); display: grid; place-items: center; position: relative; transition: .4s var(--ease-out); }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: var(--navy-700); border-radius: 2px; transition: .4s var(--ease-out); }
.faq__ic::before { width: 14px; height: 2px; }
.faq__ic::after { width: 2px; height: 14px; }
.faq__item.open .faq__ic { background: var(--grad-navy); border-color: transparent; transform: rotate(90deg); }
.faq__item.open .faq__ic::before, .faq__item.open .faq__ic::after { background: #fff; }
.faq__item.open .faq__ic::after { transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height .45s var(--ease-out); }
.faq__a-inner { padding: 0 4px 28px; color: var(--text); font-size: 1.04rem; line-height: 1.65; max-width: 92%; }

/* ===================== CTA BAND ===================== */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px; margin-inline: auto;
}
.cta-band .h2 { color: #fff; margin-top: 18px; }
.cta-band .eyebrow--center { justify-content: center; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: 18px; font-size: 1.18rem; }
.cta-band .hero__actions { justify-content: center; }
.cta-band .mesh--1 { top: -30%; left: 10%; }
.cta-band .mesh--2 { bottom: -30%; right: 10%; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-950); color: rgba(255,255,255,.66); padding: 80px 0 30px; position: relative; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand img { height: 70px; margin-bottom: 22px; }
.footer__brand p { font-size: .96rem; max-width: 290px; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: .4s var(--ease-out); }
.footer__social a:hover { background: var(--orange-500); transform: translateY(-4px); }
.footer__social svg { width: 20px; color: #fff; }
.footer h5 { color: #fff; font-size: 1.02rem; font-weight: 600; margin-bottom: 20px; letter-spacing: .01em; }
.footer__col a, .footer__col li { display: block; padding: 7px 0; font-size: .96rem; transition: color .3s, padding-left .3s; }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__contact div { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: .94rem; }
.footer__contact svg { width: 17px; color: var(--orange-400); flex: none; margin-top: 3px; }
.footer__bottom { margin-top: 60px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: flex-start; gap: 16px 32px; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.45); }
.footer__bottom-left { display: flex; flex-direction: column; gap: 6px; max-width: 560px; }
.footer__bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(255,255,255,.62); transition: color .3s; }
.footer__legal a:hover { color: #fff; }
.footer__credit a { color: var(--orange-400); font-weight: 600; }
.footer__credit a:hover { text-decoration: underline; }
@media (max-width: 620px) {
  .footer__bottom-right { align-items: flex-start; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 62px; height: 62px; border-radius: 50%;
  background: #1faf54; display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(31,175,84,.6);
  transition: transform .4s var(--ease-out), bottom .45s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; color: #fff; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #1faf54; z-index: -1; animation: pulseRing 2.4s ease-out infinite; }
.wa-float .tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(8px); opacity: 0; pointer-events: none;
  background: var(--navy-900); color: #fff; padding: 9px 15px; border-radius: 10px; font-size: .86rem; font-weight: 500; white-space: nowrap;
  box-shadow: var(--sh-md); transition: .35s var(--ease-out);
}
.wa-float .tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--navy-900); }
.wa-float:hover .tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ===================== VOLTAR AO TOPO ===================== */
.to-top {
  position: fixed; right: 29px; bottom: 96px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out),
              background .3s, bottom .45s var(--ease-out);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-600); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* Sobe os botões flutuantes quando o rodapé aparece (não cobrir o disclaimer) */
body.floats-up .wa-float { bottom: 118px; }
body.floats-up .to-top { bottom: 192px; }

/* ===================== VSL (botão de play + lightbox) ===================== */
.vsl-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 5; width: 84px; height: 84px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.vsl-play__btn {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--navy-800); box-shadow: var(--sh-md);
  transition: transform .4s var(--ease-out), background .3s, color .3s;
}
.vsl-play__btn svg { width: 30px; height: 30px; margin-left: 4px; }
.vsl-play:hover .vsl-play__btn,
.vsl-play:focus-visible .vsl-play__btn { transform: scale(1.08); background: var(--orange-500); color: #fff; }
.vsl-play__ring {
  position: absolute; inset: 0; z-index: 1; border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: pulseRing 2.4s ease-out infinite;
}
.vsl-play__ring--2 { animation-delay: 1.2s; }
.vsl-play__label {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  z-index: 2; white-space: nowrap;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; padding: 5px 13px; border-radius: var(--r-pill);
  background: rgba(10,19,34,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

.vsl-modal {
  --plyr-color-main: var(--orange-500);
  position: fixed; inset: 0; z-index: 1100;
  display: grid; place-items: center; padding: clamp(16px, 4vw, 48px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.vsl-modal.open { opacity: 1; visibility: visible; }
.vsl-modal__backdrop {
  position: absolute; inset: 0; cursor: pointer;
  background: rgba(6,12,24,.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.vsl-modal__dialog {
  position: relative; z-index: 2; width: 100%; max-width: 1040px;
  transform: scale(.96); transition: transform .45s var(--ease-out);
}
.vsl-modal.open .vsl-modal__dialog { transform: scale(1); }
.vsl-modal__frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: #000;
}
.vsl-modal__close {
  position: absolute; top: -16px; right: -16px; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--navy-900); display: grid; place-items: center;
  box-shadow: var(--sh-md);
  transition: transform .35s var(--ease-out), background .3s, color .3s;
}
.vsl-modal__close svg { width: 22px; height: 22px; }
.vsl-modal__close:hover { transform: rotate(90deg); background: var(--orange-500); color: #fff; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1080px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1040px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto 30px; width: 100%; }
  .about__grid, .why__grid, .tech__grid { grid-template-columns: 1fr; }
  .why__grid .why__media { order: -1; }
  .reviews, .loc-grid { grid-template-columns: 1fr; }
  .about__quote { position: static; max-width: none; margin-top: 24px; }
  .about__media .badge-years { left: 14px; top: 14px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cond-grid, .treat-grid, .why__stats, .about__creds { grid-template-columns: 1fr; }
  .hero__chip--1 { left: 6px; }
  .hero__chip--2 { right: 6px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__crm { gap: 16px; }
  .reviews-head { align-items: flex-start; }
  .vsl-play { width: 68px; height: 68px; }
  .vsl-play__btn svg { width: 24px; height: 24px; }
  .vsl-modal__close { top: auto; bottom: -54px; right: 50%; transform: translateX(50%); }
  .vsl-modal__close:hover { transform: translateX(50%) rotate(90deg); }
}

/* ===================== PÁGINAS LEGAIS ===================== */
.legal-page .header { position: fixed; background: rgba(255,255,255,.9); -webkit-backdrop-filter: saturate(160%) blur(16px); backdrop-filter: saturate(160%) blur(16px); box-shadow: 0 1px 0 var(--line); }
.legal-page .burger { display: none !important; }
.legal-main { padding-top: calc(var(--header-h) + clamp(28px, 5vw, 56px)); padding-bottom: clamp(60px, 8vw, 110px); }
.legal { max-width: 820px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.legal h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 34px 0 12px; color: var(--ink); }
.legal p { margin-bottom: 14px; color: var(--text); line-height: 1.75; }
.legal ul { margin: 0 0 16px; padding: 0; }
.legal li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.legal li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); }
.legal a { color: var(--navy-600); text-decoration: underline; }
.legal a:hover { color: var(--orange-500); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; font-weight: 600; color: var(--navy-600); }
.legal__back svg { width: 18px; }
@media (max-width: 1040px) {
  .legal-page .header__cta .btn--ghost { display: inline-flex; }
}
