:root {
  --color-primary: #0b63b6;
  --color-primary-dark: #0a4c93;
  --color-accent: #f58a08;
  --color-whatsapp: #25d366;
  --color-surface: #ffffff;
  --color-surface-soft: #e9eef5;
  --color-surface-muted: #f6f8fb;
  --color-text: #18314f;
  --color-text-muted: #5e7187;
  --color-border: rgba(10, 76, 147, 0.12);
  --color-shadow: rgba(10, 76, 147, 0.12);
  --container: 1140px;
  --radius-md: 24px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(11, 99, 182, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #ffffff 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(245, 138, 8, 0.45);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--color-primary-dark);
  color: #fff;
  z-index: 2000;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

[id] {
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(10, 76, 147, 0.08);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  min-width: 172px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--color-surface-soft);
  color: var(--color-primary-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.header-cta {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(10, 76, 147, 0.8);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.floating-cta:hover,
.floating-cta:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 5.25rem 0 3rem;
  overflow: clip;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(245, 138, 8, 0.18);
}

.hero-orbit-left {
  width: 30rem;
  height: 30rem;
  top: -12rem;
  left: -14rem;
}

.hero-orbit-right {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  bottom: 2rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.hero h1,
.section-heading h2,
.cta-shell h2,
.site-footer h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--color-primary-dark);
}

.hero-lead,
.section-heading p,
.service-card p,
.step-card p,
.faq-item p,
.site-footer p,
.trust-grid p,
.coverage-card li,
.cta-shell p {
  color: var(--color-text-muted);
}

.hero-lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  box-shadow: 0 18px 35px -18px rgba(11, 99, 182, 0.7);
}

.button-secondary {
  background: rgba(10, 76, 147, 0.08);
  color: var(--color-primary-dark);
}

.button-whatsapp,
.floating-cta {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 18px 35px -18px rgba(37, 211, 102, 0.8);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px -34px var(--color-shadow);
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
}

.price-card,
.route-card,
.hero-summary,
.service-card,
.coverage-card,
.step-card,
.faq-item,
.cta-shell,
.trust-grid article {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px -42px rgba(9, 47, 91, 0.34);
}

.price-card {
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(245, 138, 8, 0.12), rgba(11, 99, 182, 0.04)),
    #fff;
}

.price-label,
.price-note {
  margin: 0;
  font-weight: 700;
}

.price-label {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.price-value {
  margin: 0.2rem 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--color-primary-dark);
}

.price-note {
  color: var(--color-text-muted);
}

.route-card {
  padding: 1.4rem;
}

.route-topline {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.route-topline p {
  margin: 0;
  font-weight: 600;
}

.route-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.route-start {
  background: var(--color-primary);
}

.route-end {
  background: var(--color-accent);
}

.route-line {
  width: 2px;
  height: 4rem;
  margin: 0.25rem 0 0.25rem 0.45rem;
  background: repeating-linear-gradient(to bottom, rgba(10, 76, 147, 0.18) 0, rgba(10, 76, 147, 0.18) 8px, transparent 8px, transparent 16px);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.route-tags span,
.hero-summary article strong,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.route-tags span {
  padding: 0.55rem 0.85rem;
  background: var(--color-surface-muted);
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-summary {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.hero-summary div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.hero-summary div strong,
.step-card span {
  width: 3rem;
  height: 3rem;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  background: linear-gradient(135deg, rgba(11, 99, 182, 0.14), rgba(245, 138, 8, 0.16));
}

.trust-grid h2 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-family: "Archivo", sans-serif;
}

.trust-grid p,
.site-footer p,
.site-footer li,
.cta-shell p,
.faq-item p {
  margin: 0;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 99, 182, 0.03), rgba(11, 99, 182, 0)), #fff;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--color-primary-dark);
}

.section-heading p {
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

.service-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.step-card {
  padding: 1.6rem;
}

.service-card h3,
.step-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Archivo", sans-serif;
  color: var(--color-primary-dark);
  font-size: 1.35rem;
}

.service-card-featured {
  background: linear-gradient(165deg, rgba(11, 99, 182, 0.08), rgba(245, 138, 8, 0.09)), #fff;
}

.area-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.coverage-card {
  padding: 1.5rem;
}

.coverage-card ul,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.coverage-card li,
.site-footer li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(10, 76, 147, 0.08);
}

.coverage-card li:last-child,
.site-footer li:last-child {
  border-bottom: 0;
}

.coverage-map {
  position: relative;
  height: 12rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 99, 182, 0.08), rgba(245, 138, 8, 0.12)), #f8fbff;
}

.map-circle,
.map-line {
  position: absolute;
}

.map-circle {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
}

.map-circle-a {
  top: 22%;
  left: 24%;
  background: var(--color-primary);
}

.map-circle-b {
  right: 20%;
  bottom: 24%;
  background: var(--color-accent);
}

.map-line {
  height: 3px;
  transform-origin: left;
  border-radius: 999px;
  background: rgba(10, 76, 147, 0.26);
}

.map-line-a {
  top: 34%;
  left: 30%;
  width: 42%;
  transform: rotate(18deg);
}

.map-line-b {
  top: 52%;
  left: 26%;
  width: 28%;
  transform: rotate(88deg);
}

.step-card span {
  margin-bottom: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.3rem 3.6rem 1.3rem 1.3rem;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.3rem 1.3rem;
}

.cta-section {
  padding-bottom: 6rem;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(10, 76, 147, 0.95), rgba(11, 99, 182, 0.92)), #0a4c93;
  color: #fff;
}

.cta-shell h2,
.cta-shell p,
.cta-shell .section-kicker {
  color: #fff;
}

.cta-shell .section-kicker::before {
  background: rgba(255, 255, 255, 0.65);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 260px;
}

.contact-link {
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.site-footer {
  padding: 2.5rem 0 calc(5.5rem + env(safe-area-inset-bottom));
  background: #0a1630;
  color: rgba(255, 255, 255, 0.86);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 18px 35px -18px rgba(37, 211, 102, 0.8); }
  50% { box-shadow: 0 18px 35px -10px rgba(37, 211, 102, 1), 0 0 0 6px rgba(37, 211, 102, 0.14); }
}

.site-footer img {
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 2rem;
}

.site-footer h3 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
  color: #fff;
}

.site-footer .footer-copy {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 999;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px -42px rgba(9, 47, 91, 0.34);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card-featured {
  background: linear-gradient(165deg, rgba(11, 99, 182, 0.08), rgba(245, 138, 8, 0.09)), #fff;
}

.testimonial-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-author strong {
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}

.testimonial-author span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 30, 66, 0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .floating-cta {
  opacity: 0;
  pointer-events: none;
}

.no-js .menu-toggle {
  display: none;
}

.no-js .site-nav {
  display: flex;
}

@media (max-width: 1024px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero-grid,
  .area-grid,
  .faq-grid,
  .cta-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.8rem 0;
  }

  .header-shell {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 210px;
    height: auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-border);
    box-shadow: 0 28px 55px -35px rgba(9, 47, 91, 0.44);
  }

  .site-nav.is-open {
    display: flex;
  }

  .no-js .site-nav {
    position: static;
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .service-grid,
  .steps-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.75rem 0;
  }

  .cta-shell,
  .service-card,
  .step-card,
  .trust-grid article,
  .coverage-card,
  .price-card,
  .route-card,
  .hero-summary,
  .testimonial-card {
    border-radius: 22px;
  }
}

@media (min-width: 761px) {
  .floating-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
