/* VERIDOR TECH | Landing Page */
:root {
  /* Paleta Veridor Tech */
  --navy: #082044;          /* base */
  --navy-deep: #061a38;     /* fundos escuros profundos (hero, CTA, rodapé) */
  --navy-card: #0b2a56;     /* cartões e caixas */
  --navy-card-2: #0e3060;   /* hover / realce de cartões */
  --green: #21BF5E;         /* destaque */
  --green-hover: #3dd477;   /* hover do verde (texto azul-marinho continua legível) */
  --white: #FFFFFF;
  --bg: var(--navy);
  --text: #FFFFFF;
  --text-2: #d6dfeb;        /* cinza-azulado claro, derivado do azul-marinho */
  --muted: #a9b8cd;         /* cinza-azulado médio */
  --line: rgba(255, 255, 255, .1);
  --line-green: rgba(33, 191, 94, .45);
  --max: 1180px;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--heading); }
button { font: inherit; color: inherit; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 999;
  background: var(--green); color: var(--navy); padding: 10px 14px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 16px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Ícones */
.ico, .card-ico, .step-ico svg, .floating-whatsapp svg {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico { width: 20px; height: 20px; flex: 0 0 auto; }
.ico-green { color: var(--green); }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  font-weight: 700; font-size: .95rem; letter-spacing: .005em;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn .arrow { font-size: 1.1em; line-height: 1; }
.btn:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--line-green);
  background: rgba(33, 191, 94, .06);
  color: var(--text);
}
.btn-outline .ico, .btn-outline .arrow { color: var(--green); }
.btn-outline:hover { border-color: var(--green); background: rgba(33, 191, 94, .12); }
.btn-green {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 10px 28px rgba(33, 191, 94, .22);
}
.btn-green:hover { background: var(--green-hover); box-shadow: 0 14px 34px rgba(33, 191, 94, .3); }
.btn-pill { border-radius: 999px; min-height: 54px; padding: 0 28px; }

/* Cabeçalho */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(6, 26, 56, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
}
.brand { justify-self: start; display: block; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; justify-content: center; gap: 40px; }
.header-cta { justify-self: end; }
.nav a {
  position: relative; padding: 6px 0;
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: color .2s ease;
}
.nav a:hover, .nav a.is-active { color: var(--white); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header-cta { min-height: 46px; white-space: nowrap; flex-shrink: 0; }
.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: none; border: 1px solid var(--line-green); border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; }

/* Primeira dobra (fundo azul-marinho profundo, só o notebook) */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 50% 60% at 78% 45%, rgba(33, 191, 94, .08), transparent 70%),
    var(--navy-deep);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 32px;
  min-height: 600px;
  padding: 56px 0 64px;
}
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-notebook {
  width: 100%;
  max-width: 640px;
}
.hero-copy { max-width: 600px; }
.eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow strong { color: var(--text); font-weight: 800; }
.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.3rem, 3.5vw, 3.1rem);
  line-height: 1.06; letter-spacing: -.025em; font-weight: 700;
  color: var(--text);
}
.hero h1 .thin { font-weight: 400; color: var(--text-2); }
.hero h1 .accent {
  display: block;
  color: var(--green);
}
.hero-tagline {
  margin: -4px 0 18px;
  font-family: var(--heading); font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.3;
  color: var(--white);
}
.hero-text { max-width: 500px; font-size: 1.06rem; color: var(--text-2); }
.hero-points { display: flex; flex-wrap: wrap; gap: 16px 20px; margin: 30px 0 32px; }
.hero-points li {
  display: flex; align-items: center; gap: 10px; max-width: 162px;
  font-size: .82rem; line-height: 1.35; color: var(--text-2);
}
.hero-points .ico { width: 26px; height: 26px; }
.hero-note {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: .84rem; color: var(--muted);
}
.hero-note .ico { width: 17px; height: 17px; }

/* Palavras laterais com linha dourada */
.side-words {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 18px; position: relative;
  font-size: .68rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}
.side-words::before {
  content: ""; position: absolute; left: 0; top: -8px; bottom: -8px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--green) 30%, var(--green) 70%, transparent);
  box-shadow: 0 0 10px rgba(33, 191, 94, .45);
}
.hero-words { position: absolute; right: 0; top: 48px; }

/* Blocos com barra de título */
.block { padding: 56px 0 8px; border-top: 1px solid var(--line); }
.why { margin-top: 0; }
.section-bar {
  display: flex; align-items: center; gap: 28px; margin-bottom: 30px;
}
.section-bar h2 {
  font-size: .95rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text); white-space: nowrap;
}
.bar-line {
  flex: 1 1 auto; height: 1px; min-width: 40px;
  background: linear-gradient(90deg, var(--green), rgba(33, 191, 94, .12));
}
.section-bar p {
  font-size: .7rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.section-bar p strong { color: var(--text); font-weight: 800; }

/* Por que escolher */
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding-bottom: 48px; }
.info-card {
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: var(--navy-card);
  transition: border-color .25s ease, transform .25s ease;
}
.info-card:hover { border-color: var(--line-green); background: var(--navy-card-2); transform: translateY(-3px); }
.card-ico { width: 34px; height: 34px; color: var(--green); stroke-width: 1.4; }
.info-card h3 { margin: 22px 0 8px; font-size: 1.08rem; font-weight: 700; color: var(--text); }
.info-card p { font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* Modelos */
.models-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; padding-bottom: 48px; }
.model-card { text-align: center; }
.model-card img {
  width: 100%; aspect-ratio: 1448 / 1086; object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 40px rgba(2, 10, 24, .5);
  transition: transform .3s ease, border-color .3s ease;
}
.model-card:hover img { transform: translateY(-4px); border-color: var(--line-green); }
.model-card h3 {
  margin: 20px 0 6px;
  font-size: .82rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--text);
}
.model-card p { font-size: .86rem; color: var(--muted); }

/* Investimento */
.pricing {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 40% 90% at 50% 50%, rgba(33, 191, 94, .07), transparent 70%),
    var(--navy-deep);
  overflow: hidden;
}
.pricing::before {
  content: ""; position: absolute; left: 3%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--green), transparent);
  opacity: .45;
}
.pricing-grid {
  display: grid; grid-template-columns: 1.15fr .95fr 1.1fr; gap: 44px; align-items: center;
  padding: 60px 0;
}
.kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--green);
}
.kicker-muted { color: var(--muted); line-height: 1.7; }
.pricing-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem); line-height: 1.15; letter-spacing: -.02em; font-weight: 700;
}
.pricing-copy p { color: var(--text-2); max-width: 380px; }
.price-box {
  padding: 30px 32px;
  border: 1px solid rgba(33, 191, 94, .7);
  border-radius: 14px;
  background: var(--navy-card);
  box-shadow: 0 0 44px rgba(33, 191, 94, .12);
}
.price-label { font-size: .95rem; color: var(--text-2); }
.price-value {
  margin: 4px 0 22px;
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(2.9rem, 3.9vw, 3.4rem);
  font-variant-numeric: lining-nums;
  letter-spacing: -.01em;
  color: var(--green);
  white-space: nowrap;
}
.price-value .cur { font-size: .5em; }
.price-value .cents { font-size: .5em; }
.price-box ul { display: grid; gap: 14px; }
.price-box li { display: flex; align-items: center; gap: 12px; font-size: .88rem; line-height: 1.35; color: var(--text-2); }
.price-box .ico { width: 24px; height: 24px; }
.pricing-list { padding-left: 40px; border-left: 1px solid var(--line); }
.pricing-list ul { display: grid; gap: 12px; margin-top: 20px; }
.pricing-list li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-2); }

/* Como funciona */
.process-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
  padding-bottom: 52px; counter-reset: none;
}
.step { position: relative; display: grid; grid-template-columns: 1fr; justify-items: start; padding-left: 12px; }
.step:not(:last-child)::after {
  content: "›"; position: absolute; right: 2px; top: 22px;
  font-size: 2rem; line-height: 1; color: var(--muted); font-weight: 300;
}
.step-ico {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-green);
  background: var(--navy-card);
  color: var(--green);
  margin-bottom: 20px;
}
.step-ico svg { width: 26px; height: 26px; }
.step h3 {
  font-size: .82rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--text);
  margin-bottom: 8px;
}
.step h3 span { margin-right: 6px; }
.step p { font-size: .88rem; color: var(--muted); max-width: 200px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; padding-bottom: 52px; }
.faq-col { display: grid; gap: 12px; align-content: start; }
.faq details {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: var(--navy-card);
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--line-green); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 50px; padding: 12px 20px;
  font-size: .92rem; font-weight: 500; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 auto; font-size: 1.4rem; font-weight: 300; line-height: 1; color: var(--text-2);
  transition: transform .2s ease, color .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--green); }
.faq details p { padding: 0 20px 18px; font-size: .9rem; color: var(--muted); }

/* Chamada final */
.cta {
  position: relative;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: center;
  padding: 58px 0;
}
.cta-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600; line-height: 1.2;
  letter-spacing: .14em; text-transform: uppercase;
}
.cta-copy p { margin-top: 14px; max-width: 400px; color: var(--text-2); }
.cta-actions { display: grid; justify-items: center; gap: 18px; }
.cta-frame {
  padding: 8px; border-radius: 999px;
  border: 1px solid var(--line-green);
  background: rgba(8, 32, 68, .6);
  box-shadow: 0 0 40px rgba(33, 191, 94, .1);
}
.cta-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
.cta-highlights li { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-2); }
.cta-highlights .ico { width: 17px; height: 17px; }
.cta-words { align-self: center; }

/* Rodapé */
.site-footer { background: var(--navy-deep); }
.footer-grid {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 48px;
  padding: 44px 0;
}
.footer-brand { padding-right: 48px; border-right: 1px solid var(--line); }
.footer-brand img { height: 110px; width: auto; max-width: 100%; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--text-2); }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted);
}

/* WhatsApp flutuante */
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(2, 10, 24, .5), 0 0 0 4px rgba(33, 191, 94, .18);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.06); background: var(--green-hover); }
.floating-whatsapp svg { width: 28px; height: 28px; stroke-width: 1.7; }

/* Animação de entrada */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .info-card, .model-card img { transition: none; }
}

/* ===== Responsivo ===== */
@media (max-width: 1180px) {
  .nav { gap: 22px; }
  .header-inner { gap: 20px; }
  .hero-words { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-list { grid-column: 1 / -1; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 28px; }
  .pricing-list ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { grid-template-columns: 1fr auto; }
  .cta-words { display: none; }
}

/* Cabeçalho vira menu hambúrguer */
@media (max-width: 1040px) {
  .header-inner { display: flex; justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    margin: 0; padding: 12px 24px 20px;
    flex-direction: column; gap: 0;
    background: rgba(6, 26, 56, .98);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
}

@media (max-width: 960px) {

  .hero-inner { grid-template-columns: 1fr; min-height: 0; gap: 8px; padding: 28px 0 56px; }
  .hero-visual { order: -1; }
  .hero-notebook { max-width: 480px; }
  .hero-copy { max-width: 640px; }

  .why-grid, .models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .step:nth-child(2)::after { display: none; }
  .section-bar { flex-wrap: wrap; gap: 10px 20px; }
  .section-bar h2 { white-space: normal; }
  .section-bar p { flex-basis: 100%; order: 3; white-space: normal; }

  .cta-inner { grid-template-columns: 1fr; justify-items: start; }
  .cta-actions { justify-items: start; }
  .cta-highlights { justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { border-right: 0; padding-right: 0; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }
  .header-inner { min-height: 72px; }
  .brand img { height: 34px; }
  html { scroll-padding-top: 76px; }

  .hero-inner { padding-top: 16px; }
  .hero h1 { font-size: 2.35rem; }
  .hero-points { flex-direction: column; gap: 14px; margin: 24px 0 28px; }
  .hero-points li { max-width: none; }
  .hero-cta { width: 100%; padding: 0 18px; font-size: .9rem; }

  .block { padding-top: 44px; }
  .section-bar h2 { font-size: .84rem; letter-spacing: .16em; }
  .bar-line { display: none; }
  .section-bar p { font-size: .64rem; letter-spacing: .2em; }

  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .info-card { display: grid; grid-template-columns: 40px 1fr; column-gap: 16px; padding: 20px; }
  .info-card .card-ico { grid-row: span 2; }
  .info-card h3 { margin: 0 0 4px; }
  .models-grid { grid-template-columns: 1fr; gap: 32px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .pricing-list ul { grid-template-columns: 1fr; }
  .price-box { padding: 26px 22px; }

  .process-grid { grid-template-columns: 1fr; row-gap: 26px; }
  .step { grid-template-columns: 64px 1fr; column-gap: 18px; align-items: center; padding-left: 0; }
  .step-ico { grid-row: span 2; margin: 0; }
  .step h3 { margin-bottom: 2px; align-self: end; }
  .step p { align-self: start; max-width: none; }
  .step::after { display: none; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq summary { padding: 12px 16px; }
  .faq details p { padding: 0 16px 16px; }

  .cta-inner { padding: 48px 0; }
  .cta-frame { width: 100%; }
  .cta-frame .btn { width: 100%; padding: 0 16px; font-size: .9rem; }
  .cta-actions { width: 100%; justify-items: stretch; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .footer-brand { justify-self: center; }
  .footer-brand img { height: auto; width: 100%; max-width: 360px; margin-inline: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .floating-whatsapp { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* Página de Política de Privacidade */
.section-pad { padding: 64px 0; }
.text-link { color: var(--green); font-size: .9rem; }
.text-link:hover { text-decoration: underline; }
.section-heading .kicker { display: block; margin-bottom: 14px; }
.section-heading p { margin-top: 16px; color: var(--text-2); }
.faq-list { display: grid; gap: 12px; margin-top: 36px; }
.faq-list details { border: 1px solid rgba(255, 255, 255, .12); border-radius: 8px; background: var(--navy-card); }
.faq-list summary { cursor: pointer; padding: 14px 20px; font-weight: 600; }
.faq-list details p { padding: 0 20px 18px; color: var(--muted); }
