:root {
  --ink-900: #001044;
  --ink-700: #15315f;
  --ink-500: #718091;
  --paper: #f5f8ff;
  --panel: rgba(255, 255, 255, 0.92);
  --line: rgba(0, 96, 208, 0.18);
  --accent-copper: #0070e8;
  --accent-emerald: #0060d0;
  --accent-amber: #7d899b;
  --shadow-soft: 0 18px 42px rgba(0, 16, 80, 0.14);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: "Barlow", "Segoe UI", sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 96, 208, 0.2), transparent 34%),
    radial-gradient(circle at 96% 12%, rgba(0, 16, 80, 0.16), transparent 37%),
    linear-gradient(170deg, #f6f9ff 0%, #eef5ff 52%, #f8fbff 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1160px, 92vw);
  margin: 1.2rem auto 2.2rem;
}

.site-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.05rem;
  color: var(--ink-700);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.site-top p {
  margin: 0;
}

.site-nav {
  position: sticky;
  top: 0.9rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: clamp(170px, 24vw, 300px);
  height: 56px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.05rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-emerald);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  padding: 0.52rem 0.75rem;
  font-weight: 700;
  color: var(--ink-900);
}

.hero-block {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.9rem;
}

.hero-content,
.hero-highlight {
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-content {
  padding: clamp(1.3rem, 2.6vw, 2.25rem);
  background:
    linear-gradient(112deg, rgba(0, 96, 208, 0.13), transparent 60%),
    var(--panel);
}

.hero-highlight {
  padding: clamp(1rem, 2.3vw, 1.6rem);
  background:
    radial-gradient(circle at top right, rgba(0, 16, 80, 0.14), transparent 40%),
    var(--panel);
}

.kicker {
  margin: 0;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.hero-content h1 {
  margin: 0.5rem 0 0.8rem;
  line-height: 1.08;
  font-size: clamp(1.85rem, 4.05vw, 3.05rem);
}

.hero-content p,
.hero-highlight li {
  color: var(--ink-700);
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, #0060d0, #001050);
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-outline {
  border-color: rgba(0, 96, 208, 0.32);
  background: transparent;
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(130deg, #0060d0, #001050);
}

.btn-whatsapp:hover {
  filter: brightness(1.04);
}

.hero-highlight h2 {
  margin: 0.15rem 0 0.6rem;
  font-size: 1.2rem;
}

.hero-highlight ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.58rem;
}

.panel {
  margin-top: 0.95rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 2.45vw, 1.95rem);
  box-shadow: var(--shadow-soft);
}

.panel-head h2 {
  margin: 0.42rem 0 0.58rem;
}

.panel-head p {
  color: var(--ink-700);
}

.body-copy p {
  color: var(--ink-700);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.dual {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.85rem;
}

.dual article p {
  color: var(--ink-700);
  margin-top: 0.65rem;
  line-height: 1.6;
}

.metric-stack {
  display: grid;
  gap: 0.65rem;
}

.metric-stack div {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(102deg, rgba(0, 96, 208, 0.12), transparent 62%),
    #fff;
  padding: 0.95rem;
}

.metric-stack h3 {
  margin: 0;
  color: var(--accent-copper);
  font-size: 1.55rem;
}

.metric-stack p {
  margin: 0.3rem 0 0;
  color: var(--ink-700);
}

.reason-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.reason-grid article {
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(125, 137, 155, 0.22), transparent 45%),
    #fff;
}

.reason-grid h3 {
  margin: 0;
  font-size: 1.02rem;
}

.reason-grid p {
  margin-bottom: 0;
  color: var(--ink-700);
}

.compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(105deg, rgba(0, 96, 208, 0.12), transparent 62%),
    var(--panel);
}

.compact h2 {
  margin: 0.45rem 0;
}

.compact p {
  margin: 0;
  color: var(--ink-700);
}

.product-showcase {
  margin-top: 0.95rem;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.product-showcase-large {
  background:
    linear-gradient(120deg, rgba(0, 96, 208, 0.1), rgba(0, 16, 80, 0.08)),
    rgba(255, 255, 255, 0.84);
}

.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.showcase-head h2 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
}

.slider-controls {
  display: flex;
  gap: 0.45rem;
}

.slider-button {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-900);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.slider-button:hover {
  border-color: var(--accent-emerald);
  transform: translateY(-1px);
}

.product-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.slider-track {
  display: flex;
  gap: 0.8rem;
}

.product-slide {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px auto;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f9fb;
  padding: 0.75rem;
}

.product-slide div {
  padding: 0.85rem;
}

.product-slide p {
  margin: 0 0 0.35rem;
  color: var(--accent-emerald);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-slide h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.85rem;
}

.contact-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-700);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(0, 96, 208, 0.24);
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  text-align: center;
  margin-top: 0.95rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.4rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #0060d0, #001050);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 96, 208, 0.28);
}

.floating-whatsapp:hover {
  filter: brightness(1.04);
}

.catalog-hero .hero-content {
  background:
    linear-gradient(120deg, rgba(0, 96, 208, 0.12), transparent 62%),
    var(--panel);
}

.contact-hero .hero-content {
  background:
    linear-gradient(112deg, rgba(125, 137, 155, 0.22), transparent 62%),
    var(--panel);
}

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

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.95rem;
}

.contact-card h2,
.contact-card h3 {
  margin: 0.4rem 0 0.55rem;
  font-size: 1.05rem;
}

.contact-card p {
  margin-top: 0;
  color: var(--ink-700);
}

.contact-form-wide {
  margin-top: 0.75rem;
}

.catalog-tools {
  display: grid;
  gap: 0.48rem;
}

.catalog-tools label {
  font-weight: 700;
}

.catalog-tools input {
  font: inherit;
  border-radius: 12px;
  border: 1px solid rgba(0, 96, 208, 0.25);
  padding: 0.72rem 0.82rem;
  background: #fff;
}

.catalog-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.catalog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.catalog-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f9fb;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.catalog-card-body {
  padding: 0.9rem;
}

.catalog-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.catalog-products {
  margin: 0;
  display: grid;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.catalog-product {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-700);
}

.catalog-product img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f7f9fb;
  border: 1px solid rgba(0, 96, 208, 0.12);
  border-radius: 6px;
  padding: 0.2rem;
}

.catalog-product span {
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.catalog-empty {
  margin-top: 0.8rem;
  color: var(--accent-copper);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-block,
  .dual,
  .contact-panel,
  .catalog-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 740px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0.8rem;
    width: min(250px, 75vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
  }

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

  .brand-logo {
    width: min(52vw, 210px);
    height: 48px;
  }

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

  .site-top {
    justify-content: flex-start;
  }
}
