:root {
  --bg: #F3F5F8;
  --ink: #10151E;
  --ink-2: #182338;
  --gray: #66707E;
  --red: #C2272D;
  --blue: #004AAB;
  --white: #FFFFFF;
  --r-lg: 28px;
  --r-md: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--red); color: #fff; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .f-display { font-family: 'Archivo', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== NAV ===== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
nav {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px;
}
nav .brand { display: flex; align-items: center; }
nav .brand img { height: 44px; filter: brightness(0) invert(1); transition: filter .3s; }
nav ul { display: flex; gap: 6px; list-style: none; align-items: center; }
nav ul a {
  color: rgba(255,255,255,.9); font-weight: 500; font-size: 15px;
  padding: 10px 18px; border-radius: 999px; transition: background .2s, color .2s;
  white-space: nowrap;
}
@media (min-width: 1021px) and (max-width: 1260px) {
  nav ul { gap: 2px; }
  nav ul a { padding: 9px 11px; font-size: 14px; }
  nav .pill-btn { padding: 11px 16px; font-size: 14px; }
}
nav ul a:hover { background: rgba(255,255,255,.14); color: #fff; }
nav .pill-btn { background: var(--red); color: #fff; }
.nav-wrap.scrolled {
  background: var(--white);
  border-bottom-color: rgba(16,21,30,.08);
  box-shadow: 0 2px 14px -10px rgba(16,21,30,.15);
}
.nav-wrap.scrolled nav .brand img { filter: none; }
.nav-wrap.scrolled nav ul a { color: var(--ink); }
.nav-wrap.scrolled nav ul a:hover { background: rgba(16,21,30,.06); color: var(--red); }

.pill-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--ink);
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 15.5px;
  padding: 13px 26px; border-radius: 999px;
  transition: transform .2s, background .2s;
}
.pill-btn:hover { transform: scale(1.03); }

.btn-combo { display: inline-flex; align-items: center; gap: 6px; }
.btn-combo .circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  transition: transform .3s, background .3s;
}
.btn-combo:hover .circle { transform: rotate(45deg); background: var(--ink); color: #fff; }
.btn-combo .pill-btn { padding: 15px 30px; }
.btn-combo.dark .pill-btn { background: var(--ink); color: #fff; }

.tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 600;
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
}

.h2 {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.02;
}
.center { text-align: center; }
.center .tag { margin-bottom: 18px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink-2);
}
.hero .bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(16,21,30,.5) 0%, rgba(16,21,30,0) 24%),
    linear-gradient(to top, rgba(16,21,30,.85) 0%, rgba(16,21,30,.35) 50%, rgba(16,21,30,.12) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; padding-top: 140px; padding-bottom: 64px;
  color: #fff;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.85);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 84px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.0; max-width: 680px;
}
.hero-right {
  max-width: 380px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 24px;
  padding-bottom: 6px;
}
.hero-right p { font-size: 16.5px; color: rgba(255,255,255,.85); }
.hero .faces { display: flex; align-items: center; gap: 14px; }
.hero .faces .imgs { display: flex; }
.hero .faces .imgs img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.9); margin-left: -12px;
}
.hero .faces .imgs img:first-child { margin-left: 0; }
.hero .faces small { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.4; }
.hero .faces small b { color: #fff; }
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ===== GALERIA MARQUEE (rola sozinha + arrastável) ===== */
.gallery {
  padding: 60px 0 30px; overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.gallery::-webkit-scrollbar { display: none; }
.g-track { display: flex; gap: 20px; width: max-content; }
.g-item {
  width: 250px; height: 320px; border-radius: 24px; overflow: hidden;
  flex-shrink: 0; position: relative; cursor: zoom-in;
}
.g-item:nth-child(odd) { margin-top: 16px; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
  -webkit-user-drag: none; user-select: none;
}
.g-item:hover img { transform: scale(1.07); }

/* ===== SEGMENTOS ===== */
section { padding: 90px 0; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 52px; flex-wrap: wrap;
}
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards-4 .card-seg .photo { aspect-ratio: 2/3; }
.cards-4 .card-seg h3 { font-size: 21px; }
.cards-4 .card-seg .cat { font-size: 11px; }
.card-seg {
  display: block; background: var(--white); border-radius: var(--r-lg);
  padding: 12px; transition: transform .25s, box-shadow .25s;
}
.card-seg:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(16,21,30,.25); }
.card-seg .photo {
  border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/12;
  margin-bottom: 20px; background: #DFE4EA; position: relative;
}
.card-seg .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.card-seg:hover .photo img { transform: scale(1.05); }
.card-seg .body { padding: 4px 16px 18px; }
.card-seg .cat {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray); font-weight: 600; margin-bottom: 8px; display: block;
}
.card-seg h3 {
  font-size: 25px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 10px;
}
.card-seg .go {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; color: var(--ink);
}
.card-seg .go .mini {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  transition: transform .3s, background .3s;
}
.card-seg:hover .go .mini { transform: rotate(45deg); background: var(--ink); color: #fff; }

.photo-chips { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; align-items: center; }
.photo-chips .lbl { font-size: 14px; color: var(--gray); font-weight: 500; margin-right: 4px; }
.photo-chips a {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--white); border-radius: 999px;
  padding: 8px 22px 8px 8px; font-weight: 600; font-size: 14.5px;
  font-family: 'Archivo', sans-serif;
  box-shadow: 0 2px 10px -4px rgba(16,21,30,.08);
  transition: transform .2s, background .2s, color .2s;
}
.photo-chips a img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
}
.photo-chips a:hover { transform: translateY(-3px); background: var(--ink); color: #fff; }

/* ===== NÚMEROS ===== */
.numbers { padding: 40px 0 90px; }
.numbers .num-grid { margin-top: 52px; }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.num-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: transform .25s;
}
.num-card:hover { transform: translateY(-5px); }
.num-card strong {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(36px, 3.4vw, 48px); letter-spacing: -0.03em; line-height: 1;
  display: block; margin-bottom: 10px;
}
.num-card span { font-size: 14.5px; color: var(--gray); font-weight: 500; }
.num-card .ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
}

/* ===== COMPARATIVO ===== */
.versus { padding: 90px 0 110px; }
.vs-stage {
  max-width: 940px; margin: 70px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px; align-items: stretch;
}
.vs-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px 42px 44px; max-width: 100%;
}
.vs-card h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--gray); }
.vs-card ul { list-style: none; display: grid; gap: 16px; }
.vs-card li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: var(--gray); }
.vs-card.us {
  background: var(--red);
  box-shadow: 0 30px 60px -30px rgba(194,39,45,.55);
}
.vs-card.us li { color: #fff; font-weight: 500; }
.vs-card.us .logo-line { margin-bottom: 24px; }
.vs-card.us .logo-line img { height: 52px; filter: brightness(0) invert(1); }

/* ===== PROCESSO ===== */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.proc {
  background: var(--white);
  border-radius: var(--r-lg); padding: 30px 28px 34px; min-height: 250px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.proc:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(16,21,30,.2); }
.proc .top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: auto; }
.proc .num {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15px;
  background: rgba(16,21,30,.06); border-radius: 999px;
  width: 44px; height: 44px; display: grid; place-items: center;
}
.proc .p-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
}
.proc h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 26px 0 8px; }
.proc p { font-size: 14.5px; color: rgba(16,21,30,.65); }

/* ===== SOLUÇÕES ===== */
.how-grid {
  display: grid; grid-template-columns: 1fr 1.06fr 1.06fr;
  gap: 26px; align-items: start;
}
.how-grid > * { min-width: 0; }
.how-left { display: flex; flex-direction: column; gap: 30px; position: sticky; top: 110px; }
.how-left p { color: var(--gray); font-size: 16.5px; max-width: 340px; }
.how-left .left-photo {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; position: relative;
}
.how-left .left-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.talk-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 34px -18px rgba(16,21,30,.18);
  transition: transform .2s;
}
.talk-card:hover { transform: translateY(-3px); }
.talk-card .ava {
  width: 46px; height: 46px; border-radius: 50%; position: relative; flex-shrink: 0;
  overflow: visible;
}
.talk-card .ava img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.talk-card .ava::after {
  content: ""; position: absolute; top: -1px; right: -1px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #2FCB6F; border: 2.5px solid var(--white);
}
.talk-card strong { display: block; font-size: 15.5px; font-family: 'Archivo', sans-serif; }
.talk-card span { font-size: 14px; color: var(--gray); }
.talk-card .mini {
  margin-left: auto; width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  flex-shrink: 0; transition: transform .3s;
}
.talk-card:hover .mini { transform: rotate(45deg); }

.plan { background: var(--white); border-radius: var(--r-lg); padding: 14px; }
.plan .plan-top {
  background: var(--bg); border-radius: 20px; padding: 0; margin-bottom: 26px;
  overflow: hidden;
}
.plan .plan-top .pt-img { height: 150px; position: relative; }
.plan .plan-top .pt-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.plan .plan-top .pt-body { padding: 26px 28px 30px; }
.plan.dark { background: var(--ink-2); color: #fff; }
.plan.dark .plan-top { background: rgba(255,255,255,.07); }
.plan h3 {
  font-size: 25px; font-weight: 700; letter-spacing: -0.02em;
  display: flex; align-items: center; justify-content: space-between;
}
.plan h3 .t { display: inline-flex; align-items: center; gap: 11px; }
.plan .pop {
  background: var(--red); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.plan .pt-body p { font-size: 14.5px; color: var(--gray); margin: 6px 0 14px; }
.plan.dark .pt-body p { color: rgba(255,255,255,.65); }
.plan .big-line {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 32px; letter-spacing: -0.02em; line-height: 1;
}
.plan .big-line small { font-size: 14px; font-weight: 600; color: var(--gray); letter-spacing: 0; }
.plan.dark .big-line small { color: rgba(255,255,255,.6); }
.plan ul { list-style: none; padding: 0 16px; display: grid; gap: 14px; margin-bottom: 28px; }
.plan li { display: flex; gap: 12px; font-size: 15px; align-items: flex-start; }
.plan li .chk {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: #E2E7EE; color: var(--ink);
  display: grid; place-items: center;
}
.plan.dark li .chk { background: var(--red); color: #fff; }
.plan .action { padding: 0 16px 16px; }
.plan .action .btn-combo { width: 100%; }
.plan .action .pill-btn { flex: 1; justify-content: center; background: var(--ink); color: #fff; }
.plan.dark .action .pill-btn { background: var(--white); color: var(--ink); }

/* ===== DEPOIMENTOS ===== */
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.quote {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px 32px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s;
}
.quote:hover { transform: translateY(-5px); }
.quote.big {
  grid-column: span 2;
  display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start;
  padding: 22px;
}
.quote.big .photo {
  border-radius: 18px; overflow: hidden; height: 100%; min-height: 300px; position: relative;
}
.quote.big .photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.quote.big .content { padding: 16px 10px 16px 0; display: flex; flex-direction: column; gap: 18px; height: 100%; }
.quote .stars { display: flex; gap: 3px; color: var(--red); }
.quote h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.quote p { font-size: 15.5px; line-height: 1.65; color: var(--gray); }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote .ava {
  width: 46px; height: 46px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.quote .ava img { width: 100%; height: 100%; object-fit: cover; }
.quote .who strong { display: block; font-size: 15px; font-family: 'Archivo', sans-serif; }
.quote .who span { font-size: 13.5px; color: var(--gray); }
.g-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: 999px;
  padding: 10px 22px; margin-top: 24px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 2px 10px -4px rgba(16,21,30,.08);
}
.g-badge .stars { display: inline-flex; gap: 2px; color: var(--sun); }
.g-badge .stars svg.lucide { fill: #F5B942; color: #F5B942; width: 15px; height: 15px; }

/* ===== RR NA OBRA (feed) ===== */
.team { text-align: center; overflow: hidden; }
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; margin: 60px 0 44px;
}
.insta-grid a {
  display: block; aspect-ratio: 4/5;
  border-radius: 18px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 30px -18px rgba(16,21,30,.22);
  transition: transform .25s, box-shadow .25s;
}
.insta-grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.insta-grid a:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -22px rgba(16,21,30,.32); }
.insta-grid a:hover img { transform: scale(1.05); }
.team p.note { color: var(--gray); max-width: 420px; margin: 0 auto 34px; font-size: 16.5px; }

/* ===== CTA FINAL ===== */
.final-card {
  background: var(--ink-2); color: #fff;
  border-radius: 36px; padding: 64px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.final-card h2 {
  font-size: clamp(30px, 3.4vw, 46px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 20px;
  position: relative; z-index: 2;
}
.final-card p {
  color: rgba(255,255,255,.7); font-size: 17px;
  max-width: 720px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.final-card .hours { margin-top: 26px; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ===== FOOTER ===== */
footer {
  background: var(--blue); color: #fff;
  margin-top: 90px; padding: 90px 0 30px;
  position: relative; overflow: hidden;
}
.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px; margin-bottom: 40px;
}
.foot-top .slogan {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -0.03em; line-height: 1.05;
}
.foot-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 28px;
  font-family: 'Archivo', sans-serif;
}
.pill-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; list-style: none; }
.pill-links a {
  border: 1.5px solid rgba(255,255,255,.8); border-radius: 999px;
  padding: 8px 20px; font-weight: 600; font-size: 15.5px;
  font-family: 'Archivo', sans-serif;
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.pill-links a:hover { background: var(--white); color: var(--blue); }

.foot-contact { margin-top: 46px; }
.foot-contact a, .foot-contact div {
  display: block; font-weight: 600; font-size: 19px;
  font-family: 'Archivo', sans-serif; margin-bottom: 6px;
}
.foot-contact a:hover { color: rgba(255,255,255,.75); }
.foot-contact .addr { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14.5px; color: rgba(255,255,255,.75); }

.foot-right { display: flex; flex-direction: column; gap: 34px; align-items: flex-start; }
.socials { display: flex; gap: 10px; align-items: center; }
.socials .foot-label { margin: 0 12px 0 0; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  transition: transform .2s, background .2s, color .2s;
}
.socials a:hover { transform: scale(1.1); background: var(--white); color: var(--blue); }

.news-card {
  background: var(--bg); color: var(--ink); border-radius: var(--r-lg);
  padding: 32px 30px; width: 100%; max-width: 360px;
}
.news-card h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.news-card p { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.news-card input {
  width: 100%; border: none; border-radius: 999px;
  padding: 14px 22px; font-size: 14.5px; font-family: 'Inter', sans-serif;
  background: var(--white); margin-bottom: 12px; outline: none;
  color: var(--ink);
}
.news-card input:focus { box-shadow: 0 0 0 2px var(--red); }
.news-card .row { display: flex; gap: 6px; }
.news-card .pill-btn { background: var(--ink); color: #fff; flex: 1; justify-content: center; border: none; cursor: pointer; white-space: nowrap; padding: 13px 16px; font-size: 14.5px; }
.news-card .circle {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); color: #fff;
  display: grid; place-items: center; border: none; cursor: pointer;
  transition: transform .3s, background .3s;
}
.news-card .row:hover .circle { transform: rotate(45deg); background: var(--ink); color: #fff; }

.foot-logo { height: 64px; width: auto; filter: brightness(0) invert(1); margin-bottom: 30px; }
.foot-bottom {
  margin-top: 50px;
  border-top: 1.5px solid rgba(255,255,255,.3);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,.75);
}

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.55);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 29px; height: 29px; fill: #fff; }

/* ===== ÍCONES LUCIDE ===== */
svg.lucide { width: 18px; height: 18px; stroke-width: 2.2; }
.circle svg.lucide { width: 21px; height: 21px; }
.mini svg.lucide { width: 15px; height: 15px; }
.chk svg.lucide { width: 13px; height: 13px; stroke-width: 3; }
.stars svg.lucide { width: 17px; height: 17px; fill: var(--red); }
.plan h3 .t svg.lucide { width: 23px; height: 23px; color: var(--red); }
.vs-card.them li svg.lucide { width: 20px; height: 20px; color: #C3C9D2; flex-shrink: 0; }
.vs-card.us li svg.lucide { width: 20px; height: 20px; color: #fff; flex-shrink: 0; }
.socials svg.brand-ico { width: 20px; height: 20px; fill: currentColor; }
.num-card .ico svg.lucide { width: 19px; height: 19px; }
.proc .p-ico svg.lucide { width: 19px; height: 19px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1020px) {
  .hero-inner {
    flex-direction: column; align-items: flex-start;
    gap: 34px; padding-top: 120px; padding-bottom: 48px;
  }
  .hero-right { max-width: 480px; padding-bottom: 0; }
  .cards-3 { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .cards-4 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .how-grid { grid-template-columns: 1fr; }
  .how-left { position: static; }
  .num-grid, .proc-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .quote.big { grid-column: span 1; grid-template-columns: 1fr; }
  .quote.gcta { grid-column: span 1; }
  .quote.big .photo { min-height: 260px; }
  .vs-stage { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-top { grid-template-columns: 1fr; gap: 44px; }
  section { padding: 64px 0; }
}
@media (max-width: 620px) {
  .hero { min-height: 100svh; }
  .hero::after {
    background:
      linear-gradient(to bottom, rgba(16,21,30,.55) 0%, rgba(16,21,30,.12) 24%),
      linear-gradient(to top, rgba(16,21,30,.92) 0%, rgba(16,21,30,.55) 55%, rgba(16,21,30,.28) 100%);
  }
  .final-card { padding: 52px 22px; }
  .num-grid, .proc-grid { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ===== NAV DROPDOWN ===== */
nav ul li { position: relative; }
nav .has-drop > a { display: inline-flex; align-items: center; gap: 6px; }
nav .has-drop > a svg.lucide { width: 14px; height: 14px; }
nav .drop {
  display: none; position: absolute; top: 100%; left: 6px;
  background: var(--white); border-radius: 16px; padding: 8px;
  min-width: 195px; list-style: none;
  box-shadow: 0 18px 40px -18px rgba(16,21,30,.35);
}
nav .has-drop:hover .drop, nav .has-drop:focus-within .drop { display: block; }
nav ul .drop a { display: block; color: var(--ink); padding: 9px 14px; border-radius: 10px; font-size: 14.5px; }
nav ul .drop a:hover { background: rgba(16,21,30,.06); color: var(--red); }

/* ===== PAGE HERO (páginas internas) ===== */
.page-hero { min-height: 62vh; }
.page-hero h1 { font-size: clamp(40px, 5vw, 68px); }
@media (max-width: 620px) {
  .page-hero { min-height: 58svh; }
}

/* Cards de benefício com título em texto (páginas internas) */
.num-card strong.sm { font-size: clamp(24px, 2vw, 30px); }

/* ===== CONTATO ===== */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.contact-card {
  display: block; background: var(--white); border-radius: var(--r-lg);
  padding: 32px 28px; transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -30px rgba(16,21,30,.2); }
.contact-card .ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
}
.contact-card strong {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; display: block; margin-bottom: 6px;
}
.contact-card span { font-size: 14.5px; color: var(--gray); font-weight: 500; line-height: 1.5; display: block; }
.map-card {
  border-radius: var(--r-lg); overflow: hidden; margin-top: 26px;
  box-shadow: 0 20px 45px -30px rgba(16,21,30,.25);
}
.map-card iframe { width: 100%; height: 440px; border: 0; display: block; }
.store-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: stretch; }
.store-grid .store-photo { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 320px; }
.store-grid .store-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
@media (max-width: 1020px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .store-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-card iframe { height: 340px; }
}

/* ===== VITRINE DE MODELOS ===== */
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.model-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 12px; transition: transform .25s, box-shadow .25s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(16,21,30,.25); }
.model-card .photo {
  border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/4;
  background: #DFE4EA; position: relative;
}
.model-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.model-card:hover .photo img { transform: scale(1.05); }
.model-card .body { padding: 16px 12px 10px; }
.model-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 3px; }
.model-card .cat { font-size: 13px; color: var(--gray); font-weight: 500; }
.models-context {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 21/9; margin-top: 26px;
}
.models-context img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.models-context .ctx-badge {
  position: absolute; bottom: 22px; left: 22px; z-index: 2;
  background: rgba(255,255,255,.93); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 11px 22px;
  font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px;
}
.models-context .ctx-badge svg.lucide { width: 16px; height: 16px; color: var(--red); }
@media (max-width: 1020px) {
  .models-grid { grid-template-columns: 1fr 1fr; }
  .models-context { aspect-ratio: 16/10; }
}
@media (max-width: 620px) {
  .models-grid { grid-template-columns: 1fr; }
  .models-context .ctx-badge { left: 14px; bottom: 14px; font-size: 13px; padding: 9px 16px; }
}

/* ===== MENU MOBILE ===== */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-burger {
  display: none; width: 46px; height: 46px;
  background: transparent; border: none; cursor: pointer;
  border-radius: 50%; color: #fff;
  place-items: center;
}
.nav-burger svg.lucide { width: 24px; height: 24px; }
.nav-burger .ic-x { display: none; }
.drawer-top { display: none; }
.nav-wrap.scrolled .nav-burger, .nav-wrap.open .nav-burger { color: var(--ink); }
@media (max-width: 1020px) {
  .nav-burger { display: grid; }
  .nav-wrap.open { background: var(--white); border-bottom-color: rgba(16,21,30,.08); }
  .nav-wrap.open nav .brand img { filter: none; }
  .nav-wrap.open .nav-burger .ic-menu { display: none; }
  .nav-wrap.open .nav-burger .ic-x { display: block; }
  /* backdrop */
  .nav-wrap::before {
    content: ""; position: fixed; inset: 0; background: rgba(16,21,30,.45);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .nav-wrap.open::before { opacity: 1; pointer-events: auto; }
  /* drawer lateral (cobre a barra; logo e fechar ficam dentro dele) */
  nav ul {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 3;
    width: min(340px, 86vw);
    background: var(--white);
    padding: 18px 18px 30px; overflow-y: auto;
    box-shadow: -24px 0 60px -30px rgba(16,21,30,.45);
    transform: translateX(110%); visibility: hidden;
    transition: transform .35s cubic-bezier(.22,.8,.3,1), visibility .35s;
  }
  .nav-wrap.open nav ul { transform: none; visibility: visible; }
  .drawer-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 6px 16px; margin-bottom: 8px;
    border-bottom: 1px solid rgba(16,21,30,.08);
  }
  .drawer-top img { height: 42px; }
  .drawer-close {
    width: 42px; height: 42px; border: 0; border-radius: 50%;
    background: var(--bg); color: var(--ink); font-size: 22px; line-height: 1;
    cursor: pointer; transition: background .2s, color .2s;
  }
  .drawer-close:hover { background: var(--red); color: #fff; }
  nav ul a { color: var(--ink); display: block; padding: 12px 16px; }
  nav ul a:hover { background: rgba(16,21,30,.06); color: var(--red); }
  nav .drop {
    display: block; position: static; box-shadow: none;
    background: transparent; padding: 0 0 6px 16px; min-width: 0;
  }
  nav .drop a { font-size: 14px; padding: 9px 16px; color: var(--gray); }
}
@media (max-width: 620px) {
  nav { padding: 10px 16px; }
  nav .brand img { height: 38px; }
  nav .pill-btn { padding: 11px 18px; font-size: 14px; }
}

/* ===== EXTRAS RR ===== */
.ava.init {
  display: grid; place-items: center;
  color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px;
}
.ava.init.az { background: var(--blue); }
.ava.init.vm { background: var(--red); }
.quote.gcta { background: var(--ink-2); color: #fff; justify-content: center; }
@media (min-width: 1021px) { .quote.gcta { grid-column: span 2; } }
.quote.gcta h3 { color: #fff; }
.quote.gcta p { color: rgba(255,255,255,.68); }
.quote.gcta .go {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; color: #fff; margin-top: auto;
}
.quote.gcta .go .mini {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  transition: transform .3s;
}
.quote.gcta:hover .go .mini { transform: rotate(45deg); }

/* ===== SOBRE ===== */
.sec-lead { color: var(--gray); font-size: 17px; max-width: 640px; margin: 18px auto 0; }

/* ===== ACABAMENTOS (swatches) ===== */
.swatch-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.swatch-group { background: var(--white); border-radius: var(--r-lg); padding: 34px 32px; }
.swatch-group h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.swatch-group > p { font-size: 14.5px; color: var(--gray); margin-bottom: 22px; }
.swatches { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); border-radius: 999px;
  padding: 7px 18px 7px 8px;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 14px;
}
.swatch .dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(16,21,30,.1); flex-shrink: 0;
}
@media (max-width: 1020px) { .swatch-groups { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { margin: 52px auto 0; display: grid; gap: 14px; }
.faq-list details {
  background: var(--white); border-radius: var(--r-md);
  padding: 20px 26px;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 16.5px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 600; font-size: 18px; line-height: 1;
  transition: transform .25s, background .25s, color .25s;
}
.faq-list details[open] summary::after { content: "–"; background: var(--red); color: #fff; }
.faq-list details p { margin-top: 14px; color: var(--gray); font-size: 15px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex;
  align-items: center; justify-content: center; padding: 28px;
  background: rgba(16, 21, 30, .88); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(1100px, 94vw); text-align: center; }
.lightbox img {
  max-width: 100%; max-height: 82vh; border-radius: var(--r-md);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); display: block; margin: 0 auto;
}
.lightbox img { transition: opacity .18s ease; }
.lightbox figcaption { color: #fff; font-weight: 600; font-size: 16px; margin-top: 14px; }
.lightbox .lb-count {
  display: block; color: rgba(255,255,255,.55); font-size: 13px;
  font-weight: 500; margin-top: 4px; text-align: center;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox .lb-nav:hover { background: var(--red); }
.lightbox .lb-nav svg { width: 22px; height: 22px; }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
.lightbox.single .lb-nav, .lightbox.single .lb-count { display: none; }
@media (max-width: 620px) {
  .lightbox { padding: 16px; }
  .lightbox .lb-nav { width: 44px; height: 44px; }
  .lightbox .lb-prev { left: 8px; }
  .lightbox .lb-next { right: 8px; }
}
.lightbox .lb-close {
  position: absolute; top: 18px; right: 22px; width: 46px; height: 46px;
  border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12);
  color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background .2s;
}
.lightbox .lb-close:hover { background: var(--red); }
.model-card .photo { cursor: zoom-in; }
.model-card .cat .quote-link { color: var(--red); font-weight: 600; }
.model-card .cat .quote-link:hover { text-decoration: underline; }

/* ===== POPUP DE ORÇAMENTO ===== */
.orc-modal {
  position: fixed; inset: 0; z-index: 210; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(16, 21, 30, .78); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.orc-modal.on { opacity: 1; pointer-events: auto; }
.orc-card {
  background: var(--white); border-radius: var(--r-lg); width: 100%;
  max-width: 520px; max-height: 92vh; overflow-y: auto;
  padding: 34px 32px 30px; position: relative;
  transform: translateY(14px); transition: transform .25s ease;
}
.orc-modal.on .orc-card { transform: none; }
.orc-card .orc-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border: 0; border-radius: 50%; background: var(--bg); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s, color .2s;
}
.orc-card .orc-close:hover { background: var(--red); color: #fff; }
.orc-card .tag { margin-bottom: 12px; }
.orc-card h3 {
  font-size: 27px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 6px;
}
.orc-card .orc-sub { color: var(--gray); font-size: 15px; margin-bottom: 22px; }
.orc-form label {
  display: block; font-size: 13.5px; font-weight: 600; margin: 14px 0 6px;
}
.orc-form label span { color: var(--gray); font-weight: 500; }
.orc-form input, .orc-form select, .orc-form textarea {
  width: 100%; border: 1.5px solid #E2E6EC; background: var(--bg);
  border-radius: 14px; padding: 13px 15px; font: inherit; font-size: 15px;
  color: var(--ink); outline: none; transition: border-color .2s, background .2s;
}
.orc-form input:focus, .orc-form select:focus, .orc-form textarea:focus {
  border-color: var(--red); background: var(--white);
}
.orc-form textarea { resize: vertical; min-height: 96px; }
.orc-form .orc-send {
  width: 100%; margin-top: 22px; border: 0; cursor: pointer;
  background: var(--red); color: #fff; font: inherit; font-weight: 600;
  font-size: 16px; padding: 16px 24px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s, background .2s;
}
.orc-form .orc-send:hover { transform: scale(1.02); background: #a81f24; }
.orc-form .orc-note {
  text-align: center; font-size: 13px; color: var(--gray); margin-top: 12px;
}
@media (max-width: 620px) {
  .orc-card { padding: 28px 22px 24px; }
}

/* ===== SELETOR DE COR DOS CARDS ===== */
.color-toggle {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  display: flex; gap: 8px; padding: 6px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  border-radius: 999px; box-shadow: 0 6px 18px -8px rgba(16,21,30,.35);
}
.color-toggle .ct {
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; padding: 0; transition: transform .15s, border-color .15s;
}
.color-toggle .ct:hover { transform: scale(1.12); }
.color-toggle .ct-preto { background: var(--ink); }
.color-toggle .ct-branco { background: #fff; box-shadow: inset 0 0 0 1.5px rgba(16,21,30,.25); }
.color-toggle .ct.on { border-color: var(--red); }

/* faixas de investimento do formulário de orçamento */
.orc-faixas { display: grid; gap: 8px; }
.orc-faixas .faixa {
  display: flex; align-items: center; gap: 11px; margin: 0;
  border: 1.5px solid #E2E6EC; background: var(--bg);
  border-radius: 14px; padding: 12px 15px; cursor: pointer;
  font-size: 15px; font-weight: 500; transition: border-color .2s, background .2s;
}
.orc-faixas .faixa:hover { border-color: rgba(194,39,45,.45); }
.orc-faixas .faixa input {
  width: 18px; height: 18px; accent-color: var(--red); margin: 0; flex-shrink: 0;
}
.orc-faixas .faixa:has(input:checked) {
  border-color: var(--red); background: var(--white);
}
