/* =========================
     IDENTIDADE VISUAL DRM 360
     ========================= */
:root {
  --brand: #00ccff; /* cyan principal (meta theme-color do site original) */
  --brand-2: #00a8d6; /* cyan escurecido */
  --brand-3: #007ea3; /* cyan profundo */
  --ink: #0a1a26; /* texto principal */
  --ink-2: #243845;
  --muted: #5a6b78;
  --line: #dfeaf1;
  --bg: #ffffff;
  --bg-soft: #f3f9fc;
  --bg-dark: #001827; /* fundo escuro institucional */
  --bg-darker: #000d17;
  --yellow: #ffd400;
  --shadow: 0 18px 50px rgba(0, 40, 60, 0.14);
  --radius: 12px;
  --erroColor: #ff0000;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-family:
    "Open Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: -0.3px;
  line-height: 1.18;
  margin: 0 0 0.5em;
}
h1 {
  font-weight: 800;
}
h2 {
  font-weight: 800;
}
h3 {
  font-weight: 700;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(0, 24, 39, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(0, 204, 255, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-menu a {
  color: #cfe6ef;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-menu a:hover {
  color: var(--brand);
}
.nav .btn-primary {
  padding: 11px 20px;
  font-size: 13.5px;
}
body {
  padding-top: 72px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(0, 13, 23, 0.92) 0%,
      rgba(0, 24, 39, 0.82) 45%,
      rgba(0, 126, 163, 0.55) 100%
    ),
    url("https://www.drmeducacao.com.br/360/img/DRM_360_5_banner-desktop.jpg")
      center/cover no-repeat;
  padding: 72px 0 90px;
}
.hero::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: url("https://www.drmeducacao.com.br/360/img/DRM_360_popup_bolinhas-1.png")
    center/contain no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 204, 255, 0.14);
  color: #9be7ff;
  border: 1px solid rgba(0, 204, 255, 0.35);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 204, 255, 0.25);
}
h1.hero-title {
  font-size: clamp(34px, 4.6vw, 54px);
  margin: 20px 0 18px;
  font-weight: 800;
  letter-spacing: -0.8px;
}
h1.hero-title .hl {
  color: var(--brand);
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(0, 204, 255, 0.18) 60%
  );
  padding: 0 4px;
}
.hero p.lead {
  font-size: 18px;
  color: #d6e9f3;
  max-width: 580px;
  margin: 0 0 26px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  gap: 11px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #eaf6fb;
  font-size: 15.5px;
}
.hero-bullets svg {
  flex: 0 0 auto;
  margin-top: 3px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}
.badge-implant {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 204, 255, 0.35);
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
}
.badge-implant strong {
  color: var(--brand);
}

/* ============ FORM CARD ============ */
.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 40px 90px rgba(0, 12, 24, 0.45);
  position: relative;
  border-top: 6px solid var(--brand);
}
.form-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.28;
  color: var(--bg-dark);
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

.form-row .field-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  font-family: inherit;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 204, 255, 0.2);
}
.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.testimonial-mini {
  margin-top: 18px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 12px;
  border-left: 4px solid var(--brand);
}
.testimonial-mini p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.5;
}
.testimonial-mini .who {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.simpleInputContainer {
  position: relative;
}

.field-error {
  opacity: 0;
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

/* ============ CTA ÚNICO ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #001827;
  font-weight: 800;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 204, 255, 0.35);
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #33d6ff;
  box-shadow: 0 16px 34px rgba(0, 204, 255, 0.45);
}
.btn-primary.inline {
  width: auto;
  padding: 14px 30px;
}

#warningLabelContainer {
  color: var(--erroColor);
  font-size: 13px;
  margin-top: 10px;
  font-family: "Montserrat";
}
#warningLabelContainer p {
  margin: 0 !important;
}
/* ============ STATS / PROVA SOCIAL ============ */
.stats {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stats::before {
  content: "";
  display: block;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  position: absolute;
  top: 0;
  left: 0;
}
.stats-title {
  text-align: center;
  margin-bottom: 38px;
}
.stats-title h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 6px;
  color: var(--bg-dark);
}
.stats-title p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.stat {
  padding: 8px 4px;
}
.stat .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--bg-dark);
  line-height: 1;
  letter-spacing: -0.8px;
}
.stat .num .plus {
  color: var(--brand);
}
.stat .lbl {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.4;
}

/* ============ SEÇÕES PADRÃO ============ */
.section {
  padding: 88px 0;
}
section.alt {
  background: var(--bg-soft);
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  color: var(--brand-3);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 12px 0 14px;
  color: var(--bg-dark);
}
.section-title .hl {
  color: var(--brand-3);
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* ============ MÓDULOS (com notebook mockups reais) ============ */
.modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.module {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 1px solid var(--line);
}
.module:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 40, 60, 0.18);
}
.module .m-img {
  background: var(--bg) center/contain no-repeat;
  width: 90%;
  height: 90%;
  margin: auto;
}
.module .m-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.module .m-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 204, 255, 0.12);
  color: var(--brand-3);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.module h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--bg-dark);
}
.module p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ============ FAIXA IA (Ensina.AI) ============ */
.ai-band {
  background: linear-gradient(115deg, #000d17 0%, #001827 55%, #003a5c 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 88px 0 0;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.ai-band h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 18px;
}
.ai-band h2 .hl {
  color: var(--brand);
}
.ai-band p.lead {
  font-size: 17px;
  color: #d6e9f3;
  margin: 0 0 22px;
  max-width: 560px;
}
.ai-feats {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.ai-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.18);
  padding: 14px 16px;
  border-radius: 12px;
}
.ai-feats li strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
}
.ai-feats li span {
  font-size: 13.5px;
  color: #aacddc;
}
.ai-band .wave {
  display: block;
  width: 100%;
  margin-top: 60px;
}
.ai-band .wave img {
  width: 100%;
  display: block;
}

/* ============ DEPOIMENTOS ============ */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 6px 22px rgba(0, 40, 60, 0.05);
}
.quote-mark {
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 0.6;
  height: 24px;
}
.test p.quote {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}
.test .person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}
.person .name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}
.person .role {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* ============ IMPLANTAÇÃO ============ */
.implant {
  background: linear-gradient(120deg, #000d17, #001827 60%, #003a5c);
  color: #fff;
  border-radius: 18px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.implant::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: url("https://www.drmeducacao.com.br/360/img/DRM_360_popup_bolinhas-1.png")
    center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.implant h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 16px;
  line-height: 1.15;
}
.implant h2 .hl {
  color: var(--brand);
}
.implant p {
  color: #d6e9f3;
  margin: 0 0 22px;
  font-size: 16.5px;
}
.timeline {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.tl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 204, 255, 0.22);
  padding: 15px 18px;
  border-radius: 12px;
}
.tl-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #001827;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.tl-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
}
.tl-text span {
  color: #aacddc;
  font-size: 13.5px;
}

/* ============ CTA FINAL ============ */
.final-cta {
  background: var(--brand);
  color: #001827;
  text-align: center;
  padding: 80px 24px;
  border-radius: 18px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: url("https://www.drmeducacao.com.br/360/img/DRM_360_popup_bolinhas-1.png")
    center/contain no-repeat;
  opacity: 0.4;
}
.final-cta h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 14px;
  color: #001827;
  position: relative;
  z-index: 1;
}
.final-cta p {
  font-size: 17.5px;
  margin: 0 0 28px;
  color: #002033;
  position: relative;
  z-index: 1;
}
.final-cta .btn-primary {
  background: #001827;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 30, 50, 0.35);
  width: auto;
  padding: 16px 34px;
  font-size: 15.5px;
  position: relative;
  z-index: 1;
}
.final-cta .btn-primary:hover {
  background: #003a5c;
}

/* ============ FOOTER ============ */
footer {
  background: #000d17;
  color: #9fbccb;
  padding: 48px 0 30px;
  font-size: 14px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
footer a {
  color: #9fbccb;
  transition: color 0.15s;
}
footer a:hover {
  color: var(--brand);
}
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #6b8a99;
}
.foot-logo img {
  height: 46px;
  width: auto;
}

/* ============ SUCCESS STATE ============ */
.success-msg {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.success-msg.show {
  display: block;
}
.success-msg .check {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #10b981);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.success-msg h3 {
  margin: 0 0 8px;
  color: var(--bg-dark);
  font-family: "Montserrat", sans-serif;
}
.success-msg p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* Tela de agradecimento */
.fil1 {
  fill: #ffffff !important;
}
.fil0 {
  fill: #571292 !important;
}
.thankyouSectionImage img {
  height: auto !important;
  width: 100% !important;
}
/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  body {
    padding-top: 64px;
  }
  .nav-menu {
    display: none;
  }
  .hero {
    padding: 54px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }
  .modules {
    grid-template-columns: 1fr;
  }
  .module {
    grid-template-columns: 1fr;
  }
  .module .m-img {
    min-height: 200px;
    margin-top: 20px;
  }
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ai-band {
    padding-top: 64px;
  }
  .tests-grid {
    grid-template-columns: 1fr;
  }
  .implant {
    grid-template-columns: 1fr;
    padding: 36px;
    justify-content: center;
  }
  .section {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .nav-logo img {
    height: auto;
    width: 199px;
  }
}
@media (max-width: 560px) {
  .nav .btn-primary {
    padding: 10px 14px;
    font-size: 12px;
  }
  h1.hero-title {
    font-size: 32px;
  }
  .hero-grid .heroSection {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    margin: auto;
  }
  #form-content {
    width: 100%;
  }
  .implant h2,
  .stats-title h2,
  .section-title,
  .ai-band h2,
  .final-cta h2 {
    font-size: 24px;
  }
  .hero p.lead {
    font-size: 16px;
  }
  .form-card {
    padding: 24px;
  }
  .stats-grid {
    grid-template-columns: auto;
  }
  .final-cta {
    padding: 60px 22px;
    border-radius: 14px;
    /* margin: 0 16px; */
  }
  .final-cta .btn-primary,
  .btn-primary.inline {
    padding: 15px;
    font-size: 14px;
    line-height: 1.3;
  }
  .foot-logo img {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .eyebrow {
    gap: 8px;
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 0;
  }
  .final-cta .btn-primary svg {
    display: none;
  }
}
