:root {
  --white: #ffffff;
  --mist: #f8fafc;
  --sky: #e0f2fe;
  --blue: #2563eb;
  --deep-blue: #1e40af;
  --ink: #0f172a;
  --slate: #64748b;
  --green: #22c55e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(224, 242, 254, 0.9), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container-premium {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.grid > * {
  min-width: 0;
}

.nav-glass {
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(20px);
}

.brand-logo {
  width: clamp(132px, 15vw, 190px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.1));
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.12));
}

.nav-link {
  color: #334155;
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 220ms ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.btn-primary,
.btn-secondary,
.btn-soft {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.27);
  padding: 0.82rem 1.2rem;
}

.btn-secondary {
  color: var(--deep-blue);
  background: rgba(224, 242, 254, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 0.82rem 1.18rem;
}

.btn-soft {
  color: var(--deep-blue);
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 0.76rem 1rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.23);
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--deep-blue);
  background: rgba(224, 242, 254, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title {
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.page-title {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.section-title {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.lead {
  color: var(--slate);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.78;
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.lift-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.lift-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.12);
}

.hero-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
  min-height: 560px;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.34) 100%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(224, 242, 254, 0.8);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
}

.medical-dot-grid {
  background-image: radial-gradient(rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.stat-card {
  min-height: 150px;
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.11);
}

.image-band {
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.product-image {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.product-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 197, 94, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 6%, rgba(37, 99, 235, 0.18), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #e0f2fe 100%);
}

.catalog-shell {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0), #ffffff 18%),
    radial-gradient(circle at 8% 12%, rgba(224, 242, 254, 0.84), transparent 28rem);
}

.catalog-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 38%, rgba(34, 197, 94, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
}

.catalog-card:hover::before {
  opacity: 1;
}

.catalog-media {
  height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    radial-gradient(circle at center, rgba(224, 242, 254, 0.78), transparent 72%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  padding: 16px;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
  transition: transform 320ms ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.035);
}

.home-product-card .catalog-media {
  height: 250px;
}

.home-product-card .composition-box {
  min-height: 112px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--deep-blue);
  background: rgba(224, 242, 254, 0.86);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.composition-box {
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  padding: 0.9rem;
}

.composition-box p {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.58;
}

.floating-contact {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-contact a:hover {
  transform: translateX(-4px) translateY(-2px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.28);
}

.floating-contact .whatsapp {
  background: #22c55e;
}

.floating-contact .call {
  background: #2563eb;
}

.floating-contact .sms {
  background: #0f172a;
}

.floating-contact .mail {
  background: #1e40af;
}

.top-info-strip {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.86rem;
}

.top-info-strip a {
  color: #ffffff;
  font-weight: 800;
}

.swiper-pagination-bullet {
  background: var(--blue);
}

.form-input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.form-input {
  min-height: 142px;
  resize: vertical;
}

.map-frame {
  min-height: 390px;
  border: 0;
  width: 100%;
  border-radius: 8px;
  filter: saturate(0.95) contrast(1.02);
}

.mobile-menu {
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, max-height 220ms ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  max-height: 520px;
}

.footer-link {
  color: #475569;
  transition: color 180ms ease;
}

.footer-link:hover {
  color: var(--blue);
}

@media (max-width: 1024px) {
  .hero-media,
  .hero-media img {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .container-premium {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .brand-logo {
    width: 136px;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .catalog-media {
    height: 250px;
  }

  .product-hero .page-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.03;
  }

  .product-hero .btn-primary,
  .product-hero .btn-secondary {
    width: 100%;
    max-width: 100%;
  }

  .top-info-strip {
    font-size: 0.78rem;
  }

  .floating-contact {
    right: 10px;
    bottom: 12px;
    top: auto;
    transform: none;
    grid-template-columns: repeat(4, 46px);
    gap: 8px;
  }

  .floating-contact a {
    width: 46px;
    height: 46px;
  }
}
