:root {
  --navy-950: #07162f;
  --navy-900: #0b1f42;
  --navy-800: #123365;
  --navy-700: #1d4f8f;
  --blue-100: #eaf1fb;
  --pink: #ef9791;
  --pink-soft: #ffe8e6;
  --cream: #fffaf7;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: rgba(11, 31, 66, 0.13);
  --shadow: 0 24px 70px rgba(7, 22, 47, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 247, 0.8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(7, 22, 47, 0.18);
}
.brand strong,
.brand small { display: block; }
.brand strong {
  color: var(--navy-900);
  font-size: 17px;
}
.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--navy-800);
  font-weight: 760;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy-950);
  background: var(--blue-100);
  transform: translateY(-2px);
}
.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  box-shadow: 0 14px 30px rgba(29, 79, 143, 0.25);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 118px clamp(18px, 4vw, 54px) 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(239, 151, 145, 0.26), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(29, 79, 143, 0.18), transparent 28%),
    linear-gradient(135deg, #fffaf7 0%, #eef4ff 100%);
}
.hero-copy { max-width: 660px; }
.hero-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy-950);
}
.slides {
  position: relative;
  height: min(70vh, 660px);
  min-height: 520px;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 900ms ease;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.slider-controls {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.slider-controls button {
  width: 34px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}
.slider-controls button.is-active { background: var(--pink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(239, 151, 145, 0.15);
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { color: var(--navy-950); }
.hero-text,
.section-copy,
.section-subtitle,
.split-copy p,
.contact-copy p,
.origin-panel p,
.feature-card p,
.quality-card p,
.page-copy p,
.security-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.section-subtitle {
  max-width: 820px;
  font-size: 22px;
  font-weight: 650;
}
.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin: 32px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  box-shadow: 0 18px 36px rgba(29, 79, 143, 0.28);
}
.button.ghost {
  color: var(--navy-900);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}
.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}
.hero-stats dt {
  color: var(--navy-950);
  font-weight: 900;
}
.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 54px); }
.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}
.experience-badge,
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(239, 151, 145, 0.38);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255, 232, 230, 0.7);
  font-weight: 900;
}
.experience-badge::before,
.page-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(239, 151, 145, 0.14);
}
.intro-grid,
.quality-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card,
.quality-card,
.quote-form,
.security-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(7, 22, 47, 0.08);
}
.feature-card,
.security-card,
.info-card {
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.feature-card:hover,
.security-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 151, 145, 0.5);
  box-shadow: var(--shadow);
}
.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--navy-900);
  background: var(--pink-soft);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(7, 22, 47, 0.08);
  backdrop-filter: blur(14px);
}
.filter-bar button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--navy-800);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.filter-bar button:hover {
  transform: translateY(-2px);
  color: var(--navy-950);
  background: var(--pink-soft);
}
.filter-bar button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  box-shadow: 0 12px 28px rgba(29, 79, 143, 0.24);
}
.product-card {
  position: relative;
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.product-card.is-hidden {
  display: none;
}
.product-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7, 22, 47, 0.82), rgba(7, 22, 47, 0.05) 58%);
}
.product-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  transform: translateY(8px);
  transition: transform 220ms ease;
}
.product-card p {
  margin-bottom: 8px;
  color: var(--pink-soft);
  font-weight: 850;
}
.product-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 27px;
}
.product-card a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 850;
}
.product-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}
.product-card:hover div { transform: translateY(0); }

.split,
.contact,
.page-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.split-image,
.page-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-image img,
.page-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.check-list li {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--navy-950);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 760;
}
.quality { background: linear-gradient(180deg, #eef4ff 0%, #fffaf7 100%); }
.quality-card { overflow: hidden; }
.quality-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 600ms ease;
}
.quality-card h3,
.quality-card p { padding-inline: 24px; }
.quality-card h3 {
  margin-top: 24px;
  font-size: 24px;
}
.quality-card p { padding-bottom: 26px; }
.quality-card:hover img { transform: scale(1.06); }

.origin {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-950);
}
.origin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.origin-panel {
  position: relative;
  max-width: 620px;
  padding: 34px;
  border-radius: 26px;
  color: #fff;
  background: rgba(7, 22, 47, 0.82);
  backdrop-filter: blur(18px);
}
.origin-panel h2,
.origin-panel p { color: #fff; }

.page-hero {
  padding: 150px clamp(18px, 4vw, 54px) 70px;
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 151, 145, 0.22), transparent 28%),
    linear-gradient(135deg, #fffaf7 0%, #edf4ff 100%);
}
.page-hero-inner {
  max-width: 980px;
}
.catalog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.map-card {
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 850;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  color: #8a1728;
  background: #ffe8ec;
  font-weight: 800;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(29, 79, 143, 0.12);
}
.contact-strip { margin-top: 24px; }
.contact-strip a {
  padding: 13px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 850;
}

.site-footer {
  color: #dce6f8;
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 28px;
  padding: 54px clamp(18px, 4vw, 54px);
}
.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
}
.site-footer p,
.site-footer a {
  display: block;
  color: #aebddb;
  line-height: 1.7;
}
.site-footer a { margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; }

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: #20b857;
  box-shadow: 0 18px 42px rgba(21, 154, 78, 0.35);
  font-weight: 900;
  transition: transform 180ms ease;
}
.float-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.float-whatsapp:hover { transform: translateY(-4px) scale(1.04); }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .hero,
  .split,
  .contact,
  .page-split { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-media { order: 2; }
  .hero-copy { order: 1; }
  .intro-grid,
  .quality-grid,
  .security-grid,
  .product-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .brand small { display: none; }
  .hero-stats,
  .intro-grid,
  .quality-grid,
  .security-grid,
  .product-grid,
  .catalog-list,
  .footer-grid { grid-template-columns: 1fr; }
  .slides,
  .split-image img,
  .page-image img { height: 430px; min-height: 430px; }
  .product-card,
  .product-card img { min-height: 380px; }
  .footer-bottom { flex-direction: column; }
  .filter-bar {
    width: 100%;
    border-radius: 22px;
  }
  .filter-bar button {
    flex: 1 1 auto;
  }
}
