:root {
  --brand: #0a2a5c;
  --brand-dark: #041830;
  --accent: #0057ff;
  --accent-hot: #2b7bff;
  --gold: #0057ff;
  --accent-soft: #e8f0ff;
  --ink: #0d1b2a;
  --muted: #5a6a7a;
  --line: #d9e2ef;
  --surface: #f3f6fb;
  --white: #ffffff;
  --success: #0f7a5a;
  --shadow: 0 14px 40px rgba(4, 24, 48, 0.12);
  --radius: 16px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* Brand logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo img {
  height: 56px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.site-footer .brand-logo {
  display: inline-flex;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.4rem 0.55rem;
}

.site-footer .brand-logo img {
  height: 56px;
  max-width: 160px;
}

.logo-on-dark {
  background: #fff;
  border-radius: 14px;
  padding: 0.55rem 0.8rem;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(4, 24, 48, 0.15);
}

.logo-on-dark img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero-panel .logo-row img {
  height: 56px;
  width: 56px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2);
}

/* Navbar */
.site-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
}

.nav-link {
  color: var(--ink) !important;
  font-weight: 650;
  font-size: 0.94rem;
  padding: 0.5rem 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--white) !important;
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 87, 255, 0.35);
}

.btn-outline-brand {
  border: 2px solid var(--brand);
  color: var(--brand) !important;
  background: transparent;
  font-weight: 700;
  padding: 0.68rem 1.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: var(--white) !important;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-outline {
  border: 2px solid #25d366;
  color: #128c7e !important;
  background: transparent;
  font-weight: 700;
  padding: 0.68rem 1.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-whatsapp-outline:hover {
  background: #25d366;
  color: #fff !important;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 87, 255, 0.16), transparent 32%),
    radial-gradient(circle at 8% 78%, rgba(10, 42, 92, 0.12), transparent 36%),
    linear-gradient(180deg, #eef3fb 0%, #ffffff 72%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.15rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand-dark);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 87, 255, 0.45), rgba(10, 42, 92, 0.35), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-panel .logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-panel .logo-row img {
  height: 48px;
  width: auto;
}

.hero-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  margin-bottom: 0.85rem;
}

.hero-card:last-child {
  margin-bottom: 0;
}

.hero-card .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-card h3 {
  font-size: 1.05rem;
  margin: 0.3rem 0 0.4rem;
}

.progress-lite {
  height: 8px;
  background: #dce8ff;
  border-radius: 999px;
  overflow: hidden;
}

.progress-lite span {
  display: block;
  height: 100%;
  width: 92%;
  background: linear-gradient(90deg, var(--brand), var(--accent-hot));
  border-radius: 999px;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: var(--surface);
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.7rem;
}

.section-sub {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.9rem;
}

.cat-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 0.9rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cat-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.cat-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.cat-item h3 {
  font-size: 0.92rem;
  margin: 0;
  font-weight: 700;
}

.service-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.feature-strip {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 50%, var(--accent));
  color: var(--white);
  border-radius: 24px;
  padding: 2.25rem;
}

.feature-strip ul {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
}

.feature-strip li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.feature-strip li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.price-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.85rem 1.5rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.price-card .tag {
  position: absolute;
  top: -12px;
  right: 1.2rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.price-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.95rem;
}

.price-min {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.15rem;
}

.price-min small {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
}

.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.price-card li:last-child {
  border-bottom: none;
}

.why-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 4px 20px rgba(4, 24, 48, 0.05);
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.review-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.stars {
  color: #d4a017;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
}

.review-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0.95rem;
}

.review-card strong {
  display: block;
  color: var(--brand-dark);
}

.review-card span {
  font-size: 0.84rem;
  color: var(--muted);
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(4, 24, 48, 0.94), rgba(0, 87, 255, 0.88)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--white);
  border-radius: 24px;
  padding: 2.75rem 2rem;
  text-align: center;
}

.cta-band img {
  height: 44px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  margin-bottom: 0.7rem;
}

.cta-band p {
  opacity: 0.92;
  max-width: 36rem;
  margin: 0 auto 1.4rem;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.85rem;
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--brand-dark);
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.15);
}

.contact-info-card {
  background: linear-gradient(160deg, var(--brand-dark), var(--brand) 60%, var(--accent));
  color: var(--white);
  border-radius: 20px;
  padding: 1.85rem;
  height: 100%;
}

.contact-info-card a {
  color: var(--white);
  font-weight: 600;
}

.contact-info-card .info-row {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.contact-info-card .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.65rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-alert {
  display: none;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-alert.show {
  display: block;
}

.form-alert.success {
  background: #e8f8f1;
  color: var(--success);
}

.form-alert.error {
  background: #fdeeee;
  color: #b42318;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 87, 255, 0.14), transparent 40%),
    linear-gradient(180deg, #eef3fb, #ffffff);
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-cloud a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.tag-cloud a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.55rem;
}

.city-grid a {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.city-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.city-note {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 52rem;
}

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.75rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.2rem;
  padding-top: 1.35rem;
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  color: #fff !important;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 4.25rem;
  }

  .hero-panel {
    margin-top: 1.5rem;
  }

  .brand-logo img {
    height: 46px;
    max-width: 140px;
  }

  .feature-strip {
    padding: 1.6rem;
  }
}

/* FAQ accordion — brand-aligned */
.faq-accordion .accordion-item {
  border: 1px solid rgba(10, 42, 92, 0.12);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0a2a5c;
  box-shadow: none !important;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 87, 255, 0.06);
  color: #0057ff;
}

.faq-accordion .accordion-body {
  color: #44516a;
  line-height: 1.65;
}
