/* ============================================================
   VÉRTICE DIGITAL BRASIL — Design System
   ============================================================ */

:root{
  --navy:#0D0F14;
  --navy-2:#151A23;
  --navy-3:#1B222E;
  --blue:#0066FF;
  --blue-dark:#0050C8;
  --blue-soft:#EAF1FF;
  --white:#FFFFFF;
  --gray-bg:#F6F8FB;
  --gray-line:#E1E6EE;
  --gray-text:#5B6472;
  --gray-text-dark:#8B93A3;

  --font:'Montserrat',-apple-system,'Segoe UI',Helvetica,Arial,sans-serif;
  --container:1160px;
  --radius:14px;
  --radius-sm:8px;
  --shadow-sm:0 1px 2px rgba(13,15,20,.06), 0 1px 1px rgba(13,15,20,.04);
  --shadow-md:0 12px 32px -12px rgba(13,15,20,.18);
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
body{
  margin:0; font-family:var(--font); color:var(--navy); background:var(--white);
  font-size:16px; line-height:1.6; -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--blue); text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-weight:700; line-height:1.2; margin:0 0 16px; letter-spacing:-0.3px; text-wrap:balance; }
p{ margin:0 0 16px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--blue); color:#fff; padding:12px 20px; z-index:2000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:2.5px solid var(--blue); outline-offset:2px; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font); font-weight:700; font-size:15px; letter-spacing:.2px;
  padding:14px 28px; border-radius:40px; border:1.6px solid transparent; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn--primary{ background:var(--blue); color:#fff; }
.btn--primary:hover{ background:var(--blue-dark); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn--ghost{ background:transparent; color:var(--navy); border-color:var(--gray-line); }
.btn--ghost:hover{ border-color:var(--blue); color:var(--blue); }
.btn--ghost-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.35); }
.btn--ghost-light:hover{ border-color:#fff; }
.btn--sm{ padding:9px 20px; font-size:13.5px; border-radius:30px; }
.btn--lg{ padding:17px 34px; font-size:16px; }

/* ---------------- Header / Nav ---------------- */
.site-header{ position:sticky; top:0; z-index:1000; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--gray-line); }
.site-header__inner{ display:flex; align-items:center; justify-content:space-between; height:84px; }
.site-header__brand img{ height:44px; width:auto; }
.site-nav__list{ display:flex; align-items:center; gap:32px; }
.site-nav__list a:not(.btn){ font-weight:600; font-size:14.5px; color:var(--navy); }
.site-nav__list a:not(.btn):hover{ color:var(--blue); }
.site-nav__toggle{ display:none; flex-direction:column; justify-content:center; gap:5px; width:40px; height:40px; background:none; border:none; cursor:pointer; }
.site-nav__toggle span{ width:22px; height:2px; background:var(--navy); border-radius:2px; }

/* ---------------- Nav: Informações (ícone + dropdown por hover) ---------------- */
.site-nav__info{ position:relative; }
.site-nav__info-toggle{ display:flex; align-items:center; gap:6px; color:var(--navy); }
.site-nav__info-toggle svg{ width:20px; height:20px; }
.site-nav__info-text{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.site-nav__info-panel{
  display:none; position:absolute; top:100%; right:-24px; left:auto; margin-top:0; padding-top:14px;
  background:transparent; z-index:1100;
}
.site-nav__info-panel__inner{
  background:#fff; border:1px solid var(--gray-line); border-radius:12px; box-shadow:var(--shadow-md);
  padding:20px 22px; width:300px; max-width:calc(100vw - 48px); max-height:340px; overflow-y:auto;
}
.site-nav__info:hover .site-nav__info-panel,
.site-nav__info:focus-within .site-nav__info-panel{ display:block; }
.site-nav__info-panel ul{ display:flex; flex-direction:column; gap:16px; margin-bottom:14px; }
.site-nav__info-panel a{ display:block; font-size:14px; font-weight:600; color:var(--navy); line-height:1.4; }
.site-nav__info-panel a:hover{ color:var(--blue); }
.site-nav__info-panel-all{ display:block; font-size:13px; font-weight:700; color:var(--blue); border-top:1px solid var(--gray-line); padding-top:12px; }

@media (max-width:860px){
  .site-header__inner{ height:70px; }
  .site-header__brand img{ height:36px; }
  .site-nav__toggle{ display:flex; }
  .site-nav__list{
    position:fixed; z-index:999; top:70px; left:0; right:0; width:100%; height:calc(100vh - 70px); background:#fff; flex-direction:column;
    align-items:flex-start; padding:28px 24px; gap:22px; transform:translateX(100%); transition:transform .25s ease;
    overflow-y:auto;
  }
  .site-nav__list.is-open{ transform:translateX(0); }
  .site-nav__list a{ font-size:18px; }
  .site-nav__list li{ width:100%; }
  .site-nav__list .btn{ width:100%; text-align:center; }
  .site-nav__info-panel{ display:none !important; }
  .site-nav__info-text{ position:static; width:auto; height:auto; padding:0; margin:0; overflow:visible; clip:auto; white-space:normal; }
}

/* ---------------- Hero ---------------- */
.hero{ position:relative; overflow:hidden; background:var(--navy); color:#fff; padding:96px 0 100px; }
.hero__motif{
  position:absolute; top:-110px; right:-20px; width:520px; height:auto; z-index:0;
  opacity:.75; pointer-events:none;
  transform:perspective(1200px) rotateY(-14deg) rotateX(5deg);
  filter:drop-shadow(0 30px 40px rgba(0,0,0,.5));
}
.hero .wrap{ position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.hero__eyebrow{ display:inline-flex; align-items:center; gap:12px; font-size:12.5px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#7FA6E8; margin-bottom:20px; }
.hero__eyebrow::before{ content:""; width:28px; height:2px; background:var(--blue); }
.hero h1{ font-size:clamp(32px,4.4vw,50px); color:#fff; max-width:620px; }
.hero p{ font-size:18px; color:#B7C0CE; max-width:520px; line-height:1.65; margin-bottom:32px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:16px; }

.mock-browser{ background:#050609; border-radius:16px; padding:10px; box-shadow:var(--shadow-md); }
.mock-browser__bar{ height:26px; background:#EEF1F6; border-radius:6px 6px 0 0; display:flex; align-items:center; gap:6px; padding:0 10px; }
.mock-browser__bar span{ width:7px; height:7px; border-radius:50%; background:#C7CDD8; }
.mock-browser__screen{ background:#fff; border-radius:0 0 8px 8px; padding:22px; }
.mock-browser__nav{ display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.mock-browser__logo{ width:20px; height:20px; border-radius:6px; background:var(--blue); }
.mock-browser__links span{ display:inline-block; width:26px; height:6px; border-radius:3px; background:var(--gray-line); margin-left:8px; }
.mock-browser__hero{ display:flex; gap:18px; }
.mock-browser__lines .l1,.mock-browser__lines .l2{ height:13px; border-radius:4px; background:var(--navy); margin-bottom:9px; }
.mock-browser__lines .l1{ width:100%; } .mock-browser__lines .l2{ width:75%; }
.mock-browser__lines .l3,.mock-browser__lines .l4{ height:8px; border-radius:4px; background:var(--gray-line); margin-bottom:8px; }
.mock-browser__lines .l3{ width:92%; } .mock-browser__lines .l4{ width:60%; margin-bottom:16px; }
.mock-browser__btn{ width:110px; height:26px; border-radius:20px; background:var(--blue); }
.mock-browser__visual{ flex-shrink:0; width:140px; height:105px; border-radius:10px; background:#0057E0; }

/* Tilt sutil reaproveitado nos mock-browsers menores (split / dark) */
.mock-browser--tilt{
  transform:perspective(1000px) rotateY(-8deg) rotateX(4deg);
  box-shadow:0 50px 70px -30px rgba(0,0,0,.55), 0 15px 25px -10px rgba(0,0,0,.3);
}

/* ---------------- Device 3D (visual principal do hero) ---------------- */
.device-3d{ position:relative; perspective:1600px; padding:30px 10px 46px; }
.device-3d--tablet{ padding:20px 10px 34px; }
.device-3d__glow{
  position:absolute; inset:-60px -20px; z-index:0; pointer-events:none;
  background:radial-gradient(circle at 48% 42%, rgba(0,102,255,.4), rgba(0,102,255,0) 62%);
  filter:blur(6px);
}
.device-3d__glow--soft{ opacity:.55; }
.device-3d__glow--soft ~ .mock-browser{ position:relative; z-index:1; }
.device-3d__laptop{
  position:relative; z-index:1; max-width:400px; margin:0 auto;
  transform:rotateX(10deg) rotateY(-20deg) rotateZ(1deg);
  transform-style:preserve-3d;
}
.device-3d__screen{
  background:linear-gradient(160deg,#1E2632,#05060A); border-radius:16px; padding:10px 10px 16px;
  box-shadow:0 50px 90px -25px rgba(0,0,0,.65), 0 18px 34px -14px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.05);
}
.device-3d__cam{ width:6px; height:6px; border-radius:50%; background:#333c4a; margin:0 auto 8px; }
.device-3d__hinge{
  height:8px; max-width:398px; margin:0 auto; background:linear-gradient(180deg,#05060a,#161c26);
  position:relative; z-index:1;
}
.device-3d__base{
  max-width:444px; height:46px; margin:0 auto; background:linear-gradient(180deg,#2B3342,#12161F 55%,#0A0D12);
  clip-path:polygon(3% 0, 97% 0, 100% 100%, 0 100%);
  border-radius:0 0 9px 9px; position:relative; z-index:1;
  box-shadow:0 34px 54px -16px rgba(0,0,0,.6);
}
.device-3d__base::before{
  content:""; position:absolute; top:8px; left:50%; transform:translateX(-50%); width:84px; height:5px;
  border-radius:3px; background:rgba(255,255,255,.1);
}
.device-3d__base::after{
  content:""; position:absolute; bottom:8px; left:50%; transform:translateX(-50%); width:54px; height:16px;
  border-radius:4px; background:rgba(0,0,0,.25); box-shadow:inset 0 1px 2px rgba(255,255,255,.06);
}

.device-3d__chip{
  position:absolute; z-index:3; display:flex; align-items:center; gap:10px; background:#fff; color:var(--navy);
  padding:12px 16px; border-radius:12px; box-shadow:var(--shadow-md); font-size:13px; font-weight:700;
  animation:chipFloat 5s ease-in-out infinite;
}
.device-3d__chip svg{ width:18px; height:18px; flex-shrink:0; }
.device-3d__chip--1{ top:12%; left:-6%; color:#0F7A3D; animation-delay:.2s; }
.device-3d__chip--1 svg{ color:#25D366; }
.device-3d__chip--2{ top:0; right:-4%; color:var(--blue-dark); animation-delay:1.1s; }
.device-3d__chip--2 svg{ color:var(--blue); }
.device-3d__chip--3{ bottom:2%; left:2%; color:var(--navy); animation-delay:2s; }
.device-3d__chip--3 svg{ color:var(--blue); }

@keyframes chipFloat{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

.device-3d--tablet .mock-browser--tilt{
  animation:tabletFloat 5s ease-in-out infinite;
}
@keyframes tabletFloat{
  0%, 100%{ transform:perspective(1000px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50%{ transform:perspective(1000px) rotateY(-8deg) rotateX(4deg) translateY(-14px); }
}

/* ---------------- Device 3D: celular (phone) ---------------- */
.device-3d--phone{ padding:20px 10px 34px; }
.device-3d__phone{
  position:relative; width:220px; aspect-ratio:9/19.3; margin:0 auto;
  background:linear-gradient(160deg,#333c4a,#0A0C10 65%);
  border-radius:34px; padding:9px;
  box-shadow:0 45px 70px -20px rgba(0,0,0,.65), 0 16px 30px -10px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.07);
  animation:phoneFloat 5s ease-in-out infinite;
}
.device-3d__phone-screen{
  position:relative; height:100%; background:#fff; border-radius:26px; padding:38px 14px 16px; overflow:hidden;
}
.device-3d__notch{
  position:absolute; top:9px; left:50%; transform:translateX(-50%); width:64px; height:16px;
  background:#05060a; border-radius:10px; z-index:2; display:flex; align-items:center; justify-content:flex-end; padding-right:8px;
}
.device-3d__notch::after{
  content:""; width:6px; height:6px; border-radius:50%; background:#1c2430;
}
.device-3d__phone-btn{ position:absolute; background:linear-gradient(180deg,#3a4351,#171b22); border-radius:2px; }
.device-3d__phone-btn--power{ right:-2px; top:95px; width:3px; height:46px; }
.device-3d__phone-btn--vol1{ left:-2px; top:78px; width:3px; height:28px; }
.device-3d__phone-btn--vol2{ left:-2px; top:114px; width:3px; height:28px; }
@keyframes phoneFloat{
  0%, 100%{ transform:perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0); }
  50%{ transform:perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-14px); }
}

/* ---------------- Section basics ---------------- */
.section{ padding:88px 0; }
.section--alt{ background:var(--gray-bg); }
.section--dark{ background:var(--navy); color:#fff; }
.section__head{ max-width:680px; margin:0 0 48px; }
.section__eyebrow{ display:inline-flex; align-items:center; gap:12px; font-size:12px; font-weight:700; letter-spacing:2.6px; text-transform:uppercase; color:var(--blue); margin-bottom:14px; }
.section__eyebrow::before{ content:""; width:24px; height:2px; background:var(--blue); }
.section--dark .section__eyebrow{ color:#7FA6E8; }
.section__head h2{ font-size:clamp(26px,3.4vw,38px); }
.section__head p{ color:var(--gray-text); font-size:17px; }
.section--dark .section__head p{ color:#B7C0CE; }
.section__head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------------- Pain-point / two-col ---------------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.pain-list{ display:flex; flex-direction:column; gap:24px; }
.pain-item{ display:flex; gap:16px; }
.pain-item__ic{ width:44px; height:44px; border-radius:12px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pain-item__ic svg{ width:21px; height:21px; color:var(--blue); }
.pain-item h3{ font-size:17px; margin-bottom:4px; }
.pain-item p{ color:var(--gray-text); font-size:15px; margin:0; }

/* ---------------- Deliverables grid ---------------- */
.grid-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.deliv-card{ display:flex; align-items:center; gap:14px; padding:20px; border:1px solid var(--gray-line); border-radius:var(--radius-sm); background:#fff; }
.deliv-card__ic{ width:42px; height:42px; border-radius:10px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.deliv-card__ic svg{ width:20px; height:20px; color:var(--blue); }
.deliv-card span{ font-weight:600; font-size:14.5px; }

/* ---------------- Timeline ---------------- */
.timeline{ display:flex; flex-direction:column; }
.tl-step{ display:flex; gap:24px; position:relative; padding-bottom:40px; }
.tl-step:last-child{ padding-bottom:0; }
.tl-num{ position:relative; width:52px; height:52px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:18px; flex-shrink:0; z-index:2; }
.tl-step:nth-child(odd) .tl-num{ background:var(--blue); }
.tl-step:not(:last-child) .tl-num::after{ content:""; position:absolute; top:52px; left:50%; transform:translateX(-50%); width:2px; height:40px; background:var(--gray-line); }
.tl-body h3{ font-size:19px; margin:8px 0 4px; }
.tl-body p{ color:var(--gray-text); margin:0; }

/* ---------------- Results checklist ---------------- */
.check-list{ display:flex; flex-direction:column; gap:18px; }
.check-list li{ display:flex; align-items:center; gap:14px; font-size:17px; font-weight:600; }
.check-list .ic{ width:32px; height:32px; border-radius:50%; background:rgba(0,102,255,.15); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.check-list .ic svg{ width:16px; height:16px; color:var(--blue); }
.section--dark .check-list .ic{ background:rgba(0,102,255,.22); }
.section--dark .check-list .ic svg{ color:#6FA6FF; }

/* ---------------- Badge / CTA link ---------------- */
.badge{ display:inline-flex; align-items:center; gap:8px; border:1.4px solid var(--blue); color:var(--blue); font-weight:700; font-size:12px; letter-spacing:1px; padding:10px 20px; border-radius:24px; margin-top:24px; }
.badge-wrap{ text-align:center; }

/* ---------------- Addon grid ---------------- */
.addon-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.addon-card{ background:var(--gray-bg); border-radius:16px; padding:28px 20px; text-align:center; }
.addon-card__ic{ width:48px; height:48px; border-radius:12px; background:#fff; box-shadow:var(--shadow-sm); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.addon-card__ic svg{ width:22px; height:22px; color:var(--blue); }
.addon-card span{ font-weight:700; font-size:14.5px; }

/* ---------------- CTA band ---------------- */
.cta-band{ background:var(--blue); color:#fff; padding:56px 0; }
.cta-band__inner{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-band h2{ font-size:26px; color:#fff; margin-bottom:6px; }
.cta-band p{ margin:0; color:#DCE7FF; }
.cta-band__actions{ display:flex; gap:14px; flex-wrap:wrap; }
.cta-band .btn--primary{ background:#fff; color:var(--blue); }
.cta-band .btn--primary:hover{ background:#EAF1FF; }

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--navy); color:#B7C0CE; padding:64px 0 0; }
.site-footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; }
.site-footer__brand p{ color:#8A93A6; font-size:14px; margin-top:16px; max-width:280px; }
.site-footer h3{ color:#fff; font-size:13px; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:18px; }
.site-footer__col ul{ display:flex; flex-direction:column; gap:11px; }
.site-footer__col a{ color:#B7C0CE; font-size:14.5px; }
.site-footer__col a:hover{ color:#fff; }
.site-footer__col li{ font-size:14.5px; }
.site-footer__bottom{ border-top:1px solid #262B36; padding:24px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; letter-spacing:.6px; text-transform:uppercase; color:#5C6472; }

.whatsapp-fab{
  position:fixed; bottom:26px; right:26px; width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px -6px rgba(0,0,0,.35); z-index:900;
  transition:transform .15s ease;
}
.whatsapp-fab:hover{ transform:scale(1.08); }

/* ---------------- Reveal-on-scroll ---------------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------------- Blog ---------------- */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card{ border:1px solid var(--gray-line); border-radius:16px; overflow:hidden; display:flex; flex-direction:column; background:#fff; transition:box-shadow .2s ease, transform .2s ease; }
.blog-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.blog-card__cover{ height:150px; background:linear-gradient(135deg,var(--navy),var(--blue)); position:relative; }
.blog-card__body{ padding:24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.blog-card__meta{ font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-text-dark); }
.blog-card h3{ font-size:19px; margin:0; }
.blog-card p{ color:var(--gray-text); font-size:14.5px; margin:0; flex:1; }
.blog-card__link{ font-weight:700; font-size:14px; }

.post-hero{ background:var(--navy); color:#fff; padding:64px 0 48px; }
.post-hero .wrap{ max-width:760px; }
.post-meta{ display:flex; gap:16px; font-size:13px; color:#8FA6C7; text-transform:uppercase; letter-spacing:1px; font-weight:700; margin-bottom:18px; }
.post-hero h1{ color:#fff; font-size:clamp(28px,4vw,42px); }
.post-body{ max-width:760px; margin:0 auto; padding:56px 24px; font-size:17px; line-height:1.8; color:#333; }
.post-body h2{ font-size:26px; margin-top:40px; }
.post-body h3{ font-size:21px; margin-top:28px; }
.post-body ul{ list-style:disc; padding-left:22px; margin-bottom:16px; }
.post-body li{ margin-bottom:8px; }
.post-cta{ background:var(--gray-bg); border-radius:16px; padding:32px; text-align:center; margin-top:40px; }
.post-cta h3{ margin-top:0; }

/* ---------------- Contact form ---------------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-weight:700; font-size:13.5px; margin-bottom:7px; }
.form-field input, .form-field textarea{
  width:100%; border:1px solid var(--gray-line); border-radius:10px; padding:13px 14px; font-family:var(--font); font-size:14.5px; color:var(--navy);
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--blue); box-shadow:0 0 0 3px var(--blue-soft); }
.form-field textarea{ min-height:130px; resize:vertical; }
.alert{ padding:16px 20px; border-radius:10px; font-weight:600; font-size:14.5px; margin-bottom:24px; }
.alert--success{ background:#E7F7EE; color:#0F7A3D; border:1px solid #BFEBD1; }
.alert--error{ background:#FDECEC; color:#B3261E; border:1px solid #F6C6C4; }
.contact-info-card{ background:var(--navy); color:#fff; border-radius:20px; padding:36px; }
.contact-info-card h3{ color:#fff; font-size:20px; }
.contact-info-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-info-row svg{ width:20px; height:20px; color:#6FA6FF; flex-shrink:0; margin-top:2px; }
.contact-info-row a, .contact-info-row span{ color:#DCE7FF; font-size:14.5px; }

/* ---------------- Misc pages ---------------- */
.simple-page{ padding:72px 0; max-width:820px; margin:0 auto; }
.simple-page h1{ font-size:34px; }
.simple-page h2{ font-size:22px; margin-top:32px; }
.simple-page p, .simple-page li{ color:var(--gray-text); font-size:15.5px; }
.simple-page ul{ list-style:disc; padding-left:22px; }

.error-page{ text-align:center; padding:120px 24px; }
.error-page .code{ font-size:120px; font-weight:800; color:var(--blue); line-height:1; }

/* ---------------- Páginas de posicionamento (Informações) ---------------- */
.info-hero{ position:relative; overflow:hidden; background:linear-gradient(135deg,var(--navy) 0%,#101828 45%,var(--blue-dark) 100%); color:#fff; padding:88px 0 76px; }
.info-hero .wrap{ max-width:820px; position:relative; z-index:1; }
.info-hero__eyebrow{ display:inline-flex; align-items:center; gap:12px; font-size:12.5px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#7FA6E8; margin-bottom:18px; }
.info-hero__eyebrow::before{ content:""; width:28px; height:2px; background:var(--blue); }
.info-hero h1{ font-size:clamp(28px,3.8vw,42px); color:#fff; max-width:720px; }
.info-hero p{ font-size:17px; color:#B7C0CE; max-width:640px; line-height:1.7; margin-bottom:20px; }
.info-hero strong{ color:#fff; }
.info-pills{ display:flex; flex-wrap:wrap; gap:10px; margin:8px 0 32px; }
.info-pill{ font-size:13px; font-weight:600; color:#DCE7FF; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); padding:8px 16px; border-radius:20px; }

.info-body{ max-width:760px; margin:0 auto; }
.info-section{ margin-bottom:44px; }
.info-section:last-child{ margin-bottom:0; }
.info-section h2{ font-size:24px; margin-bottom:16px; }
.info-section p{ color:#333; font-size:16.5px; line-height:1.75; margin-bottom:16px; }
.info-section strong{ color:var(--blue-dark); }
.info-section ul{ list-style:disc; padding-left:22px; margin:0 0 16px; }
.info-section li{ color:#333; font-size:16.5px; line-height:1.7; margin-bottom:8px; }

.criteria-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.criteria-item{ background:#fff; border:1px solid var(--gray-line); border-radius:var(--radius); padding:26px; }
.criteria-num{ width:36px; height:36px; border-radius:50%; background:var(--blue-soft); color:var(--blue); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px; margin-bottom:14px; }
.criteria-item h3{ font-size:17px; margin-bottom:6px; }
.criteria-item p{ color:var(--gray-text); font-size:14.5px; margin:0; }

.mini-cta{ background:var(--blue-soft); padding:32px 0; }
.mini-cta__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.mini-cta__inner p{ margin:0; font-weight:700; font-size:16px; color:var(--navy); }
.mini-cta__actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.mini-cta__actions a:not(.btn){ font-weight:700; color:var(--blue-dark); font-size:15px; }

.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--gray-line); border-radius:var(--radius-sm); padding:18px 22px; }
.faq-item summary{ font-weight:700; font-size:15.5px; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--blue); flex-shrink:0; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ color:var(--gray-text); font-size:15px; margin:14px 0 0; line-height:1.7; }

/* ---------------- Responsive ---------------- */
@media (max-width:900px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero__visual{ order:-1; max-width:420px; margin:0 auto; }
  .split{ grid-template-columns:1fr; gap:40px; }
  .grid-cards, .addon-grid, .blog-grid{ grid-template-columns:1fr 1fr; }
  .site-footer__grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .criteria-grid{ grid-template-columns:1fr; }
  .device-3d__chip{ font-size:12px; padding:10px 14px; gap:8px; max-width:150px; }
  .device-3d__chip svg{ width:16px; height:16px; }
}
@media (max-width:600px){
  .section{ padding:60px 0; }
  .grid-cards, .addon-grid, .blog-grid{ grid-template-columns:1fr; }
  .site-footer__grid{ grid-template-columns:1fr; }
  .cta-band__inner{ flex-direction:column; align-items:flex-start; }
  .mini-cta__inner{ flex-direction:column; align-items:flex-start; }
  .device-3d{ padding:20px 0 36px; }
  .device-3d__laptop{ max-width:280px; transform:rotateX(8deg) rotateY(-14deg); }
  .device-3d__chip{ font-size:10.5px; padding:8px 11px; max-width:120px; }
  .device-3d__chip--1{ left:-2%; }
  .device-3d__chip--2{ right:-2%; }
  .device-3d__chip--3{ left:6%; }
}
