:root {
  --color-primary: #0a2342;
  --color-primary-deep: #06172d;
  --color-secondary: #c9a24a;
  --color-accent: #17a8a6;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f7fa;
  --color-text: #17212f;
  --color-muted: #637083;
  --color-border: #dce3eb;
  --color-whatsapp: #25d366;
  --color-phone: #0f5fa8;
  --shadow-soft: 0 14px 35px rgba(10, 35, 66, 0.1);
  --shadow-premium: 0 24px 70px rgba(6, 23, 45, 0.2);
  --shadow-card: 0 18px 45px rgba(10, 35, 66, 0.1);
  --radius: 8px;
  --container: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 18%, rgba(23, 168, 166, 0.16), transparent 28%),
    linear-gradient(135deg, var(--color-primary-deep), var(--color-primary));
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.two-column h2,
.why-grid h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.18;
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.notice {
  padding: 14px 16px;
  border: 1px solid rgba(201, 162, 74, 0.34);
  border-radius: var(--radius);
  color: #39465a;
  background: #fff9e8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.07);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(180px, 17vw, 230px);
}

.logo img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  padding: 10px 8px;
  border-radius: var(--radius);
  color: #29374c;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: #eef4fb;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.header-actions .btn {
  padding-inline: 14px;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-primary);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 23, 45, 0.28);
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 82px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 20%, rgba(201, 162, 74, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(6, 23, 45, 0.96) 0%, rgba(10, 35, 66, 0.82) 46%, rgba(10, 35, 66, 0.36) 100%),
    url("img/hero-passport.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 54px;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.05rem, 4.9vw, 4.25rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero__text {
  max-width: 660px;
  margin: 22px 0 0;
  color: #e5edf6;
  font-size: 1.1rem;
}

.hero__emphasis {
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(201, 162, 74, 0.44);
  border-radius: var(--radius);
  color: #fff3cb;
  background: rgba(6, 23, 45, 0.48);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero__actions,
.contact-actions,
.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn--primary {
  color: #07162a;
  background: var(--color-secondary);
  box-shadow: 0 14px 34px rgba(201, 162, 74, 0.28);
}

.btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn--onlight {
  width: 100%;
  margin-top: 14px;
  color: var(--color-primary);
  border-color: var(--color-border);
  background: #ffffff;
}

.btn--whatsapp {
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.22);
}

.btn--call {
  color: #ffffff;
  background: var(--color-phone);
  box-shadow: 0 14px 34px rgba(15, 95, 168, 0.22);
}

.hero__panel {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 23, 45, 0.62);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(10px);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fff3cb;
  font-weight: 850;
}

.quote-card__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #eef5fb;
  font-weight: 760;
}

.quote-card__list li,
.feature-list span {
  position: relative;
  padding-left: 24px;
}

.quote-card__list li::before,
.feature-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.two-column,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.content-box {
  color: var(--color-muted);
  font-size: 1.03rem;
}

.content-box p:first-child {
  margin-top: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 24px;
  color: var(--color-text);
  font-weight: 750;
}

.section-image {
  margin: 24px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-bg-soft);
}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.contact-card,
.map-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(201, 162, 74, 0.42), rgba(23, 168, 166, 0.18)) border-box;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  border-color: rgba(23, 168, 166, 0.36);
  box-shadow: 0 24px 60px rgba(10, 35, 66, 0.14);
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-card__body::before {
  content: "";
  width: 38px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--color-secondary);
}

.service-card h3,
.contact-card h3,
.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--color-muted);
}

.text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 900;
}

.process-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.process-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--color-primary-deep);
  background: var(--color-secondary);
  font-weight: 900;
}

.why-grid {
  align-items: center;
}

.section--dark .section-kicker,
.cta-strip .section-kicker {
  color: #f0ce78;
}

.section--dark h2 {
  color: #ffffff;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-cards article {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #eef5fb;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 18px 20px;
  border: 0;
  color: var(--color-text);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question span {
  color: var(--color-primary-deep);
  background: var(--color-secondary);
}

.cta-strip {
  padding: 72px 0;
  background: linear-gradient(135deg, #07172b, #0a2342 62%, #123f63);
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.cta-strip h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.16;
}

.cta-strip p:last-child {
  margin: 12px 0 0;
  color: #dce7f2;
}

.cta-strip__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.map-card {
  padding: 16px;
}

.map-card .section-image {
  margin: 0 0 14px;
}

.map-card .section-image img {
  min-height: 190px;
  max-height: 220px;
}

.map-wrapper {
  min-height: 300px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  border: 0;
}

.contact-card {
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
}

.contact-list strong {
  color: var(--color-text);
}

.contact-list a {
  color: var(--color-primary);
  font-weight: 850;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 28, 32, 0.24);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease, visibility 0.2s ease;
}

.floating-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
}

.floating-btn img {
  width: 25px;
  height: 25px;
}

.floating-btn--whatsapp {
  order: -1;
  background: var(--color-whatsapp);
}

.floating-btn--phone {
  background: var(--color-phone);
}

.floating-btn--top {
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-footer {
  padding: 56px 0 26px;
  color: #ffffff;
  background: #07172b;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(160px, 0.7fr));
  gap: 30px;
  align-items: start;
}

.footer-logo {
  width: min(100%, 320px);
  min-height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #ffffff;
}

.footer-logo img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.footer-brand p,
.footer-column ul,
.footer-bottom p {
  margin: 0;
}

.footer-brand p {
  max-width: 410px;
  color: #cbd8e6;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  padding: 0;
  color: #cbd8e6;
  list-style: none;
}

.footer-column a {
  color: #cbd8e6;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.digital-signature {
  color: #cbd8e6;
  font-size: 0.94rem;
}

@media (max-width: 1120px) {
  .header-actions {
    display: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    z-index: 85;
    width: min(82vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: #ffffff;
    box-shadow: -20px 0 45px rgba(6, 23, 45, 0.14);
    transform: translateX(100%);
    transition: transform 0.24s ease;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 13px 12px;
    font-size: 0.86rem;
  }

  .hero__grid,
  .two-column,
  .why-grid,
  .contact-grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
  }

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

  .cta-strip__actions {
    justify-content: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .logo {
    width: 138px;
  }

  .logo img {
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 64px;
    background:
      radial-gradient(circle at 24% 20%, rgba(201, 162, 74, 0.14), transparent 28%),
      linear-gradient(180deg, rgba(6, 23, 45, 0.94) 0%, rgba(10, 35, 66, 0.82) 68%, rgba(10, 35, 66, 0.74) 100%),
      url("img/hero-passport.webp") center / cover no-repeat;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__emphasis {
    font-size: 0.78rem;
  }

  .hero__panel,
  .contact-card {
    padding: 22px;
  }

  .hero__actions,
  .contact-actions,
  .cta-strip__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-list,
  .service-grid,
  .why-cards,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .process-step span {
    width: 44px;
    height: 44px;
  }

  .section-image img {
    min-height: 220px;
  }

  .map-card .section-image img {
    min-height: 160px;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 260px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn img {
    width: 22px;
    height: 22px;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.82rem;
  }

  .btn {
    padding-inline: 12px;
    font-size: 0.82rem;
  }
}


