/* Extracted styles from index.html - basic design tokens and layout */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B2545;
  --navy-mid: #1A3F6F;
  --blue: #1A5FA8;
  --blue-light: #2B7FDB;
  --accent: #F57C00;
  --accent-light: #FF9A2E;
  --white: #FFFFFF;
  --gray-50: #F4F6F9;
  --gray-100: #EAEEF4;
  --gray-300: #C8D2DF;
  --gray-500: #64748B;
  --gray-700: #334155;
  --green: #1B7A3E;
  --green-light: #E8F5E9;
  --page-bg: #F0F4F8;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--page-bg); overflow-x: hidden; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,37,69,0.97); backdrop-filter: blur(8px);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px; height: 38px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 15px; line-height: 1.2; }
.logo-text span { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.6); }
.header-cta {
  background: var(--accent); color: white; border: none; padding: 10px 22px;
  border-radius: 6px; font-family: var(--font-head); font-weight: 600; font-size: 14px;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.header-cta:hover { background: #e56c00; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #EBF1FA 0%, #F4F7FC 50%, #EDF2FA 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding-top: 72px; overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,95,168,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px 80px 64px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,124,0,0.1); border: 1px solid rgba(245,124,0,0.35);
  color: #c25f00; padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px; width: fit-content;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(32px,4vw,52px); font-weight: 800;
  color: var(--navy); line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-sub {
  font-size: 18px; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 40px; max-width: 480px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.hero-pill {
  display: flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--gray-300);
  color: var(--gray-700); padding: 7px 14px; border-radius: 100px;
  font-size: 13px; box-shadow: 0 1px 4px rgba(11,37,69,0.06);
}
.hero-pill svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; }

/* HERO FORM */
.hero-form-wrap {
  background: white; border-radius: 16px; padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  margin: 80px 64px 80px 0; position: relative; z-index: 2;
  align-self: center;
}
.hero-form-wrap h2 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.hero-form-wrap p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300);
  border-radius: 8px; font-family: var(--font-body); font-size: 15px;
  color: var(--navy); outline: none; transition: border 0.2s;
  appearance: none; background: white;
}
.form-group input:focus, .form-group select:focus { border-color: var(--blue); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.btn-primary {
  width: 100%; padding: 15px; background: var(--accent); color: white;
  border: none; border-radius: 8px; font-family: var(--font-head); font-size: 16px;
  font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.btn-primary:hover { background: #e56c00; transform: translateY(-1px); }
.form-trust { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 12px; }
.form-trust svg { width: 14px; height: 14px; stroke: var(--green); fill: none; }
.form-trust span { font-size: 12px; color: var(--gray-500); }

/* ── SOCIAL PROOF STRIP ── */
.strip { background: var(--navy); border-top: none; border-bottom: none; padding: 28px 40px; display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 10px; }
.strip-item .num { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: white; }
.strip-item .lbl { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 100px; line-height: 1.3; }
.strip-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ── SECTION BASE ── */
section { padding: 96px 40px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-tag { display: inline-block; background: var(--blue); color: white; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: var(--font-head); font-size: clamp(26px,3vw,40px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }

.produtos { background: white; }
.produtos-header { text-align: center; margin-bottom: 60px; }
.produtos-header .section-sub { margin: 0 auto; }
.produtos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.produto-card { border: 1.5px solid var(--gray-100); border-radius: 16px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.produto-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,37,69,0.12); }
.produto-card.featured { border-color: var(--blue); }
.featured-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.5px; }
.produto-video { position: relative; width: 100%; padding-top: 56.25%; background: var(--navy); }
.produto-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.produto-body { padding: 28px; }
.produto-body h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.produto-body p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.produto-features { list-style: none; margin-bottom: 24px; }
.produto-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); padding: 5px 0; border-bottom: 1px solid var(--gray-100); }
.produto-features li:last-child { border-bottom: none; }
.produto-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.btn-outline { display: block; text-align: center; padding: 12px; border: 2px solid var(--blue); color: var(--blue); border-radius: 8px; font-family: var(--font-head); font-weight: 600; font-size: 14px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-solid { display: block; text-align: center; padding: 12px; background: var(--blue); color: white; border-radius: 8px; font-family: var(--font-head); font-weight: 600; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.btn-solid:hover { background: var(--navy); }

/* ── POR QUE CST ── */
.porque { background: var(--gray-50); }
.porque-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.porque-video-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(11,37,69,0.15); aspect-ratio: 16/9; }
.porque-video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.beneficios-list { list-style: none; margin-top: 36px; }
.beneficio { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-300); }
.beneficio:last-child { border-bottom: none; }
.ben-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ben-icon svg { width: 22px; height: 22px; stroke: white; fill: none; }
.ben-text strong { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ben-text span { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── DEPOIMENTOS ── */
.depoimentos { background: var(--gray-50); }
.dep-header { text-align: center; margin-bottom: 56px; }
.dep-header .section-sub { margin: 0 auto; }
.dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dep-card { background: white; border: 1px solid var(--gray-100); border-radius: 16px; padding: 28px; box-shadow: 0 2px 12px rgba(11,37,69,0.06); }
.stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; }
.dep-card p { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.dep-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.dep-info span { font-size: 12px; color: var(--gray-500); }

/* ── INSTITUCIONAL VIDEO ── */
.institucional { background: var(--navy); text-align: center; padding: 96px 40px; }
.institucional .section-tag { background: rgba(255,255,255,0.15); }
.institucional .section-title { color: white; margin: 0 auto 16px; }
.institucional .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 48px; }
.inst-video-wrap { max-width: 800px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.4); aspect-ratio: 16/9; }
.inst-video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── GARANTIAS ── */
.garantias { background: white; }
.gar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.gar-card { background: white; border: 1px solid var(--gray-100); border-radius: 16px; padding: 32px 24px; text-align: center; }
.gar-icon { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.gar-icon svg { width: 28px; height: 28px; stroke: white; fill: none; }
.gar-card strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.gar-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── CTA FINAL ── */
.cta-final { background: linear-gradient(135deg, var(--navy) 0%, #1a3f7a 100%); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0; pointer-events: none; }
.cta-final .container { position: relative; z-index: 1; }
.cta-final .section-title { color: white; margin: 0 auto 16px; max-width: 640px; }
.cta-final .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 48px; }
.cta-form-wrap { max-width: 500px; margin: 0 auto; background: white; border-radius: 16px; padding: 40px; box-shadow: 0 32px 80px rgba(0,0,0,0.3); }
.cta-form-wrap h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cta-form-wrap p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 200; }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(37,211,102,0.4); cursor: pointer; border: none; transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }

/* WA MODAL */
.wa-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; display: flex; align-items: flex-end; justify-content: flex-end; padding: 0 32px 108px 0; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.wa-modal-overlay.open { opacity: 1; pointer-events: all; }
.wa-modal { background: white; border-radius: 16px; padding: 28px; width: 340px; box-shadow: 0 24px 80px rgba(0,0,0,0.25); transform: translateY(20px); transition: transform 0.25s; }
.wa-modal-overlay.open .wa-modal { transform: translateY(0); }
.wa-modal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.wa-modal-header .wa-icon { width: 40px; height: 40px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; }
.wa-modal-header .wa-icon svg { width: 20px; height: 20px; fill: white; }
.wa-modal-header h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); }
.wa-modal p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.5; }
.wa-modal .form-group label { font-size: 12px; }
.wa-modal .form-group input, .wa-modal .form-group select { font-size: 14px; padding: 10px 14px; }
.wa-submit { width: 100%; padding: 12px; background: #25D366; color: white; border: none; border-radius: 8px; font-family: var(--font-head); font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; }
.wa-submit:hover { background: #1fb355; }
.wa-submit svg { width: 18px; height: 18px; fill: white; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.5); text-align: center; padding: 32px 40px; font-size: 13px; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: white; }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.25s; }
.anim-d3 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 14px 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-form-wrap { margin: 0 24px 60px; }
  .produtos-grid { grid-template-columns: 1fr; }
  .porque-inner { grid-template-columns: 1fr; gap: 40px; }
  .dep-grid { grid-template-columns: 1fr; }
  .gar-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 24px; }
  .strip { gap: 24px; padding: 24px; }
  .strip-div { display: none; }
  .wa-float { bottom: 20px; right: 20px; }
  .wa-modal-overlay { padding: 0 20px 96px 20px; justify-content: center; }
  .wa-modal { width: 100%; }
}

/* Accessibility & form feedback */
:focus { outline: 3px solid rgba(26,95,168,0.18); outline-offset: 2px; }
.error { color: #B00020; font-size: 13px; margin-top: 6px; display: none; }
.error.active { display: block; }
