/* ============================================
   HEXAN TI v3 — Main CSS
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #1a0a2e;
  --bg2:    #220d3a;
  --bg3:    #2d1150;
  --bdr:    rgba(255,255,255,.09);
  --bdr2:   rgba(255,255,255,.18);
  --purple: #522F88;
  --gold:   #D4A017;
  --orange: #DC7139;
  --green:  #522F88;
  --green2: #6b3db5;
  --cyan:   #00C8D4;
  --white:  #fff;
  --off:    #e0e0e0;
  --gray:   #888;
  --gray2:  #444;
  --gold2:  #D4A017;
  --blue:   #DC7139;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--off);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
#hnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 62px; display: flex; align-items: center;
  padding: 0 2rem;
  transition: background .3s, border .3s;
}
#hnav.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
}
.hnav-w {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.hnav-logo img { height: 34px; display: block; }
.hnav-links {
  display: flex; align-items: center; gap: 1rem;
}
.hnav-links a {
  font-size: 12px; color: rgba(255,255,255,.58);
  text-decoration: none; transition: color .2s;
  white-space: nowrap;
}
.hnav-links a:hover { color: #fff; }
.hnav-cta {
  background: var(--purple) !important;
  color: #000 !important;
  padding: 7px 20px !important;
  border-radius: 980px !important;
  font-weight: 600 !important;
  font-size: 12.5px !important;
}
.hnav-cta:hover { background: var(--green2) !important; }
.theme-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all .2s; flex-shrink: 0;
}
.theme-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; border: none; background: none; padding: 4px;
}
.hamburger span {
  width: 22px; height: 1.5px; background: rgba(255,255,255,.6);
  display: block; border-radius: 2px;
}
.mob-menu {
  display: none; position: fixed; inset: 62px 0 0 0;
  background: rgba(8,8,8,.98); z-index: 890;
  flex-direction: column; padding: 1.5rem; gap: .3rem; overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 15px; color: rgba(255,255,255,.7);
  text-decoration: none; padding: .7rem 0;
  border-bottom: 1px solid var(--bdr);
}
.mob-menu a.mob-cta { color: var(--purple); font-weight: 600; border: none; margin-top: .5rem; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.68) 0%, rgba(0,0,0,.48) 50%, rgba(8,8,8,1) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; padding: 0 1.5rem; }
.hero-eye {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1.25rem; font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700; color: #fff; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--purple); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  max-width: 540px; margin: 0 auto 2.25rem;
  line-height: 1.8; font-weight: 300;
}
.hero-cta-btn {
  display: inline-block; background: var(--purple); color: #000;
  padding: 14px 36px; border-radius: 980px; font-size: 14.5px;
  font-weight: 600; text-decoration: none; transition: all .2s;
}
.hero-cta-btn:hover { background: var(--green2); transform: translateY(-2px); }
.hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .65rem; margin-top: 2rem;
}
.hero-tag {
  font-size: 12px; color: rgba(255,255,255,.92);
  padding: 5px 14px; border: 1px solid rgba(255,255,255,.45);
  border-radius: 980px; background: rgba(0,0,0,.42);
  backdrop-filter: blur(6px); font-weight: 500;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  z-index: 1; animation: sbounce 2s infinite;
}
.scroll-hint span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.28); }
.scroll-hint svg { width: 16px; height: 16px; color: rgba(255,255,255,.28); }
@keyframes sbounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(5px)} }

/* ---- SECTIONS ---- */
.hsec { padding: 5.5rem 1.5rem; }
.hsec-alt { background: var(--bg2); }
.hcenter { text-align: center; }
.hw { max-width: 1100px; margin: 0 auto; }
.eye {
  font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--purple); font-weight: 600; margin-bottom: .6rem; display: block;
}
.htitle {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.15;
  letter-spacing: -.025em; margin-bottom: .7rem;
}
.hlead {
  font-size: .98rem; color: var(--gray); max-width: 540px;
  line-height: 1.85; font-weight: 300;
}
.hcenter .hlead { margin: 0 auto 2.5rem; }

/* ---- DORES ---- */
.dores-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--bdr);
  border-radius: 14px; overflow: hidden; margin-top: 2.5rem;
}
.dor {
  background: var(--bg2); padding: 1.75rem 1.5rem;
  text-align: center; transition: background .2s;
}
.dor:hover { background: var(--bg3); }
.dor-icon { font-size: 1.8rem; margin-bottom: .75rem; display: block; }
.dor-t { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: .4rem; }
.dor-d { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ---- SOBRE ---- */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.sobre-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.85); }
.sobre-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.sobre-num { padding: 1.1rem; background: var(--bg); border: 1px solid var(--bdr); border-radius: 10px; }
.sn-val { font-size: 1.9rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.sn-lbl { font-size: 11.5px; color: var(--gray); margin-top: .3rem; }
.btn-secondary {
  display: inline-block; background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 980px; font-size: 13.5px;
  font-weight: 500; border: 1px solid rgba(255,255,255,.2);
  text-decoration: none; transition: all .2s; margin-bottom: 1.5rem;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

/* ---- STEPS ---- */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; margin-top: 2.5rem; counter-reset: step;
}
.step { position: relative; padding-top: 3rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  font-size: 3.2rem; font-weight: 700;
  color: rgba(82,47,136,.1); line-height: 1;
}
.step-t { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.step-d { font-size: 13.5px; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ---- FULLPHOTO ---- */
.fullphoto { position: relative; height: 400px; overflow: hidden; }
.fp-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.38) saturate(1.05);
}
.fp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.fp-inner {
  position: relative; z-index: 1; max-width: 1100px;
  margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
}
.fp-inner blockquote {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  color: #fff; line-height: 1.5; font-style: italic;
  font-weight: 400; max-width: 700px;
}
.fp-inner blockquote::before {
  content: '\201C'; font-size: 3.8rem; color: var(--purple);
  line-height: 0; vertical-align: -.5em; margin-right: .1em;
}

/* ====================================================
   CARROSSEL DE PLANOS — totalmente reescrito do zero
   ==================================================== */
.car-section { padding: 5.5rem 1.5rem; }
.car-section .hcenter { margin-bottom: 2.5rem; }

.car-outer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
/* Setas */
.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--bdr2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; z-index: 10;
}
.car-arrow:hover { background: var(--bg3); border-color: var(--purple); color: var(--purple); }
.car-arrow.prev { left: -20px; }
.car-arrow.next { right: -20px; }

/* Viewport */
.car-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track */
.car-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Cards — largura fixa calculada pelo JS */
.plan-card {
  flex-shrink: 0;
  flex-grow: 0;
  /* largura definida via JS: card.style.width */
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  transition: border-color .2s;
}
.plan-card:hover { border-color: var(--bdr2); }
.plan-card.featured { border-color: var(--purple); background: rgba(82,47,136,.03); }
.plan-card.gold     { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.03); }

.plan-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.plan-num { font-size: 2.2rem; font-weight: 700; color: rgba(255,255,255,.06); line-height: 1; }
.plan-badge {
  font-size: 9.5px; font-weight: 700; padding: 3px 11px;
  border-radius: 980px; text-transform: uppercase; letter-spacing: .7px;
}
.badge-green  { background: rgba(82,47,136,.12); color: var(--purple); border: 1px solid rgba(82,47,136,.3); }
.badge-blue   { background: rgba(220,113,57,.12); color: var(--blue); }
.badge-gold   { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }

.plan-name { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.plan-sub  { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: .7rem; font-weight: 300; }
.plan-div  { height: 1px; background: var(--bdr); margin: .7rem 0; }
.plan-lbl  { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple); font-weight: 600; margin: .7rem 0 .45rem; display: block; }

.plan-ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: .5rem; }
.plan-ul li {
  font-size: 12.5px; color: rgba(255,255,255,.62);
  padding-left: 16px; position: relative; line-height: 1.5; font-weight: 300;
}
.plan-ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
}
.plan-ul li.plus::before { background: var(--blue); }
.plan-ul li.lim::before  { background: var(--gray2); width: 5px; height: 1px; top: 9px; border-radius: 0; }

.plan-cta { margin-top: auto; padding-top: 1.1rem; }
.plan-btn {
  width: 100%; padding: 11px; border-radius: 980px;
  font-size: 12px; font-weight: 600; border: none;
  cursor: pointer; font-family: inherit; transition: all .2s; letter-spacing: .2px;
}
.btn-green  { background: var(--purple); color: #000; }
.btn-green:hover { background: var(--green2); }
.btn-outline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid var(--bdr2); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-gold   { background: var(--gold); color: #000; }
.btn-gold:hover { opacity: .9; }

/* Dots */
.car-dots {
  display: flex; justify-content: center; gap: .5rem; margin-top: 1.75rem;
}
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bdr2); border: none; cursor: pointer; padding: 0; transition: all .2s;
}
.car-dot.on { background: var(--purple); width: 22px; border-radius: 4px; }

/* ---- DIFERENCIAIS ---- */
.difs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--bdr); border-radius: 14px; overflow: hidden; margin-top: 2.5rem;
}
.dif {
  padding: 1.75rem; border-bottom: 1px solid var(--bdr);
  border-right: 1px solid var(--bdr);
  display: flex; gap: .9rem; align-items: flex-start; transition: background .2s;
}
.dif:hover { background: var(--bg2); }
.dif:nth-child(2n)         { border-right: none; }
.dif:nth-last-child(-n+2)  { border-bottom: none; }
.dif-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(82,47,136,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dif-t { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: .3rem; }
.dif-d { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ---- DEPOIMENTOS ---- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.testi {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 14px; padding: 1.75rem; transition: border-color .2s;
}
.testi:hover { border-color: var(--bdr2); }
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: .75rem; }
.testi-q { font-size: 2.2rem; color: var(--purple); line-height: .8; margin-bottom: .4rem; }
.testi-txt { font-size: 13.5px; color: var(--gray); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; font-weight: 300; }
.testi-div { height: 1px; background: var(--bdr); margin-bottom: 1.1rem; }
.testi-who { display: flex; align-items: center; gap: .7rem; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(82,47,136,.1); border: 1px solid rgba(82,47,136,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--purple); flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: #fff; }
.testi-role { font-size: 11px; color: var(--gray); }

/* ---- BLOG ---- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.blog-card {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 14px; overflow: hidden; transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: var(--bdr2); transform: translateY(-3px); }
.blog-thumb { height: 190px; overflow: hidden; }
.blog-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.8); transition: transform .4s;
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-body { padding: 1.4rem; }
.blog-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); font-weight: 600; margin-bottom: .45rem; display: block; }
.blog-title { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.45; margin-bottom: .65rem; }
.blog-more { font-size: 12.5px; color: var(--purple); text-decoration: none; font-weight: 500; }
.blog-more:hover { text-decoration: underline; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 740px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--bdr); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.35rem 0; font-size: 15.5px; font-weight: 500; color: #fff;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-family: inherit; transition: color .2s;
}
.faq-btn:hover { color: var(--purple); }
.faq-btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .3s; color: var(--purple); opacity: .7; }
.faq-item.open .faq-btn svg { transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .3s; }
.faq-item.open .faq-ans { max-height: 400px; padding-bottom: 1.35rem; }
.faq-ans p { font-size: 14px; color: var(--gray); line-height: 1.85; font-weight: 300; }

/* ---- CTA FINAL ---- */
.cta-final {
  position: relative; padding: 7rem 1.5rem; text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.3);
}
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner .htitle { margin-bottom: 1rem; }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,.62); margin-bottom: 2.25rem; line-height: 1.8; font-weight: 300; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ---- FOOTER ---- */
footer { background: #000; border-top: 1px solid var(--bdr); padding: 3.5rem 1.5rem 2rem; }
.ft-w { max-width: 1100px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.ft-desc { font-size: 13px; color: #444; line-height: 1.8; margin-top: .65rem; max-width: 270px; }
.ft-h { font-size: 10px; text-transform: uppercase; letter-spacing: 1.8px; color: var(--gray); font-weight: 600; margin-bottom: .9rem; }
.ft-links { display: flex; flex-direction: column; gap: .45rem; }
.ft-links a { font-size: 13px; color: #444; text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: #fff; }
.ft-ci { display: flex; align-items: center; gap: .5rem; font-size: 12.5px; color: #444; margin-bottom: .5rem; }
.ft-ci svg { width: 12px; height: 12px; color: var(--purple); flex-shrink: 0; }
.ft-bot { border-top: 1px solid var(--bdr); padding-top: 1.35rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.ft-copy { font-size: 11.5px; color: #333; }

/* ---- WPP FLOAT ---- */
.wpp-btn {
  position: fixed; bottom: 22px; right: 22px; width: 50px; height: 50px;
  background: var(--purple); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 4px 20px rgba(82,47,136,.3);
  transition: transform .2s; text-decoration: none;
}
.wpp-btn:hover { transform: scale(1.1); }

/* ---- TEMA CLARO ---- */
body.light {
  --bg: #f4f4f4; --bg2: #fff; --bg3: #ebebeb;
  --bdr: rgba(0,0,0,.08); --bdr2: rgba(0,0,0,.15);
  --off: #222; --gray: #555; --gray2: #999;
  color: #222; background: #f4f4f4;
}
body.light #hnav.scrolled { background: rgba(244,244,244,.96); border-bottom: 1px solid rgba(0,0,0,.09); }
body.light .hnav-links a { color: rgba(0,0,0,.52); }
body.light .hnav-links a:hover { color: #000; }
body.light .hnav-logo { background: transparent; padding: 0; border-radius: 0; }
body.light .theme-btn { background: rgba(0,0,0,.07); border-color: rgba(0,0,0,.12); color: #555; }
body.light .hero-overlay { background: linear-gradient(to bottom,rgba(0,0,0,.58) 0%,rgba(0,0,0,.4) 50%,rgba(244,244,244,1) 100%); }
body.light .fp-inner blockquote { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.8); }
body.light .fp-bg { filter: brightness(.3); }
body.light .plan-card { background: #fff; border-color: rgba(0,0,0,.08); }
body.light .plan-name { color: #111; }
body.light .plan-sub  { color: #666; }
body.light .plan-ul li { color: rgba(0,0,0,.62); }
body.light .plan-ul li.lim { color: #999; }
body.light .dor  { background: #fff; } body.light .dor:hover { background: #f0f0f0; }
body.light .dor-t { color: #111; }
body.light .testi { background: #fff; } body.light .testi-name { color: #111; }
body.light .sobre-num { background: #fff; }
body.light .sn-val { color: #111; }
body.light .blog-card { background: #fff; }
body.light .blog-title { color: #111; }
body.light .step-t { color: #111; }
body.light .dif:hover { background: #f8f8f8; }
body.light .dif-t { color: #111; }
body.light .faq-btn { color: #111; }
body.light .htitle { color: #111; }
body.light .mob-menu { background: rgba(244,244,244,.99); }
body.light .mob-menu a { color: #333; border-bottom-color: rgba(0,0,0,.08); }
body.light footer { background: #1a1a1a; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .dores-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2rem; }
  .difs-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .dif:nth-child(2n) { border-right: 1px solid var(--bdr); }
  .dif { border-right: none !important; }
}
@media (max-width: 600px) {
  .hnav-links { display: none; }
  .hamburger   { display: flex; }
  .dores-grid, .steps-grid, .ft-grid { grid-template-columns: 1fr; }
  .hsec { padding: 4rem 1.25rem; }
  .fullphoto { height: 280px; }
}



/* === NAV MODO CLARO — SEMPRE VISÍVEL === */
body.light #hnav {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,.1) !important;
}
body.light .hnav-logo {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
body.light .hnav-logo img {
  filter: brightness(0) !important;
}
body.light .hnav-links a {
  color: rgba(0,0,0,.65) !important;
}
body.light .hnav-links a:hover {
  color: #000 !important;
}
body.light .hnav-cta {
  background: var(--purple) !important;
  color: #000 !important;
}
body.light .theme-btn {
  background: rgba(0,0,0,.08) !important;
  border-color: rgba(0,0,0,.15) !important;
  color: #444 !important;
}
body.light .hamburger span {
  background: rgba(0,0,0,.65) !important;
}
body.light .mob-menu {
  background: #ffffff !important;
}
body.light .mob-menu a {
  color: #333 !important;
  border-bottom-color: rgba(0,0,0,.08) !important;
}
body.light .mob-menu a.mob-cta {
  color: var(--purple) !important;
}

/* === FIX NOSSOS SERVIÇOS MODO CLARO === */
body.light .svc-ul li,
body.light .svc-items li {
  color: #333 !important;
}
body.light .svc-ul li::before,
body.light .svc-items li::before {
  background: var(--purple) !important;
}
body.light .svc-h,
body.light .svc-title {
  color: #111 !important;
}
body.light .svc-d,
body.light .svc-desc {
  color: #444 !important;
}
body.light .svc-chip,
body.light .svc-sub {
  color: #444 !important;
  border-color: rgba(0,0,0,.2) !important;
}
body.light .svc-tag {
  color: var(--purple) !important;
}
body.light .svc-n {
  color: rgba(0,0,0,.05) !important;
}
body.light .svc-sec {
  background: #ffffff !important;
}
body.light .svc-sec:nth-child(odd) {
  background: #f5f5f5 !important;
}
body.light .idx-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
body.light .idx-a {
  color: #666;
}
body.light .idx-a:hover {
  color: #111;
  border-bottom-color: var(--purple);
}
body.light .loc-t { color: #111 !important; }
body.light .loc-d { color: #555 !important; }
body.light .loc-item { background: #fff; }
body.light .loc-item:hover { background: #f0f0f0; }
body.light .loc-grid { background: rgba(0,0,0,.07); }

/* ============================================
   HEXAN v4 — IDENTIDADE VISUAL ROXO/OURO
   ============================================ */

/* Gradiente de fundo escuro roxo */
body {
  background: linear-gradient(135deg, #0d0518 0%, #1a0a2e 50%, #0d0518 100%) !important;
}

/* Acento dourado em elementos chave */
.eye { color: #D4A017 !important; }
.hero h1 em { color: #D4A017 !important; }
.hero-cta-btn {
  background: linear-gradient(135deg, #D4A017, #DC7139) !important;
  color: #fff !important;
}
.hero-cta-btn:hover {
  background: linear-gradient(135deg, #DC7139, #D4A017) !important;
  transform: translateY(-2px);
}
.hnav-cta {
  background: linear-gradient(135deg, #D4A017, #DC7139) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.hnav-cta:hover {
  background: linear-gradient(135deg, #DC7139, #D4A017) !important;
}
.plan-card.featured {
  border-color: #D4A017 !important;
  background: rgba(212,160,23,.06) !important;
}
.plan-card.gold {
  border-color: #DC7139 !important;
  background: rgba(220,113,57,.06) !important;
}
.btn-green {
  background: linear-gradient(135deg, #522F88, #6b3db5) !important;
  color: #fff !important;
}
.btn-green:hover { opacity: .9; }
.btn-gold {
  background: linear-gradient(135deg, #D4A017, #DC7139) !important;
  color: #fff !important;
}
.car-dot.on { background: #D4A017 !important; width: 22px; }
.car-arrow:hover { border-color: #D4A017 !important; color: #D4A017 !important; }
.wpp-btn { background: linear-gradient(135deg, #D4A017, #DC7139) !important; }
.blog-tag { color: #D4A017 !important; }
.blog-more { color: #D4A017 !important; }
.testi-q { color: #D4A017 !important; }
.testi-av {
  background: rgba(212,160,23,.12) !important;
  border-color: rgba(212,160,23,.3) !important;
  color: #D4A017 !important;
}
.dif-icon { background: rgba(82,47,136,.2) !important; }
.sobre-num { border-color: rgba(212,160,23,.2) !important; }
.sn-val { color: #D4A017 !important; }
.step::before { color: rgba(212,160,23,.12) !important; }
.fp-inner blockquote::before { color: #D4A017 !important; }
.scroll-hint svg, .scroll-hint span { color: rgba(212,160,23,.4) !important; }
.hero-tag {
  border-color: rgba(212,160,23,.35) !important;
  color: rgba(255,255,255,.88) !important;
  background: rgba(82,47,136,.3) !important;
}
.faq-btn:hover { color: #D4A017 !important; }
.faq-btn svg { color: #D4A017 !important; }
.plan-lbl { color: #D4A017 !important; }
.plan-ul li::before { background: #D4A017 !important; }
.plan-ul li.plus::before { background: #DC7139 !important; }
.dor:hover { background: rgba(82,47,136,.3) !important; }
.ft-ci svg { color: #D4A017 !important; }
.ft-links a:hover { color: #D4A017 !important; }

/* Hero glow roxo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(82,47,136,.25), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Borda superior nas seções alt */
.hsec-alt {
  background: rgba(34,13,58,.7) !important;
  border-top: 1px solid rgba(212,160,23,.08);
  border-bottom: 1px solid rgba(212,160,23,.08);
}

/* Plano featured brilho dourado */
.plan-card.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4A017, #DC7139);
  border-radius: 18px 18px 0 0;
}
.plan-card { position: relative; overflow: hidden; }

/* Svc tag v4 */
.svc-tag { color: #D4A017 !important; }
.svc-tag::before { background: #D4A017 !important; }
.btn-svc {
  background: linear-gradient(135deg, #D4A017, #DC7139) !important;
  color: #fff !important;
}
.btn-svc:hover { opacity: .9; transform: translateY(-1px); }
.idx-a:hover { color: #D4A017 !important; border-bottom-color: #D4A017 !important; }

/* Modo claro v4 */
body.light {
  --bg: #f5f0ff;
  --bg2: #ffffff;
  --bg3: #ede8f8;
}
body.light #hnav,
body.light #hnav.scrolled {
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid rgba(82,47,136,.15) !important;
}
body.light .hnav-links a { color: rgba(0,0,0,.65) !important; }
body.light .hnav-links a:hover { color: #522F88 !important; }
body.light .hnav-logo img { filter: none !important; }
body.light .htitle { color: #1a0a2e !important; }
body.light .hlead { color: #555 !important; }
body.light .dor { background: #fff !important; }
body.light .dor:hover { background: #f5f0ff !important; }
body.light .dor-t { color: #1a0a2e !important; }
body.light .testi { background: #fff !important; }
body.light .testi-name { color: #1a0a2e !important; }
body.light .step-t { color: #1a0a2e !important; }
body.light .dif:hover { background: #f5f0ff !important; }
body.light .dif-t { color: #1a0a2e !important; }
body.light .faq-btn { color: #1a0a2e !important; }
body.light .plan-card { background: #fff !important; border-color: rgba(82,47,136,.12) !important; }
body.light .plan-name { color: #1a0a2e !important; }
body.light .plan-ul li { color: rgba(0,0,0,.65) !important; }
body.light .blog-card { background: #fff !important; }
body.light .blog-title { color: #1a0a2e !important; }
body.light .sobre-num { background: #fff !important; border-color: rgba(82,47,136,.15) !important; }
body.light .sn-val { color: #522F88 !important; }
body.light .svc-sec { background: #fff !important; }
body.light .svc-sec:nth-child(odd) { background: #f5f0ff !important; }
body.light .svc-h, body.light .svc-title { color: #1a0a2e !important; }
body.light .svc-d, body.light .svc-desc { color: #444 !important; }
body.light .svc-items li, body.light .svc-ul li { color: #333 !important; }
body.light .svc-chip { color: #522F88 !important; border-color: rgba(82,47,136,.25) !important; }
body.light footer { background: #1a0a2e !important; }
body.light .mob-menu { background: rgba(255,255,255,.99) !important; }
body.light .mob-menu a { color: #333 !important; }
body.light .hsec-alt { background: #f5f0ff !important; border-color: rgba(82,47,136,.08) !important; }
