:root {
  --navy-950: #010b24;
  --navy-900: #021442;
  --navy-800: #032268;
  --navy-700: #073485;
  --gold-600: #c99532;
  --gold-500: #d8ad55;
  --gold-300: #f0d58d;
  --paper: #f7f4ee;
  --white: #ffffff;
  --ink: #15213b;
  --muted: #566075;
  --line: rgba(201, 149, 50, 0.35);
  --shadow: 0 18px 60px rgba(1, 11, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 16px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: rgba(2, 20, 66, 0.88);
  border-bottom: 1px solid rgba(240, 213, 141, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(216px, 24vw, 340px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.nav-cta svg,
.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta .icon-whatsapp,
.button .icon-whatsapp,
.floating-whatsapp .icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--gold-300);
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 170px clamp(20px, 6vw, 88px) 100px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("assets/hero-inventario.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  opacity: 0.88;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(1, 11, 36, 0.98) 0%, rgba(2, 24, 77, 0.92) 34%, rgba(2, 24, 77, 0.58) 56%, rgba(1, 11, 36, 0.22) 100%),
    linear-gradient(180deg, rgba(1, 11, 36, 0.66), rgba(1, 11, 36, 0.1) 42%, rgba(1, 11, 36, 0.88));
}

.hero-content {
  width: min(100%, 710px);
  max-width: 710px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 6.8vw, 6.5rem);
  overflow-wrap: break-word;
}

.hero h1::first-line {
  color: var(--white);
}

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  display: block;
}

.hero h1 .title-gold,
.gold {
  color: var(--gold-500);
}

.hero h1 .title-line {
  color: var(--white);
}

.ornament,
.small-line {
  position: relative;
  width: min(280px, 68vw);
  height: 1px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, var(--gold-500), rgba(216, 173, 85, 0));
}

.ornament::after {
  position: absolute;
  top: -5px;
  left: min(48%, 136px);
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold-500);
  transform: rotate(45deg);
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button {
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 1rem;
}

.button-primary {
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
}

.button-secondary {
  color: var(--gold-300);
  background: rgba(3, 34, 104, 0.32);
  border-color: rgba(216, 173, 85, 0.8);
}

.button-secondary:hover {
  background: rgba(216, 173, 85, 0.09);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 650;
}

.phone-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 138px;
  padding: 28px 22px;
  color: var(--navy-900);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.trust-item svg {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-600);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 6vw, 88px);
}

.section-light {
  background: var(--white);
}

.section-paper {
  background:
    linear-gradient(180deg, rgba(216, 173, 85, 0.06), rgba(255, 255, 255, 0)),
    var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 25%, rgba(7, 52, 133, 0.86), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800) 58%, var(--navy-950));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
  color: var(--navy-900);
  font-size: clamp(2.15rem, 4.8vw, 4.25rem);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.small-line {
  width: 190px;
  margin-bottom: 0;
}

.small-line::after {
  position: absolute;
  top: -5px;
  left: 78%;
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid var(--gold-500);
  background: var(--white);
  transform: rotate(45deg);
}

.text-flow {
  max-width: 720px;
  color: #2f3a50;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.text-flow p:last-child,
.section-heading p:last-child,
.reason-card p:last-child,
.mode-card p:last-child,
.step p:last-child {
  margin-bottom: 0;
}

.reason-grid,
.mode-grid,
.steps {
  display: grid;
  max-width: 1180px;
  margin: 42px auto 0;
  gap: 24px;
}

.reason-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reason-card,
.mode-card,
.step {
  border-radius: 8px;
}

.reason-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(3, 34, 104, 0.08);
  box-shadow: 0 12px 32px rgba(1, 11, 36, 0.08);
}

.reason-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--navy-900);
  background: rgba(216, 173, 85, 0.18);
  border: 1px solid rgba(201, 149, 50, 0.3);
  border-radius: 999px;
  font-weight: 800;
}

.reason-card h3,
.step h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 1.45rem;
}

.reason-card p,
.step p,
.document-list {
  color: var(--muted);
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 38px auto 0;
  padding: 24px 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border: 1px solid rgba(216, 173, 85, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inline-cta p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 750;
}

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

.mode-card {
  position: relative;
  padding: 52px 40px 42px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 213, 141, 0.68);
  box-shadow: inset 0 -1px 0 rgba(240, 213, 141, 0.55), 0 18px 56px rgba(1, 11, 36, 0.25);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
}

.icon-circle svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mode-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.mode-card p {
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid rgba(201, 149, 50, 0.2);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(3, 34, 104, 0.22);
  font-weight: 800;
}

.documents .section-grid {
  align-items: center;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.document-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  background: var(--white);
  border: 1px solid rgba(3, 34, 104, 0.08);
  border-radius: 8px;
}

.document-list li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--gold-600);
  transform: rotate(45deg);
}

.faq-section {
  padding-bottom: 80px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 40px auto 0;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--gold-500);
  content: "+";
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gold-500);
  border-radius: 8px;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.phone-link-light {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 44px 20px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  background: var(--navy-950);
  border-top: 1px solid rgba(216, 173, 85, 0.42);
}

.site-footer img {
  width: min(320px, 82vw);
  margin-bottom: 8px;
}

.site-footer p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(1, 11, 36, 0.28);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
    overflow: visible;
  }

  .brand img {
    width: min(280px, 68vw);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: calc(100vh - 112px);
    padding: 14px;
    overflow: auto;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(2, 20, 66, 0.99), rgba(1, 11, 36, 0.99)),
      var(--navy-950);
    border: 1px solid rgba(216, 173, 85, 0.48);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(1, 11, 36, 0.56);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    padding: 16px;
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
    padding-top: 142px;
  }

  .hero::before {
    background-position: center bottom;
    background-size: cover;
    opacity: 0.5;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(1, 11, 36, 0.98) 0%, rgba(2, 24, 77, 0.94) 48%, rgba(1, 11, 36, 0.3) 76%, rgba(1, 11, 36, 0.82) 100%),
      linear-gradient(90deg, rgba(1, 11, 36, 0.8), rgba(2, 24, 77, 0.2));
  }

  .hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
  }

  .ornament {
    margin-right: auto;
    margin-left: auto;
    background: linear-gradient(90deg, rgba(216, 173, 85, 0), var(--gold-500), rgba(216, 173, 85, 0));
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-link {
    justify-content: center;
  }

  .trust-strip,
  .reason-grid,
  .mode-grid,
  .steps,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .section-heading,
  .section-heading.centered,
  .text-flow {
    max-width: none;
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: min(235px, 68vw);
  }

  .hero {
    min-height: 810px;
    padding: 124px 20px 52px;
  }

  .hero h1 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.3rem, 10vw, 3.05rem);
  }

  .hero .eyebrow {
    max-width: 290px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.35;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .section {
    padding: 62px 20px;
  }

  .section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .trust-item {
    justify-content: flex-start;
    text-align: left;
  }

  .reason-card,
  .mode-card,
  .step,
  .inline-cta,
  .final-cta {
    padding: 26px 22px;
  }

  .document-list {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding: 19px 52px 19px 18px;
  }

  .faq-list p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
