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

body {
  font-family: 'DM Sans', sans-serif;
  background: #f4f7fb;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
header {
  background: #0d52a3;
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrap img {
  max-height: 70px;
  display: block;
}
.logo-fallback {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 20px;
}
.logo-fallback span { color: #5db8ff; }
.header-email {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.header-email i { color: #5db8ff; font-size: 15px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0a3d7a 0%, #1a6fd4 65%, #2589f5 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 24px;
  position: relative;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
}
.hero h1 span { color: #a8d8ff; }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ── INFO BAR ── */
.info-bar {
  background: #0a3266;
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.info-bar-item i { color: #5db8ff; font-size: 15px; }
.info-bar-item.instagram i { color: #e1306c; }
.info-bar-item.instagram a { color: rgba(255,255,255,0.8); }
.info-bar-item.instagram a:hover { color: #ffffff; }

/* ── LEAD FORM ── */
.form-section {
  flex: 1;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
  color: #0d2a52;
}
.form-section-sub {
  color: #6b7c9a;
  font-size: 15px;
  text-align: center;
  margin-bottom: 36px;
}
.accent-line {
  width: 48px;
  height: 3px;
  background: #1a6fd4;
  border-radius: 2px;
  margin: 12px auto 32px;
}
.form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(13, 82, 163, 0.10);
  padding: 36px 32px;
  width: 100%;
  max-width: 500px;
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #0d2a52;
  margin-bottom: 6px;
}
.form-card p {
  color: #6b7c9a;
  font-size: 13px;
  margin-bottom: 22px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 12px;
  color: #6b7c9a;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1px solid #d5e0f0;
  background: #f8fafd;
  color: #1a1a2e;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #1a6fd4;
  background: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-submit {
  width: 100%;
  padding: 13px;
  background: #1a6fd4;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.btn-submit:hover { background: #1560b8; }
.btn-whatsapp {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe59; }
.privacy-note {
  font-size: 11px;
  color: #9aaabb;
  text-align: center;
  margin-top: 14px;
}

/* ── FOOTER ── */
footer {
  background: #0a2244;
  padding: 28px 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.footer-logo span { color: #5db8ff; }
footer p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  line-height: 1.7;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.ig-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 999;
  background: #e1306c;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(225,48,108,0.4);
  transition: transform 0.2s;
}
.ig-float:hover { transform: scale(1.1); color: #fff; }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: #eaf6ef;
  border: 1px solid #b6e5c8;
  color: #1a7a42;
  border-radius: 7px;
  padding: 14px 16px;
  font-size: 14px;
  text-align: center;
  margin-top: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .info-bar { gap: 16px; }
  header { padding: 12px 16px; }
  .header-email { display: none; }
}
