:root {
  --yellow: #ffe400;
  --yellow-2: #fff06a;
  --indigo: #3d439d;
  --indigo-dark: #252c73;
  --blue: #1368b3;
  --ink: #17192b;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --green: #0abf62;
  --shadow: 0 24px 60px rgba(24, 28, 73, .16);
  --radius: 28px;
  --container: min(1180px, calc(100% - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; }
.section-shell { position: relative; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: #fff;
  color: var(--indigo-dark);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(61,67,157,.08);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: .94;
  min-width: max-content;
}
.brand-top {
  color: var(--indigo);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.brand-main {
  margin-top: 5px;
  color: var(--indigo);
  font-size: 2.05rem;
  font-weight: 1000;
  letter-spacing: -.05em;
}
.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: .96rem;
  font-weight: 800;
  color: #41445d;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--indigo-dark);
  font-weight: 1000;
  box-shadow: 0 10px 26px rgba(255,228,0,.26);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,228,0,.38); }
.menu-toggle { display: none; }

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.36), transparent 26%),
    linear-gradient(120deg, var(--yellow) 0 55%, var(--yellow-2) 55% 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 400px;
  height: 400px;
  border: 70px solid rgba(61,67,157,.08);
  border-radius: 50%;
  left: -190px;
  bottom: -180px;
}
.hero::after {
  right: -90px;
  top: 120px;
  width: 190px;
  height: 420px;
  background: var(--indigo);
  transform: skewX(-16deg);
  opacity: .12;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 64px;
  align-items: center;
  padding: 70px 0;
}
.hero-copy { max-width: 660px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .14em;
  font-size: .77rem;
  color: var(--indigo-dark);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  background: currentColor;
  border-radius: 999px;
}
.eyebrow.dark { color: var(--indigo); }
.eyebrow.light { color: var(--yellow); }
.hero h1 {
  margin: 8px 0 0;
  color: var(--indigo);
  font-size: clamp(5.5rem, 12vw, 10rem);
  line-height: .76;
  letter-spacing: -.085em;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(255,255,255,.74);
}
.hero-kicker {
  margin: 26px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 1000;
  color: var(--indigo-dark);
  line-height: 1.05;
}
.hero-note {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 1.08rem;
  font-weight: 720;
  color: #35395a;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 1000;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 22px; height: 22px; fill: currentColor; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(10,191,98,.25);
}
.btn-secondary {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 16px 34px rgba(61,67,157,.24);
}
.phone-display {
  display: inline-block;
  margin-top: 26px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--indigo);
  font-size: clamp(2rem, 4vw, 3.9rem);
  letter-spacing: .02em;
  line-height: 1;
}
.quote-line { margin: 6px 0 0; font-weight: 900; color: var(--indigo-dark); }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.visual-backplate {
  position: absolute;
  inset: 8% -5% 4% 8%;
  background: var(--indigo);
  border-radius: 48px 18px 48px 18px;
  transform: rotate(5deg);
  box-shadow: 0 34px 80px rgba(61,67,157,.25);
}
.promo-card {
  position: relative;
  width: min(480px, 88%);
  margin: 0;
  border-radius: 30px;
  padding: 10px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 32px 60px rgba(32,35,77,.26);
  transform: rotate(-2deg);
}
.promo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}
.floating-chip {
  position: absolute;
  padding: 11px 15px;
  background: #fff;
  color: var(--indigo-dark);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-weight: 1000;
  font-size: .88rem;
  box-shadow: 0 14px 30px rgba(31,35,82,.16);
}
.chip-one { right: -10px; top: 17%; }
.chip-two { left: -8px; bottom: 15%; }

.quick-contact { background: var(--indigo); color: #fff; }
.quick-contact-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.quick-contact span { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1.55rem, 3vw, 2.4rem); letter-spacing: .02em; color: var(--yellow); }
.quick-contact a:nth-child(2) { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: .04em; justify-self: center; }
.quick-wa { padding: 10px 16px; border-radius: 999px; background: var(--green); color: #fff; font-weight: 1000; }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading h2,
.protection h2,
.economicas h2,
.contact h2 {
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 1000;
}

.services { background: linear-gradient(180deg, #fff, #f7f8fe); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(61,67,157,.1);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(32,37,85,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -44px;
  bottom: -44px;
  background: var(--yellow);
  opacity: .14;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(255,228,0,.8); }
.service-card:hover::after { transform: scale(1.35); }
.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--indigo);
  box-shadow: inset 0 -8px 18px rgba(61,67,157,.08);
}
.icon-wrap svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 28px 0 0; max-width: 260px; font-size: 1.28rem; line-height: 1.08; color: var(--indigo-dark); }

.protection {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  color: #fff;
}
.protection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 62%, rgba(255,228,0,.11) 62% 100%);
}
.protection-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 72px; }
.protection h2 { max-width: 700px; }
.protection-copy > p:not(.protection-callout) { max-width: 710px; margin: 20px 0 0; font-size: 1.17rem; color: rgba(255,255,255,.84); }
.protection-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.protection-tags span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); border-radius: 999px; font-weight: 800; }
.protection-callout { display: inline-block; margin: 30px 0 0; padding: 14px 18px; color: var(--indigo-dark); background: var(--yellow); border-radius: 16px; font-weight: 1000; }
.protection-art { min-height: 420px; display: grid; place-items: center; }
.box-stack { position: relative; width: 340px; height: 290px; }
.box { position: absolute; background: #c98a4a; border: 4px solid #8c572d; box-shadow: 0 20px 40px rgba(10,11,42,.22); }
.box::before, .box::after { content: ""; position: absolute; background: rgba(255,255,255,.28); }
.box::before { left: 50%; top: 0; width: 28px; height: 100%; transform: translateX(-50%); }
.box::after { left: 0; top: 50%; width: 100%; height: 18px; transform: translateY(-50%); }
.box-a { width: 190px; height: 150px; left: 78px; top: 62px; transform: rotate(-3deg); z-index: 3; }
.box-a span { position: absolute; z-index: 1; left: 18px; bottom: 16px; color: var(--indigo-dark); font-weight: 1000; letter-spacing: .12em; }
.box-b { width: 150px; height: 120px; left: 0; bottom: 6px; transform: rotate(4deg); z-index: 2; }
.box-c { width: 145px; height: 120px; right: 0; bottom: 0; transform: rotate(-6deg); z-index: 1; }
.wrap-band { position: absolute; z-index: 4; width: 250px; height: 240px; left: 45px; top: 22px; border: 10px solid rgba(255,255,255,.6); border-radius: 36px; transform: rotate(8deg); }

.statement { background: #fff; }
.statement-inner { position: relative; max-width: 980px; text-align: center; }
.statement-mark { position: absolute; left: 0; top: -70px; font-size: 10rem; line-height: 1; color: var(--yellow); font-family: Georgia, serif; opacity: .8; }
.statement p { margin: 0; font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.05; font-weight: 1000; color: var(--indigo-dark); letter-spacing: -.04em; }

.economicas { background: var(--yellow); overflow: hidden; }
.economicas-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.economicas h2 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(4.5rem, 9vw, 8.4rem); color: var(--indigo); text-transform: uppercase; letter-spacing: -.04em; text-shadow: 0 5px 0 #fff; }
.mode-list { margin-top: 28px; display: grid; gap: 12px; }
.mode-list span { width: fit-content; padding: 10px 14px; color: #fff; background: var(--indigo); border-radius: 10px; font-weight: 1000; }
.gallery-card { max-width: 520px; justify-self: end; }
.gallery-frame { position: relative; aspect-ratio: 1 / .84; overflow: hidden; border: 10px solid #fff; border-radius: 28px; background: var(--indigo); box-shadow: 0 28px 60px rgba(47,52,122,.22); }
.gallery-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.03); transition: opacity .45s ease, transform .7s ease; }
.gallery-image.is-active { opacity: 1; transform: scale(1); }
.gallery-controls { display: flex; justify-content: center; gap: 9px; margin-top: 16px; }
.gallery-dot { width: 12px; height: 12px; border: 0; border-radius: 999px; background: rgba(61,67,157,.28); cursor: pointer; }
.gallery-dot.is-active { width: 34px; background: var(--indigo); }

.contact { background: #f5f6fb; }
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 32px;
  background: var(--indigo-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}
.contact-card::after { content: ""; position: absolute; right: -80px; top: -120px; width: 300px; height: 300px; border: 58px solid var(--yellow); border-radius: 50%; opacity: .11; }
.contact h2 { max-width: 800px; }
.contact-brand { margin: 18px 0 4px; color: rgba(255,255,255,.74); font-weight: 800; }
.contact-number { display: inline-block; margin-top: 4px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.5rem, 5vw, 5rem); color: var(--yellow); letter-spacing: .025em; }
.contact-actions { position: relative; z-index: 1; min-width: 220px; display: grid; gap: 12px; }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-call { background: var(--yellow); color: var(--indigo-dark); }

.site-footer { background: #181b47; color: #fff; }
.footer-inner { min-height: 120px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-inner div { display: grid; gap: 6px; }
.footer-inner strong { font-size: 1.05rem; }
.footer-inner div a { color: var(--yellow); font-weight: 1000; }
.footer-wa { padding: 10px 14px; border-radius: 999px; background: var(--green); font-weight: 1000; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(10,191,98,.36);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 31px; height: 31px; fill: currentColor; }

.reveal { opacity: 1; transform: none; }
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    place-items: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--yellow);
  }
  .menu-toggle span { width: 22px; height: 3px; border-radius: 99px; background: var(--indigo-dark); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .nav.is-open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .nav a { padding: 13px 12px; border-radius: 12px; }
  .nav a:hover { background: #f5f6fb; }
  .nav a::after { display: none; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; padding: 62px 0 72px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 500px; }
  .promo-card { width: min(520px, 80vw); }
  .chip-one { right: 4%; }
  .chip-two { left: 4%; }

  .quick-contact-inner { grid-template-columns: 1fr auto; padding: 18px 0; gap: 12px 24px; }
  .quick-contact span { grid-column: 1; }
  .quick-contact a:nth-child(2) { grid-column: 1; justify-self: start; }
  .quick-wa { grid-column: 2; grid-row: 1 / span 2; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .protection-grid, .economicas-grid { grid-template-columns: 1fr; }
  .protection-art { min-height: 360px; }
  .gallery-card { justify-self: stretch; max-width: 650px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: repeat(2, minmax(0,1fr)); min-width: 0; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 26px, 1180px); --radius: 22px; }
  .section { padding: 72px 0; }
  .header-inner { min-height: 70px; }
  .brand-top { font-size: .66rem; }
  .brand-main { font-size: 1.75rem; }
  .nav { top: 70px; }

  .hero-grid { padding-top: 48px; }
  .hero h1 { font-size: clamp(4.2rem, 25vw, 6.4rem); }
  .hero-kicker { font-size: 1.55rem; }
  .hero-note { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .phone-display { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .hero-visual { min-height: 380px; }
  .promo-card { width: 92%; border-radius: 22px; padding: 8px; }
  .promo-card img { border-radius: 16px; }
  .visual-backplate { inset: 8% 0 3% 8%; border-radius: 34px 14px 34px 14px; }
  .floating-chip { font-size: .72rem; padding: 8px 10px; }
  .chip-one { top: 14%; right: -2%; }
  .chip-two { bottom: 8%; left: -2%; }

  .quick-contact-inner { display: flex; flex-direction: column; align-items: flex-start; }
  .quick-contact a:nth-child(2) { font-size: 2.2rem; }
  .quick-wa { width: 100%; text-align: center; }

  .section-heading h2, .protection h2, .contact h2 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 180px; }
  .protection-grid { gap: 30px; }
  .protection-art { min-height: 300px; transform: scale(.86); }
  .protection-callout { width: 100%; }
  .statement-mark { left: -12px; top: -62px; }
  .statement p { font-size: 2.2rem; }
  .economicas h2 { font-size: clamp(4rem, 22vw, 6rem); }
  .gallery-frame { aspect-ratio: .92; }
  .contact-card { padding: 34px 22px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-number { font-size: clamp(2.45rem, 15vw, 3.7rem); }
  .footer-inner { min-height: 150px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .footer-wa { width: 100%; text-align: center; }
  .floating-whatsapp { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}
