@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --custom-primary:   #0E3A5F;
  --blue:             #0E3A5F;
  --blue-deep:        #0a2d4a;
  --text-dark:        #1A202C;
  --text-body:        #4A5568;
  --text-muted:       #718096;
  --white:            #ffffff;
  --bg-off:           #F7F8FA;
  --bg-faint:         #FAFBFC;
  --border:           #E2E8F0;
  --border-light:     #EDF2F7;
  --shadow-xs:        0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:        0 2px 10px rgba(0,0,0,.07);
  --shadow-md:        0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:        0 16px 52px rgba(0,0,0,.11);
  --shadow-xl:        0 28px 72px rgba(0,0,0,.14);
  --font:             'Poppins', var(--bs-font-sans-serif);
  --nav-h:            70px;
  --r-sm:             8px;
  --r:                12px;
  --r-lg:             18px;
  --section-py:       108px;
  --ease-out:         cubic-bezier(.25,.46,.45,.94);
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font); color: var(--text-dark); }

/* ============================================================
   FORM — classes geradas pelo PHP preservadas intactas
   ============================================================ */
.btn-custom-primary {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .3px;
  padding: 13px 20px;
  border-radius: var(--r-sm);
  width: 100%;
  transition: background-color .28s ease, filter .28s ease;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  filter: brightness(.88) !important;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.lp-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  .65s var(--ease-out),
    transform .65s var(--ease-out);
}

.lp-fade.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-lp {
  height: var(--nav-h);
  background-color: var(--blue);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 2px 16px rgba(0,0,0,.18);
  transition: background-color .3s ease;
}

.navbar-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-lp .nav-link {
  color: rgba(255,255,255,.78) !important;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 7px 15px !important;
  transition: color .22s ease;
}

.navbar-lp .nav-link:hover { color: #fff !important; }

.navbar-lp .nav-cta {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-sm);
  color: #fff !important;
  margin-left: 6px;
  transition: background .22s ease;
}

.navbar-lp .nav-cta:hover { background: rgba(255,255,255,.24); }

.navbar-toggler { border: none; box-shadow: none !important; padding: 4px 6px; }
.navbar-toggler:focus { box-shadow: none !important; }

.navbar-toggler-icon-custom { display:flex; flex-direction:column; gap:5px; }
.navbar-toggler-icon-custom span {
  display:block; width:22px; height:2px;
  background:#fff; border-radius:2px;
  transition: all .3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Foto como protagonista — overlay praticamente zero */
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Véu sutilíssimo — só para harmonizar a temperatura de cor */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 58, 95, .08);
}

/* Container flutua sobre a foto */
.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 52px;
  padding-bottom: 52px;
}

/* ── Conteúdo hero esquerdo ─────────────────────────────── */
.hero-content {
  padding: 52px 48px !important;
  color: #fff;
}

.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-description {
  color: #fff;
}

.hero-content .hero-badge {
  border-color: #fff;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.55;
}

.hero-description {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 28px;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-sm);
  padding: 14px 18px;
}

.hero-offer-badge {
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-offer-text {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ── Glass card direito (formulário) ─────────────────────── */
.hero-form-card {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-xl);
}

.hero-form-title {
  font-size: .9rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.6;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--blue);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-seguranca,
.section-materiais,
.section-diferenciais,
.section-para-quem { padding: var(--section-py) 0; }

.section-header { margin-bottom: 64px; }

/* Título com traço accent */
.section-title {
  font-size: 1.88rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.28;
  margin-bottom: 0;
  padding-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 42px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* Centraliza o traço quando dentro de .section-header */
.section-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header .section-title { margin-bottom: 22px; }

.section-text {
  font-size: .97rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.82;
  max-width: 760px;
  margin: 0 auto 12px;
}

/* Botão outline premium */
.btn-lp-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .4px;
  padding: 14px 38px;
  border-radius: var(--r-sm);
  border: 2px solid var(--blue);
  text-decoration: none;
  transition: background .28s ease, color .28s ease;
}

.btn-lp-primary:hover {
  background: transparent;
  color: var(--blue);
}

/* ============================================================
   SECTION 02 — SEGURANÇA  (fundo branco)
   ============================================================ */
.section-seguranca { background: var(--white); }

.seguranca-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 40px 28px;
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow .3s var(--ease-out),
    border-color .3s ease,
    transform .3s var(--ease-out);
}

.seguranca-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-6px);
}

.seguranca-icon {
  width: 86px; height: 86px;
  object-fit: contain;
  margin-bottom: 22px;
}

.seguranca-card h3 {
  font-size: .9rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   SECTION 03 — MATERIAIS  (fundo #F7F8FA)
   ============================================================ */
.section-materiais { background: var(--bg-off); }

.material-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow .35s var(--ease-out),
    transform .35s var(--ease-out);
}

.material-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.material-card-image { overflow: hidden; flex-shrink: 0; }

.material-card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-out);
}

.material-card:hover .material-card-image img { transform: scale(1.06); }

.material-card-body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.material-card-title {
  font-size: .93rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.42;
}

.material-card-text {
  font-size: .85rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.78;
  margin: 0;
  flex: 1;
}

/* ============================================================
   SECTION 04 — DIFERENCIAIS  (fundo branco)
   ============================================================ */
.section-diferenciais { background: var(--white); }

.diferenciais-image {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

.diferencial-item {
  display: flex;
  flex-direction: column;
  background: var(--bg-off);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: background .25s ease, box-shadow .25s ease;
}

.diferencial-item:last-of-type { margin-bottom: 0; }

.diferencial-item:hover {
  background: #ECF2F9;
  box-shadow: var(--shadow-xs);
}

.diferencial-item h4 {
  font-size: .93rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 5px;
  line-height: 1.4;
}

.diferencial-item p {
  font-size: .86rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECTION 05 — PARA QUEM  (fundo #F7F8FA)
   ============================================================ */
.section-para-quem { background: var(--bg-off); }

.para-quem-image {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

.para-quem-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.para-quem-list li {
  position: relative;
  font-size: .97rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 15px 20px 15px 52px;
  margin-bottom: 10px;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.para-quem-list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.para-quem-list li:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

/* ============================================================
   CTA FINAL — overlay leve, foto como protagonista
   ============================================================ */
.section-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay suave: foto bem visível */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,58,95,.52) 0%,
    rgba(14,58,95,.44) 100%
  );
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}

.cta-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  margin-bottom: 10px;
  text-shadow: 0 1px 6px rgba(0,0,0,.18);
}

.cta-text {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.78;
  max-width: 540px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,.15);
}

.btn-cta-lp {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .4px;
  padding: 16px 48px;
  border-radius: var(--r-sm);
  border: 2px solid #fff;
  text-decoration: none;
  transition: background .28s ease, color .28s ease;
}

.btn-cta-lp:hover {
  background: transparent;
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-lp {
  background: #fff;
  padding: 44px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-contact {
  font-size: .86rem;
  font-weight: 400;
  color: var(--blue);
  margin: 0;
}

.footer-contact a {
  color: var(--blue);
  text-decoration: none;
  transition: color .22s ease;
}

.footer-contact a:hover { color: var(--blue-dark, #0a2540); }

.footer-contact i { margin-right: 5px; }

.footer-separator { margin: 0 16px; opacity: .3; color: var(--blue); }

/* ============================================================
   RESPONSIVIDADE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  :root { --section-py: 90px; }

  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .cta-title { font-size: 2.2rem; }
}

/* ============================================================
   RESPONSIVIDADE — 992px
   ============================================================ */
@media (max-width: 992px) {
  :root { --section-py: 72px; }

  /* Hero stacked: ambos os cards ocupam 100% */
  .hero-section { min-height: auto; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 48px; }

  .hero-content {
    padding: 40px 32px !important;
    text-align: center;
    margin-bottom: 4px;
  }

  .hero-badge { display: block; width: fit-content; margin: 0 auto 20px; }
  .hero-title { font-size: 1.6rem; }
  .hero-offer { justify-content: center; }

  .diferenciais-image,
  .para-quem-image { max-height: 420px; }

  .cta-title { font-size: 1.9rem; }
  :root { --section-py: 72px; }
}

/* ============================================================
   RESPONSIVIDADE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .navbar-lp { height: auto; padding: 12px 0; }

  .navbar-collapse {
    background: var(--blue-deep);
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: var(--r-sm);
  }

  .navbar-lp .nav-link {
    padding: 10px 8px !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .88rem;
  }

  .navbar-lp .nav-item:last-child .nav-link { border-bottom: none; }
  .navbar-lp .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }

  .hero-content { padding: 32px 24px !important; }
  .hero-title { font-size: 1.38rem; }
  .hero-subtitle { font-size: .92rem; }
  .hero-form-card { padding: 30px 22px; }

  .section-title { font-size: 1.5rem; }

  .material-card-image img { height: 200px; }

  .section-cta { padding: 88px 0; }
  .cta-title { font-size: 1.72rem; }

  .footer-logo { margin: 0 auto; }
  .footer-contact { text-align: center; line-height: 2.2; }
  .footer-separator { display: none; }
}

/* ============================================================
   RESPONSIVIDADE — 576px
   ============================================================ */
@media (max-width: 576px) {
  :root { --section-py: 52px; }

  .hero-section { padding-top: calc(var(--nav-h) + 10px); padding-bottom: 40px; }
  .hero-content { padding: 28px 20px !important; }
  .hero-badge { font-size: .66rem; }
  .hero-title { font-size: 1.2rem; }
  .hero-subtitle { font-size: .88rem; }
  .hero-description { font-size: .84rem; }
  .hero-offer { flex-direction: column; text-align: center; gap: 8px; }
  .hero-form-card { padding: 24px 16px; }

  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 1.32rem; }
  .section-text { font-size: .9rem; }

  .seguranca-icon { width: 68px; height: 68px; }
  .seguranca-card { padding: 30px 20px; }

  .material-card-image img { height: 185px; }
  .material-card-body { padding: 20px 18px 22px; }

  .section-cta { padding: 68px 0; }
  .cta-title { font-size: 1.42rem; }
  .cta-text { font-size: .88rem; }

  .btn-lp-primary,
  .btn-cta-lp { width: 100%; text-align: center; }

  .para-quem-list li { font-size: .9rem; padding: 13px 16px 13px 46px; }
  .para-quem-list li::before { left: 15px; width: 12px; height: 12px; }
}
