/* ============================================================
   VENTILARIA â€” Premium Industrial LP
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:   #F6F4F0;
  --dk:   #091525;
  --t:    #0097B8;
  --t2:   #007A96;
  --h:    #1A1814;
  --s1:   #3A3630;
  --s2:   #6A6560;
  --s3:   #9A9590;
  --b1:   rgba(0,0,0,.10);
  --r:    6px;
  --r2:   12px;
  --ease: cubic-bezier(.4,0,.2,1);
  --mx:   1280px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--t); border-radius: 2px; }

em { font-style: italic; color: var(--t); }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  background: var(--t); color: #fff; padding: 10px 18px;
  border-radius: 4px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 16px; outline: 2px solid #fff; outline-offset: 2px; }

*:focus-visible {
  outline: 2px solid var(--t);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  border-bottom: none;
}

.topbar-inner {
  max-width: var(--mx); margin: 0 auto;
  padding: 0 56px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800; font-size: 24px; letter-spacing: -.3px; color: #F0EBE1;
}
.logo-text i { font-style: normal; color: var(--t); }
.logo-sub { font-size: 7px; color: rgba(255,255,255,.4); letter-spacing: 2.5px; font-weight: 600; margin-top: 2px; text-transform: uppercase; }

/* NAV LINKS */
.topbar-nav {
  display: flex; align-items: center; gap: 0;
  margin-left: auto;
}
.topbar-nav a {
  font-size: 13px; font-weight: 500; color: #EDE8DE;
  text-decoration: none; padding: 6px 13px; border-radius: var(--r);
  letter-spacing: 0; transition: color .2s, background .2s;
}
.topbar-nav a:hover { color: #F6F3ED; background: rgba(246,244,240,.1); }

.topbar-right { display: flex; align-items: center; margin-left: 13px; }

.topbar-cta {
  background: var(--t);
  color: #fff; border: none;
  padding: 10px 24px; border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 12.5px;
  cursor: pointer; letter-spacing: 0;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,151,184,.3);
}
.topbar-cta:hover { background: var(--t2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,151,184,.35); }
.topbar-phone { display: none; }

/* ============================================================
   HERO â€” full width, dark, impacto maximo
   ============================================================ */

/* sections must be full-bleed */
section { width: 100%; display: block; }
.hero {
  margin-top: 0;
  height: 100vh;
  min-height: 560px;
  display: flex; align-items: center;
  background: #07090D;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/hero-bg.jpg') center 30%/cover no-repeat;
  opacity: .45; filter: saturate(.6) brightness(.8);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, transparent 80%, #07090D 100%),
    linear-gradient(105deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.32) 100%);
}



.hero-left {
  position: relative; z-index: 1;
  max-width: var(--mx); margin: 0 auto; width: 100%;
  padding: 80px 56px 48px;
  display: grid; grid-template-columns: 1fr 460px; gap: 48px; align-items: center;
  height: 100%;
}

.hero-copy { display: flex; flex-direction: column; justify-content: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--t); border: none;
  background: none; padding: 0;
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  margin-bottom: 20px; width: fit-content; text-transform: uppercase;
}
.hero-tag::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--t);
  animation: pulse 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; box-shadow: 0 0 8px var(--t); } }
#temp-now { font-weight: 700; color: var(--t); }

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 72px; font-weight: 800;
  line-height: 1.06; letter-spacing: -.3px;
  color: #fff; margin-bottom: 18px;
}
.hero h1 span { color: var(--t); display: block; }

.hero-sub {
  font-size: 16px; color: #E2DAD0;
  line-height: 1.7; margin-bottom: 20px; max-width: 480px; font-weight: 300;
}


.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 6px;
}
.hero-badge {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.88);
  display: flex; align-items: center; gap: 7px; letter-spacing: .2px;
}
.hero-badge::before {
  content: '✓'; width: auto; height: auto; border-radius: 0; flex-shrink: 0;
  background: transparent; opacity: 1; color: var(--t); font-size: 11px; font-weight: 700;
}

/* HERO FORM FLOAT â€” card suspenso no lado direito */
.hero-form-float {
  background: rgba(255,255,255,.10); border-radius: 16px;
  padding: 36px 32px; align-self: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 4px 20px rgba(0,0,0,.25);
  position: relative; z-index: 2;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(32px) saturate(180%);
}
.hero-form-float::before { display: none; }
.hero-form-float .form-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; letter-spacing: -.3px;
  text-align: center;
}
.hero-form-float .form-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 16px; text-align: center; }
.hero-form-float label {
  display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.55); margin-bottom: 4px; letter-spacing: 1.2px; text-transform: uppercase;
}
.hero-form-float input,
.hero-form-float select {
  width: 100%; padding: 9px 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; color: #F0EBE1;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400;
  outline: none; margin-bottom: 8px; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.hero-form-float input:focus,
.hero-form-float select:focus {
  border-color: var(--t); background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 2px rgba(0,151,184,.3);
}
.hero-form-float input::placeholder { color: rgba(255,255,255,.3); }
.hero-form-float select {
  -webkit-appearance: none; color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230097B8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
.hero-form-float select option {
  background: #0C1824;
  color: #E8E0D4;
  font-size: 12px;
}
.hero-form-float .form-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; margin-bottom: 0; }
.hero-form-float .form-row > div { display: flex; flex-direction: column; }
.hero-form-float .form-row input,
.hero-form-float .form-row select { margin-bottom: 10px; }
.hero-form-float .form-check {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 14px; font-size: 10.5px; color: var(--s2); line-height: 1.55; cursor: pointer;
}
.hero-form-float .form-check input { width: auto; margin: 2px 0 0; accent-color: var(--t); }
.hero-form-float .form-check a { color: var(--t); text-decoration: none; }
.hero-form-float .form-btn {
  width: 100%;
  background: var(--t);
  color: #fff; padding: 15px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 4px 14px rgba(0,151,184,.25); transition: all .2s;
}
.hero-form-float .form-btn:hover { background: var(--t2); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,151,184,.38); }
.hero-form-float .form-note { text-align: center; font-size: 11px; color: rgba(255,255,255,.38); margin-top: 8px; }
.form-lgpd { display: flex; align-items: center; gap: 0; margin: 10px 0 6px; }
.form-lgpd input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.form-lgpd label {
  position: relative;
  padding-left: 22px;
  font-size: 11px; color: rgba(255,255,255,.75);
  line-height: 1.5; cursor: pointer;
  user-select: none; text-transform: uppercase; letter-spacing: .5px; font-weight: 600;
}
.form-lgpd label::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  transition: background .15s, border-color .15s;
  box-sizing: border-box;
}
.form-lgpd input[type=checkbox]:checked + label::before {
  background: var(--t); border-color: var(--t);
}
.form-lgpd label::after {
  content: '';
  position: absolute; left: 5px; top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 4px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  opacity: 0; transition: opacity .15s;
}
.form-lgpd input[type=checkbox]:checked + label::after { opacity: 1; }
.form-lgpd a { color: var(--t); text-decoration: underline; }

/* BOTOES */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--t);
  color: #fff; padding: 13px 20px; border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; text-decoration: none;
  letter-spacing: 0;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,151,184,.25);
}
.btn-primary:hover { background: var(--t2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,151,184,.38); }


/* ============================================================
   NUMBERS â€” escura de impacto
   ============================================================ */
.numbers { background: #07090D; padding: 48px 56px; position: relative; margin-top: 0; display: flex; flex-direction: column; justify-content: center; }

.numbers-grid {
  max-width: var(--mx); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; background: none; border: none; border-radius: 0; overflow: visible;
}
.num-item { background: none; padding: 40px 24px; text-align: center; position: relative; border-right: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.num-item:last-child { border-right: none; }


.num-item .n {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px; font-weight: 800; color: #ffffff;
  line-height: 1; display: block; letter-spacing: -2px;
  text-shadow: 0 0 60px rgba(0,151,184,.22);
}
.num-item .l {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; color: rgba(255,255,255,.42); margin-top: 14px;
  font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; display: block;
}

/* ============================================================
   GLOBALS â€” section headings
   ============================================================ */

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 38px; font-weight: 800;
  letter-spacing: -.5px; line-height: 1.1; color: var(--h); margin-bottom: 16px;
  text-align: center;
}


/* ---- Como Funciona ---- */
.how-works { background: #ffffff; padding: 80px 56px; min-height: 80vh; display: flex; align-items: center; scroll-margin-top: 68px; }
.how-works-inner { max-width: var(--mx); margin: 0 auto; width: 100%; }
.how-works-title { color: var(--h); margin-bottom: 48px; }
.how-works-title em { color: var(--t); font-style: normal; }

.how-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--b1); border-radius: var(--r2); overflow: hidden;
}
.how-step {
  padding: 36px 28px; display: flex; flex-direction: column; gap: 20px;
  border-right: 1px solid var(--b1); background: #fff;
  transition: background .2s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: #fafaf9; }
.how-step-badge {
  display: flex; align-items: baseline; gap: 10px;
}
.how-step-n {
  font-family: 'DM Sans', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--t); line-height: 1; letter-spacing: -1px;
}
.how-step-time {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--s2);
}
.how-step-body { display: flex; flex-direction: column; }
.how-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--h); margin-bottom: 8px;
}
.how-step-desc { font-size: 14px; color: var(--s2); line-height: 1.7; }

@media (max-width: 900px) {
  .how-works { padding: 60px 20px; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; border: none; gap: 0; border-radius: 0; }
  .how-step { border-right: none; border-bottom: 1px solid var(--b1); border-left: none; }
  .how-step:first-child { border-top: none; }
  .how-step:last-child { border-bottom: none; }
}

/* ============================================================
   PHOTO DIVIDER
   ============================================================ */
.photo-divider { position: relative; height: 360px; overflow: hidden; }
.photo-divider img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(.55) saturate(.6); transform: scaleX(-1); }
.photo-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7,9,13,.92) 25%, rgba(7,9,13,.55) 55%, rgba(7,9,13,.15) 85%);
  display: flex; align-items: center; padding: 0 56px;
}
.photo-divider-content { max-width: var(--mx); margin: 0 auto; width: 100%; }
.photo-divider h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px; font-weight: 800; color: #fff;
  margin-bottom: 16px; letter-spacing: -.5px; line-height: 1.12; max-width: 600px;
}
.photo-divider h3 em { color: var(--t); font-style: normal; }
.pd-accent { color: var(--t); }
.photo-divider p { font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.65; max-width: 520px; margin-bottom: 0; }

/* ============================================================
   CASES
   ============================================================ */
.cases { background: var(--bg); padding: 80px 0; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; scroll-margin-top: 68px; }
.cases-header { max-width: var(--mx); margin: 0 auto; padding: 0 56px; width: 100%; margin-bottom: 56px; }
.cases-title { color: var(--h); text-align: center; }
.cases-title em { color: var(--t); font-style: normal; }
.case-list { max-width: var(--mx); margin: 0 auto; width: 100%; padding: 0 56px; display: flex; flex-direction: column; }
.case-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--b1); height: 340px;
}
.case-row:first-child { border-top: none; }
.case-row:last-child { border-bottom: none; }
.case-row--reverse { direction: rtl; }
.case-row--reverse > * { direction: ltr; }
.case-row-photo { overflow: hidden; }
.case-row-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.case-row:hover .case-row-photo img { transform: scale(1.04); }
.case-row-content {
  padding: 48px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.case-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--t); margin-bottom: 14px;
}
.case-headline {
  font-family: 'DM Sans', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--h); line-height: 1.2; margin-bottom: 14px; letter-spacing: -.3px;
}
.case-body { font-size: 15px; color: var(--s2); line-height: 1.75; }

/* ============================================================
   OBJECTIONS
   ============================================================ */
.objections { padding: 80px 56px; background: #07090D; min-height: 80vh; display: flex; align-items: center; scroll-margin-top: 68px; }
.objections .section-title { color: #fff; }
.objections .section-title em { color: var(--t); font-style: normal; }
.obj-inner { max-width: var(--mx); margin: 0 auto; width: 100%; }
.obj-header { margin-bottom: 56px; }
.obj-list { display: flex; flex-direction: column; }
.obj-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 32px 0; border-top: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.obj-row:first-child { border-top: none; }
.obj-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px; font-weight: 700; color: #fff;
  line-height: 1.3; padding-right: 16px;
}
.obj-a { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; }
.obj-a strong { color: rgba(255,255,255,.9); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: #ffffff; padding: 80px 56px; min-height: 80vh; display: flex; align-items: center; scroll-margin-top: 68px; }
.testi-inner { max-width: var(--mx); margin: 0 auto; width: 100%; }
.testi-title { color: var(--h); margin-bottom: 48px; }
.testi-title em { color: var(--t); font-style: normal; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.testi-card {
  padding: 0 44px;
  border-left: 1px solid var(--b1);
  display: flex; flex-direction: column;
}
.testi-card:first-child { border-left: none; padding-left: 0; }
.testi-card:last-child { padding-right: 0; }
.testi-quote-mark {
  font-family: Georgia, serif; font-size: 52px; color: var(--t);
  line-height: 1; display: block; margin-bottom: 16px;
}
.testi-text {
  font-size: 15px; color: var(--s1); line-height: 1.8;
  flex: 1; margin-bottom: 28px;
}
.testi-author-row { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--t), var(--t2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 800;
  color: #fff; flex-shrink: 0; letter-spacing: .5px;
}
.testi-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--h); }
.testi-company { font-size: 12px; color: var(--s2); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 72px 56px 48px; background: var(--t); min-height: 60vh; display: flex; align-items: center; scroll-margin-top: 68px; }
.faq-inner {
  max-width: var(--mx); margin: 0 auto; width: 100%;
}
.faq-head { margin-bottom: 40px; }
.faq .section-title { color: #fff; }
.faq .section-title em { color: #07090D; font-style: normal; }
.faq-lista { display: flex; flex-direction: column; gap: 8px; max-width: 720px; margin: 0 auto; width: 100%; }
.faq-item {
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 15px; font-weight: 600; color: #fff;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  line-height: 1.45; transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: rgba(255,255,255,.75); }
.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 300; flex-shrink: 0;
  color: rgba(255,255,255,.7); line-height: 1; transition: transform .25s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] { background: rgba(0,0,0,.35); }
.faq-item p {
  padding: 0 24px 18px; font-size: 14px;
  color: rgba(255,255,255,.75); line-height: 1.8;
}
.cta-section {
  background: #07090D;
  padding: 48px 56px 72px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-section::after {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,151,184,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.cta-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px; font-weight: 800; color: #fff;
  letter-spacing: -.5px; line-height: 1.1; margin-bottom: 16px;
}
.cta-section h2 em { font-style: normal; color: var(--t); }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 40px; }
.cta-action { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-badges {
  display: flex; align-items: center; gap: 24px;
  font-size: 12px; color: rgba(255,255,255,.58);
}
.cta-badges span::before { content: '✓  '; color: var(--t); }
.cta-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--t);
  color: #fff; padding: 16px 30px; border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; white-space: nowrap; text-decoration: none;
  letter-spacing: 0;
  transition: all .25s; position: relative; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,151,184,.35);
}
.cta-dark::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s;
}
.cta-dark:hover::before { left: 100%; }
.cta-dark::after { content: none; }
.cta-dark:hover { transform: translateY(-2px); background: var(--t2); box-shadow: 0 12px 36px rgba(0,151,184,.5); }

/* ============================================================
   FOOTER
   ============================================================ */

/* ---- Form Modal ---- */
.form-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,10,18,.88); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.form-modal.open { display: flex; }
.form-card {
  background: #0C1824; border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r2); padding: 36px 32px 28px;
  width: 100%; max-width: 520px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  max-height: 90vh; overflow-y: auto;
}
.form-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 22px; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.form-close:hover { color: #fff; }
.form-title {
  font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.form-card label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.55); margin-bottom: 6px; margin-top: 14px;
}
.form-card input, .form-card select {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 13px 12px; outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-card input:focus, .form-card select:focus { border-color: var(--t); }
.form-card input::placeholder { color: rgba(255,255,255,.25); }
.form-card select { color-scheme: dark; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230097B8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px;
}
.form-card select option { background: #0C1824; color: #E8E0D4; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check {
  display: flex; align-items: center; gap: 8px;
  margin: 20px 0 20px; font-size: 11px; color: rgba(255,255,255,.75);
  line-height: 1.5; cursor: pointer; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}
.form-check input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.form-check span { position: relative; padding-left: 22px; }
.form-check span::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 14px; height: 14px; border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.07); border-radius: 3px;
  transition: background .15s, border-color .15s; box-sizing: border-box;
}
.form-check input:checked + span::before { background: var(--t); border-color: var(--t); }
.form-check span::after {
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 4px; height: 8px; border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg); opacity: 0; transition: opacity .15s;
}
.form-check input:checked + span::after { opacity: 1; }
.form-check a { color: var(--t); text-decoration: underline; }
.form-btn {
  width: 100%; background: var(--t); color: #fff;
  border: none; border-radius: var(--r); padding: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s; margin-top: 4px;
  display: flex; align-items: center; justify-content: center;
}
.form-btn:hover { background: var(--t2); }
.form-note { text-align: center; font-size: 11px; color: rgba(255,255,255,.28); margin-top: 16px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.form-success-text { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ---- WA Float ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  opacity: 1; pointer-events: auto;
}
.wa-float-text {
  background: #fff; color: #1A1814; font-size: 12px; font-weight: 700;
  padding: 7px 12px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  opacity: 0; transform: translateX(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.wa-float:hover .wa-float-text { opacity: 1; transform: translateX(0); }
.wa-float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s; flex-shrink: 0;
}
.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ---- Legal Modals (Privacy + Terms) ---- */
.legal-modal {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,10,18,.85); backdrop-filter: blur(8px);
  padding: 20px; justify-content: center; align-items: center;
}
.legal-modal[style*="flex"] { display: flex; }
.legal-content {
  background: #fff; border-radius: var(--r2);
  width: 600px; height: 600px;
  max-width: calc(100vw - 40px); max-height: calc(100vh - 40px);
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.4);
  overflow: hidden; display: flex; flex-direction: column;
}
.legal-body { flex: 1; overflow-y: auto; padding: 28px 32px 36px; font-size: 14px; color: var(--s1); line-height: 1.75; }
.legal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; border-bottom: 1px solid var(--b1);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.legal-header h2 {
  font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--h); margin: 0;
}
.legal-close {
  background: none; border: none; font-size: 24px; color: var(--s2);
  cursor: pointer; line-height: 1; padding: 4px 8px; transition: color .2s;
}
.legal-close:hover { color: var(--h); }
.legal-body h3 {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--h); margin: 24px 0 8px;
}
.legal-body h3:first-of-type { margin-top: 0; }
.legal-body p { margin-bottom: 10px; }
.legal-body ul { padding-left: 20px; margin-bottom: 10px; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--h); font-weight: 700; }
.legal-body em { color: var(--s2); }


/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff; border-top: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 -4px 32px rgba(0,0,0,.08);
  padding: 14px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.cookie-text { font-size: 13px; color: var(--s2); line-height: 1.5; flex: 1; }
.cookie-text a { color: var(--t); text-decoration: underline; cursor: pointer; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: var(--r); cursor: pointer; transition: all .2s;
}
.cookie-decline { background: transparent; color: var(--s3); border: 1px solid var(--b1); }
.cookie-decline:hover { color: var(--h); border-color: var(--s3); }
.cookie-accept { background: var(--t); color: #fff; border: 1px solid var(--t); }
.cookie-accept:hover { background: var(--t2); border-color: var(--t2); }
footer { background: var(--dk); padding: 0; }
.footer-top {
  max-width: var(--mx); margin: 0 auto;
  padding: 60px 56px 52px;
  display: grid; grid-template-columns: 1fr auto auto; gap: 72px; align-items: start;
}
.footer-logo { font-size: 20px; color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 800; }
.footer-logo i { color: var(--t); font-style: normal; }
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7;
  margin-bottom: 16px; max-width: 240px;
}
.footer-address {
  font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.8;
  font-style: normal;
}
.footer-col { text-align: left; }
.footer-col--brand { padding-right: 0; }
.footer-col--contact { text-align: right; }
.footer-col--contact .footer-contact-item { justify-content: flex-end; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--t);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .2s;
}
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { flex-shrink: 0; opacity: .5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom-inner {
  max-width: var(--mx); margin: 0 auto; padding: 18px 56px;
  display: flex; justify-content: flex-start; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.22); text-transform: uppercase; letter-spacing: .5px;
}
.footer-bottom a { color: rgba(255,255,255,.38); text-decoration: none; cursor: pointer; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 20px 40px; gap: 36px; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

/* dark section text overrides */
.numbers .section-title, .cta-section .section-title { color: #fff; }
@media (max-width: 1100px) {
  .topbar-nav { display: none; }
  

.hero-left { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-float { border-radius: var(--r2); }
}

@media (max-width: 768px) {
  .topbar-inner { padding: 0 20px; justify-content: center; }
  .logo-sub { display: none; }
  .topbar-cta { display: none; }
  .hero-badges { grid-template-columns: 1fr 1fr; }
  .numbers { display: none; }
  .logo-text { font-size: 24px; }
  .hero { height: 80vh; min-height: 0; box-sizing: border-box; overflow: hidden; padding-top: 68px; display: flex; flex-direction: column; justify-content: center; align-items: stretch; }
  .hero::before { opacity: .65; background-position: 15% 30%; background-image: url('../img/hero-bg-mobile.jpg'); }
  .hero::after { background: linear-gradient(to bottom, rgba(7,9,13,.5) 0%, rgba(7,9,13,.3) 50%, rgba(7,9,13,.8) 100%), linear-gradient(105deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 100%); }
  .hero-left { display: flex; flex-direction: column; padding: 0 28px; height: auto; margin: 0; width: 100%; }
  .hero-copy { text-align: center; align-items: center; }
  .hero-tag { display: none; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero h1 { font-size: 56px; line-height: 1.02; margin-bottom: 26px; letter-spacing: -.8px; }
  .hero-sub { margin-bottom: 36px; font-size: 18px; max-width: 100%; line-height: 1.6; }
  .hero-actions { margin-bottom: 36px; }
  .hero .btn-primary { padding: 22px 28px; font-size: 18px; width: 100%; justify-content: center; border-radius: 10px; box-shadow: 0 6px 28px rgba(0,151,184,.45); }
  .hero-badge { font-size: 15px; font-weight: 700; }
  .hero-badges { gap: 14px 24px; margin-top: 10px; }
  .cases, .objections, .testi-section { padding: 72px 20px; }
  .faq { padding: 72px 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 0; }
  .testi-card { padding: 32px 20px; border-left: none; border-bottom: 1px solid var(--b1); }
  .testi-card:first-child { padding-top: 0; }
  .testi-card:last-child { border-bottom: none; }
  .testi-section { min-height: unset; }
  .cases-header { padding: 0; margin-bottom: 32px; }
  .case-list { padding: 0; }
  .case-row { grid-template-columns: 1fr; height: auto; }
  .case-row--reverse { direction: ltr; }
  .case-row-photo { height: 220px; }
  .case-row-content { padding: 24px 20px; }
  .case-headline { font-size: 28px; }
  .objections { min-height: unset; }
  .obj-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.10); }
  .obj-row:first-child { border-top: none; padding-top: 0; }
  .obj-q { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.3; padding-right: 0; padding-left: 14px; border-left: 3px solid var(--t); }
  .obj-a { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.65); padding-left: 14px; }
  .obj-a strong { color: #fff; }
  .section-title { font-size: 34px; overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
  .case-headline { overflow-wrap: break-word; max-width: 100%; }
  .hero h1 { overflow-wrap: break-word; }
  .photo-divider { height: 300px; }
  .photo-divider img { transform: scaleX(-1) scale(1.15); }
  .photo-divider-overlay { padding: 32px 24px; align-items: center; justify-content: center; background: linear-gradient(105deg, rgba(7,9,13,.88) 0%, rgba(7,9,13,.70) 60%, rgba(7,9,13,.45) 100%); }
  .photo-divider-content { text-align: center; }
  .photo-divider h3 { font-size: 28px; max-width: 100%; text-wrap: balance; }
  .photo-divider h3 br { display: none; }
  .photo-divider p { font-size: 16px; max-width: 100%; }
  .cta-section { padding: 64px 20px; overflow: hidden; }
  .cta-section::after { width: 300px; height: 300px; }
  .cta-inner { flex-direction: column; align-items: center; gap: 30px; }
  .cta-section h2 { font-size: 32px; }
  .cta-section p { max-width: 100%; }
  .cta-dark { width: 100%; max-width: 340px; padding: 18px 20px; font-size: 16px; }
  .form-card label { font-size: 13px; }
  .form-card input, .form-card select { font-size: 15px; }
  .testi-company { font-size: 13px; }
  footer { padding: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; gap: 32px 24px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-col--contact { text-align: left; }
  .footer-col--contact .footer-contact-item { justify-content: flex-start; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; gap: 6px; text-align: center; text-transform: none; letter-spacing: 0; font-size: 10px; }
  .footer-col-title { text-transform: capitalize; letter-spacing: .5px; }
  .footer-nav a { text-transform: capitalize; }
  .footer-address { text-transform: capitalize; }
  .cookie-banner { flex-direction: column; padding: 16px 20px; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 20px; }
  .hero-form-float { display: none; }
  /* how-works */
  .how-step { padding: 28px 20px; }
  /* testimonials */
  .testi-quote-mark { font-size: 40px; margin-bottom: 10px; }
  .testi-text { font-size: 16px; }
  /* faq */
  .faq-item summary { padding: 16px 20px; font-size: 16px; }
  .faq-item p { padding: 0 20px 16px; font-size: 16px; }
  /* footer */
  .footer-nav a { font-size: 15px; }
  .footer-contact-item { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .num-item .n { font-size: 36px; }
  .section-title { font-size: 28px; }
  .cta-section h2 { font-size: 22px; }
  .how-steps { grid-template-columns: 1fr; border: none; gap: 0; border-radius: 0; }
  .how-step { border-right: none; border-bottom: 1px solid var(--b1); border-left: none; padding: 24px 20px; }
  .how-step:first-child { border-top: none; }
  .how-step:last-child { border-bottom: none; }
  .case-row-photo { height: 180px; }
  .case-headline { font-size: 24px; }
  .obj-q { font-size: 18px; }
  .obj-a { font-size: 16px; }
  .photo-divider h3 { font-size: 24px; }
  .photo-divider p { font-size: 15px; }
  .testi-quote-mark { font-size: 34px; }
  .testi-company { font-size: 14px; }
  .testi-avatar { width: 48px; height: 48px; }
  .cta-section::after { width: 200px; height: 200px; }
  .cta-dark { padding: 16px 20px; }
  .faq-item summary { padding: 14px 16px; font-size: 15px; }
  .faq-item p { padding: 0 16px 14px; font-size: 15px; }
  .form-card label { font-size: 14px; }
  .form-card input, .form-card select { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .cases, .objections, .testi-section, .faq { padding: 48px 20px; }
  .wa-float { bottom: 16px; right: 16px; }
  .cta-badges { gap: 12px; flex-wrap: wrap; justify-content: center; }
}






/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .30s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-tag   { animation: heroFadeIn .7s .1s both; }
.hero h1    { animation: heroFadeIn .7s .2s both; }
.hero-sub   { animation: heroFadeIn .7s .35s both; }
.hero-actions { animation: heroFadeIn .7s .55s both; }
.hero-badges  { animation: heroFadeIn .7s .65s both; }
.hero-form-float { animation: heroFadeIn .8s .25s both; }
/* TOPBAR SCROLLED */
.topbar.scrolled {
  background: rgba(255,255,255,.97) !important;
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.07) !important;
  backdrop-filter: blur(20px) !important;
}
.topbar.scrolled .logo-text { color: var(--h) !important; }
.topbar.scrolled .logo-text i { color: var(--t) !important; }
.topbar.scrolled .logo-sub { color: rgba(0,0,0,.3) !important; }
.topbar.scrolled .topbar-nav a { color: var(--s1) !important; }
.topbar.scrolled .topbar-nav a:hover { color: var(--h) !important; background: rgba(0,0,0,.04) !important; }

/* ANIMAÇÕES EXPANDIDAS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
@keyframes numPop {
  0%   { transform: scale(.7); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

/* Num items: pop quando visible */
.num-item.visible .n {
  animation: numPop .6s cubic-bezier(.34,1.56,.64,1) both;
}
.num-item.visible .l {
  animation: fadeUp .5s .2s both;
}

