/* === Global styles === */
:root {
  --primary: #0b74de;
  --primary-dark: #064a96;
  --accent: #ffb400;
  --bg: #f5f7fb;
  --text: #111827;
  --muted: #6b7280;
  --radius: 10px;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* === Header + nav === */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.top-bar {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.top-bar strong {
  color: var(--primary-dark);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--primary-dark);
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: var(--text);
  font-weight: 500;
}

.btn-outline:hover {
  background: #f3f4f6;
  border-color: var(--primary);
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

/* === Hero / layout === */
main {
  padding: 28px 0 40px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.pill span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-location {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-location strong {
  color: var(--primary-dark);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* === Forms === */
form {
  display: grid;
  gap: 10px;
}

.field-group {
  display: grid;
  gap: 4px;
}

.field-group label {
  font-size: 13px;
  font-weight: 500;
}

.field-group input,
.field-group select,
.field-group textarea {
  border-radius: var(--radius);
  border: 1px solid #d1d5db;
  padding: 9px 10px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}

.field-group textarea {
  min-height: 70px;
  resize: vertical;
}

.field-note {
  font-size: 11px;
  color: var(--muted);
}

/* === Sections === */
.section {
  margin-top: 36px;
}

.section-header {
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

.section-header p {
  font-size: 14px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
}

/* === Steps === */
.steps {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.steps-item {
  display: flex;
  gap: 10px;
}

.steps-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e5edff;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

/* === FAQ === */
.faq-item {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
}

.faq-item summary {
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* === Footer === */
footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 22px 0;
  font-size: 13px;
  margin-top: 40px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.footer-col {
  max-width: 260px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.footer-col a {
  display: block;
  color: #cbd5f5;
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #9ca3af;
  font-size: 12px;
  margin-right: 10px;
}

.seo-note {
  font-size: 11px;
  color: #9ca3af;
}

/* === Sticky CTA === */
.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta button,
.sticky-cta a {
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
}

/* === Utility === */
.page-title {
  margin-bottom: 10px;
  font-size: 26px;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: var(--primary-dark);
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 26px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline,
  .btn-whatsapp {
    width: 100%;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
