@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
  --brand-blue: #1f4e79;
  --brand-turquoise: #1fa4c9;
  --white-clinical: #ffffff;
  --text-gray: #4a4a4a;
  --ui-gray: #f5f7f8;
  --border: #dfe6ea;
  --title: #1f4e79;
  --focus-ring: rgba(31, 164, 201, 0.24);

  --cat-dry-eye: #2da9d8;
  --cat-allergy: #5dbb63;
  --cat-infection: #e4584d;
  --cat-glaucoma: #6c63a8;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 8px 20px rgba(17, 52, 82, 0.07);
  --shadow-md: 0 14px 32px rgba(17, 52, 82, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: var(--white-clinical);
  color: var(--text-gray);
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.55rem, 1.2rem + 1.3vw, 2.3rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--title);
  font-weight: 700;
}

.section-intro {
  margin: 0 0 28px;
  color: var(--text-gray);
  max-width: 740px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-turquoise);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
}

.value-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 40%, #eaf5f9 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.value-section .container {
  position: relative;
  z-index: 1;
}

.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-99%);
  z-index: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-divider path {
  fill: #f8fbfc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--brand-turquoise);
  border-color: var(--brand-turquoise);
  color: var(--white-clinical);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1989a8;
  border-color: #1989a8;
}

.btn-secondary {
  background: var(--white-clinical);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #edf4fa;
}

.btn-whatsapp {
  background: #1e9e62;
  color: var(--white-clinical);
  white-space: nowrap;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #15784a;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--brand-blue);
  border-bottom: 1px solid #254f78;
  box-shadow: 0 2px 10px rgba(10, 31, 50, 0.18);
}

.header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--white-clinical);
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-height: 100%;
}

.brand-fallback {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}

.main-nav ul,
.footer-links,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: #dbe9f4;
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-turquoise);
  border-bottom-color: var(--brand-turquoise);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.search-box input {
  width: 182px;
  border-radius: 999px;
  border: 1px solid #a7bfd2;
  background: #f8fcff;
  padding: 10px 14px;
  color: var(--text-gray);
}

.search-box input::placeholder,
.filter-input::placeholder,
.form-control::placeholder {
  color: #7b8791;
}

.search-box input:focus,
.filter-input:focus,
.form-control:focus {
  outline: 2px solid var(--focus-ring);
  border-color: var(--brand-turquoise);
}

.cart-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f9fc;
  border: 1px solid #9dbacf;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  position: relative;
  padding: 0;
  cursor: pointer;
}

.cart-glyph {
  font-size: 18px;
  line-height: 1;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #1fa4c9;
  color: #ffffff;
  font-size: 12px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.cart-bump {
  animation: cartPulse 0.28s ease;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #9dbacf;
  border-radius: var(--radius-sm);
  background: #f3f9fc;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-blue);
}

.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 72% 40%, rgba(31, 164, 201, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4px 0 0;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  border: 1px solid #c7d9e6;
  background: #f2f8fc;
  color: var(--brand-blue);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 1.45rem + 2vw, 3.05rem);
  line-height: 1.15;
  margin: 14px 0 12px;
  color: var(--brand-blue);
  font-weight: 700;
  max-width: 560px;
}

.hero-copy p {
  color: var(--text-gray);
  margin: 0 0 24px;
  max-width: 600px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 6px 11px;
  border: 1px solid transparent;
}

.chip-dry-eye-soft {
  color: #1f7a9a;
  background: rgba(45, 169, 216, 0.13);
  border-color: rgba(45, 169, 216, 0.3);
}

.chip-allergy-soft {
  color: #397f3e;
  background: rgba(93, 187, 99, 0.13);
  border-color: rgba(93, 187, 99, 0.3);
}

.chip-glaucoma-soft {
  color: #4d4780;
  background: rgba(108, 99, 168, 0.13);
  border-color: rgba(108, 99, 168, 0.3);
}

.chip-infection-soft {
  color: #a13f37;
  background: rgba(228, 88, 77, 0.13);
  border-color: rgba(228, 88, 77, 0.3);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 100%);
  height: min(560px, 100%);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(31, 164, 201, 0.28) 0%,
    rgba(31, 164, 201, 0.16) 28%,
    rgba(31, 164, 201, 0.08) 48%,
    rgba(31, 164, 201, 0.03) 62%,
    transparent 75%
  );
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-wrapper::after {
  content: '';
  position: absolute;
  width: min(440px, 90%);
  height: min(440px, 90%);
  top: 45%;
  left: 56%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(31, 78, 121, 0.16) 0%,
    rgba(31, 78, 121, 0.08) 35%,
    rgba(31, 78, 121, 0.03) 55%,
    transparent 72%
  );
  filter: blur(42px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-wrapper {
  isolation: isolate;
}

.hero-visual-card {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 248, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 40px rgba(31, 78, 121, 0.08), 0 8px 18px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.35), transparent 44%);
  pointer-events: none;
}

.hero-mascot-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
}

.grid-4,
.grid-3,
.grid-5,
.products-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-3,
.products-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white-clinical);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  border: 1px solid #e7eef2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-wrapper img {
  width: auto;
  height: auto;
  max-width: 36px;
  max-height: 36px;
  display: block;
}

.value-card h3 {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}

.value-card p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.5;
}

.category-card h3,
.product-card h3,
.blog-card h3,
.mini-feature h3 {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.category-card {
  min-height: 156px;
  background: linear-gradient(175deg, #ffffff 0%, #f9fcfe 100%);
}

.product-card,
.blog-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.blog-card:hover,
.category-card:hover {
  border-color: #c7dbe5;
  box-shadow: var(--shadow-md);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.chip-dry-eye {
  background: var(--cat-dry-eye);
}

.chip-allergy {
  background: var(--cat-allergy);
}

.chip-infection {
  background: var(--cat-infection);
}

.chip-glaucoma {
  background: var(--cat-glaucoma);
}

.categories-section {
  padding-top: 88px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.categories-section .section-title {
  font-size: clamp(1.9rem, 1.4rem + 1.1vw, 32px);
  color: #1f4e79;
}

.categories-section .section-intro {
  font-size: 16px;
  color: #4a4a4a;
  max-width: 760px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-item {
  --category-accent: #1fa4c9;
  --category-tint: rgba(31, 164, 201, 0.12);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e4edf2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0;
  background: var(--category-accent);
  opacity: 0.85;
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--category-accent);
}

.category-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--category-tint);
  color: var(--category-accent);
}

.category-icon-wrap img {
  width: 30px;
  height: 30px;
  display: block;
}

.category-item h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1f4e79;
}

.category-item p {
  margin: 0 0 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  flex-grow: 1;
}

.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--category-accent);
  text-decoration: underline;
  text-decoration-color: var(--category-accent);
  text-underline-offset: 3px;
  width: fit-content;
}

.category-cta span {
  transition: transform 0.2s ease;
}

.category-item:hover .category-cta span {
  transform: translateX(2px);
}

.category-dry-eye {
  --category-accent: #2da9d8;
  --category-tint: rgba(45, 169, 216, 0.12);
}

.category-allergy {
  --category-accent: #5dbb63;
  --category-tint: rgba(93, 187, 99, 0.12);
}

.category-glaucoma {
  --category-accent: #6c63a8;
  --category-tint: rgba(108, 99, 168, 0.12);
}

.category-infection {
  --category-accent: #e4584d;
  --category-tint: rgba(228, 88, 77, 0.12);
}

.category-hygiene {
  --category-accent: #1fa4c9;
  --category-tint: rgba(31, 164, 201, 0.12);
}

.category-post-op {
  --category-accent: #5b86b2;
  --category-tint: rgba(91, 134, 178, 0.12);
}

.featured-products-section {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #ffffff;
}

.featured-products-section .section-title {
  font-size: clamp(1.9rem, 1.4rem + 1.1vw, 32px);
  color: #1f4e79;
}

.featured-products-section .section-intro {
  font-size: 16px;
  color: #4a4a4a;
  max-width: 760px;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e6edf2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border-color: #ccdbe4;
}

.featured-product-image {
  background: #f8fbfc;
  border-radius: 16px;
  padding: 20px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid #e7f0f4;
}

.featured-product-placeholder {
  width: 100%;
  max-width: 180px;
  height: 100%;
  max-height: 110px;
  border-radius: 14px;
  border: 1px dashed #bcd2de;
  background: linear-gradient(140deg, #e6f2f8 0%, #f4f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #557383;
}

.featured-category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  background: var(--category-tint);
  color: var(--category-accent);
}

.featured-product-card h3 {
  margin: 0 0 10px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.featured-product-card p {
  margin: 0 0 16px;
  color: #4a4a4a;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-product-cta {
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1f4e79;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-product-cta span {
  transition: transform 0.2s ease;
}

.featured-product-card:hover .featured-product-cta span {
  transform: translateX(2px);
}

.featured-products-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.btn-catalog {
  background: #1f4e79;
  color: #ffffff;
  border: 1px solid #1f4e79;
}

.btn-catalog:hover,
.btn-catalog:focus-visible {
  background: #1fa4c9;
  border-color: #1fa4c9;
}

.edu-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.edu-section .section-title {
  font-size: clamp(1.9rem, 1.4rem + 1.1vw, 32px);
  color: #1f4e79;
}

.edu-section .section-intro {
  font-size: 16px;
  color: #4a4a4a;
  max-width: 760px;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.edu-item {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 28px;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 78, 121, 0.06);
}

.edu-item-reverse .edu-image {
  order: 2;
}

.edu-item-reverse .edu-content {
  order: 1;
}

.edu-image {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3edf2;
}

.edu-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.edu-content {
  display: flex;
  flex-direction: column;
}

.edu-label {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1fa4c9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.edu-content h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 1.05rem + 0.7vw, 24px);
  font-weight: 600;
  color: #1f4e79;
}

.edu-content p {
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 560px;
}

.edu-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1f4e79;
}

.edu-link:hover,
.edu-link:focus-visible {
  color: #1fa4c9;
}

.edu-link span {
  transition: transform 0.2s ease;
}

.edu-link:hover span,
.edu-link:focus-visible span {
  transform: translateX(2px);
}

.edu-footer {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.btn-edu-more {
  background: transparent;
  color: #1f4e79;
  border: 1px solid rgba(31, 78, 121, 0.22);
}

.btn-edu-more:hover,
.btn-edu-more:focus-visible {
  border-color: #1fa4c9;
  color: #1fa4c9;
  background: rgba(31, 164, 201, 0.06);
}

.domicilios-home-section {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #ffffff;
}

.domicilios-banner {
  background: linear-gradient(135deg, #1f4e79 0%, #2b6a9b 100%);
  border-radius: 28px;
  padding: 40px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(31, 78, 121, 0.18);
}

.domicilios-title {
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 1.5rem + 0.9vw, 32px);
  font-weight: 700;
  color: #ffffff;
}

.domicilios-main {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.domicilios-support {
  margin: 0 0 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.domicilios-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.domicilios-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.domicilios-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
}

.domicilios-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1f4e79;
  border-radius: 999px;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.main-cta:hover,
.main-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  background: #f2f9fc;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  border-color: #1fa4c9;
  color: #e9fbff;
  background: rgba(31, 164, 201, 0.18);
}

.product-thumb,
.blog-thumb {
  height: 180px;
  border-radius: 12px;
  border: 1px solid #d3e3ea;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e2f0f6, #cde3ee);
}

.product-meta,
.post-meta {
  color: var(--text-gray);
  font-size: 0.94rem;
}

.price {
  color: var(--brand-blue);
  font-weight: 600;
  margin: 8px 0 14px;
}

.catalog-layout .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.catalog-product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #e6edf2;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
  background: #f8fbfc;
  border-radius: 16px;
  padding: 20px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.2s ease;
}

.product-image.added {
  animation: cartPulse 0.4s ease;
}

.catalog-image-placeholder {
  width: min(180px, 100%);
  height: 100%;
  max-height: 160px;
  border-radius: 14px;
  border: 1px dashed #bed1dd;
  background: linear-gradient(140deg, #e8f4fa 0%, #f5fbfd 100%);
  display: grid;
  place-items: center;
  color: #587a8f;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.category-label {
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 10px;
  background: var(--category-tint);
  color: var(--category-accent);
}

.catalog-product-card h3 {
  margin: 0 0 8px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.catalog-description {
  margin: 0;
  color: #4a4a4a;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 74px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-selector button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #1f4e79;
}

.qty-selector button:hover,
.qty-selector button:focus-visible {
  border-color: #1fa4c9;
  background: #f0f9fd;
}

.qty-value {
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.add-cart-btn {
  margin-top: 12px;
  width: 100%;
  background: #1f4e79;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.add-cart-btn:hover,
.add-cart-btn:focus-visible {
  background: #163a5c;
}

.add-cart-btn.added {
  background: #2e7d32;
  animation: cartPulse 0.4s ease;
}

.catalog-empty-state {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 1px dashed #c6d9e5;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.catalog-empty-state h3 {
  margin: 0 0 8px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
}

.catalog-empty-state p {
  margin: 0 0 14px;
  color: #4a4a4a;
}

.mini-cart {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(400px, 92vw);
  max-height: 80vh;
  overflow: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2ebf0;
  padding: 14px;
  display: none;
  z-index: 50;
}

.mini-cart.open {
  display: block;
}

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2f5;
}

.mini-cart-header h4 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #1f4e79;
}

.mini-cart-close {
  border: 1px solid #d9e6ee;
  background: #ffffff;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.mini-cart-content {
  padding: 12px 2px;
}

.mini-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef3f6;
}

.mini-cart-item:last-child {
  border-bottom: 0;
}

.mini-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #d7e5ed;
  background: linear-gradient(140deg, #e9f4f9, #f8fbfd);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #5f7d90;
  font-weight: 600;
}

.mini-item-name {
  margin: 0 0 3px;
  font-size: 14px;
  color: #1f4e79;
  font-weight: 600;
}

.mini-item-meta,
.mini-item-price {
  margin: 0;
  font-size: 12px;
  color: #4a4a4a;
}

.mini-item-remove {
  background: transparent;
  border: 0;
  color: #1f4e79;
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

.mini-cart-summary {
  border-top: 1px solid #edf2f5;
  padding-top: 10px;
}

.mini-cart-summary p {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #4a4a4a;
}

.mini-cart-actions {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.mini-cart-actions .btn {
  width: 100%;
}

.mini-cart-empty {
  display: grid;
  gap: 8px;
}

.mini-cart-empty p {
  margin: 0;
  color: #1f4e79;
  font-weight: 600;
}

.mini-cart-empty small {
  color: #4a4a4a;
}

.mini-cart-empty-btn {
  width: fit-content;
}

.commerce-page {
  background: #f8fbfc;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.cart-items-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e3edf2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 18px;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
}

.cart-item-thumb {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1px solid #d4e2ea;
  background: linear-gradient(140deg, #e9f4f9, #f8fbfd);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #55798d;
  font-weight: 600;
}

.cart-item-info h3 {
  margin: 8px 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #1f4e79;
}

.cart-item-info p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #4a4a4a;
}

.cart-item-unit {
  margin-bottom: 10px;
  color: #5a7383;
}

.cart-item-side {
  min-width: 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-subtotal {
  margin: 0;
  color: #1f4e79;
  font-weight: 700;
}

.order-summary {
  align-self: start;
  position: sticky;
  top: 92px;
}

.order-summary-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e3edf2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.order-summary-card h2 {
  margin: 0 0 14px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #4a4a4a;
  font-size: 14px;
}

.summary-row.total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e8f1f5;
  font-weight: 700;
  color: #1f4e79;
}

.summary-note {
  margin: 14px 0;
  color: #5a7383;
  font-size: 13px;
}

.summary-cta {
  width: 100%;
  margin-top: 8px;
}

.cart-empty-state {
  background: #ffffff;
  border: 1px solid #e3edf2;
  border-radius: 18px;
  padding: 24px;
}

.cart-empty-state h2 {
  margin: 0 0 8px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
}

.cart-empty-state p {
  margin: 0 0 14px;
  color: #4a4a4a;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form fieldset {
  border: 1px solid #e2edf2;
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

.checkout-form legend {
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0 6px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  color: #4a4a4a;
  font-size: 14px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  border: 1px solid #d8e6ee;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.check-row {
  display: flex !important;
  align-items: start;
  gap: 8px;
}

.form-error {
  margin: 0;
  color: #b42318;
  font-size: 14px;
}

.checkout-summary-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.checkout-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #4a4a4a;
}

.confirmation-box {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e3edf2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.confirmation-box p {
  color: #4a4a4a;
  line-height: 1.7;
}

.confirmation-meta {
  color: #1f4e79;
  font-weight: 600;
}

.confirmation-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.institutional {
  background: var(--ui-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.delivery-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background: linear-gradient(145deg, #1f4e79, #173d62);
  color: #edf4fa;
  border-radius: var(--radius-lg);
  padding: 30px;
}

.delivery-band h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.delivery-band p {
  color: #d3e3ef;
  margin: 8px 0 0;
}

.page-hero {
  padding: 72px 0 44px;
}

.page-hero-box {
  background: linear-gradient(165deg, #ffffff 0%, #f3f9fc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.about-hero {
  padding-top: 64px;
  padding-bottom: 52px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
}

.about-hero-copy .section-intro {
  margin-bottom: 0;
}

.about-hero-visual {
  display: flex;
  justify-content: center;
}

.about-hero-visual-box {
  width: min(420px, 100%);
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
  border: 1px solid #dfeaf0;
  box-shadow: 0 14px 32px rgba(17, 52, 82, 0.08);
}

.about-hero-visual-box img {
  width: 100%;
  max-width: 330px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.about-section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.about-text-block {
  max-width: 860px;
}

.about-text-block p {
  margin: 0;
  line-height: 1.75;
  color: #4a4a4a;
}

.about-text-block p + p {
  margin-top: 16px;
}

.about-proposal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-proposal-item {
  border-radius: 18px;
  border: 1px solid #dbe9f1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  padding: 24px;
}

.about-proposal-item h3,
.about-diff-item h3 {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.about-proposal-item p,
.about-diff-item p,
.about-commitment-block p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.7;
}

.about-diff-section {
  background: #f8fbfc;
}

.about-diff-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-diff-item {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 78, 121, 0.1);
  border-radius: 16px;
  padding: 20px 22px;
}

.about-commitment-block {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid #dbe9f1;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fb 100%);
  box-shadow: 0 10px 24px rgba(17, 52, 82, 0.06);
  padding: 34px;
}

.about-commitment-block .section-title {
  margin-bottom: 14px;
}

.about-commitment-block p + p {
  margin-top: 14px;
}

.about-final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.about-final-cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  border-radius: 24px;
  border: 1px solid #d7e6ef;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 52, 82, 0.07);
  padding: 38px 34px;
}

.about-final-cta-box .section-intro {
  margin: 0 auto 24px;
}

.about-final-cta-box .cta-row {
  justify-content: center;
  margin-bottom: 0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
}

.filter-box {
  position: sticky;
  top: 98px;
  align-self: start;
  background: var(--ui-gray);
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group h4 {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-gray);
}

.filter-option.active {
  color: #1f4e79;
  font-weight: 600;
}

.filter-clear-btn {
  width: 100%;
  margin-top: 6px;
}

.filter-input,
.form-control,
textarea.form-control {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white-clinical);
  color: var(--text-gray);
  padding: 11px 12px;
  font: inherit;
}

textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.list-thumb {
  height: 88px;
  border-radius: 12px;
  border: 1px solid #d3e3ea;
  background: linear-gradient(135deg, #e2f0f6, #cde3ee);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.contact-list {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.contact-location-section {
  background: #f8fbfc;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.contact-location-info {
  background: #ffffff;
  border: 1px solid #dbe8f1;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(17, 52, 82, 0.06);
  padding: 22px;
}

.contact-location-info h3 {
  margin: 0;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-map-block {
  display: grid;
  gap: 12px;
}

.contact-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #d4e4ed;
  background: #ffffff;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-map-note {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.65;
}

.map-placeholder {
  margin-top: 14px;
  min-height: 220px;
  border-radius: var(--radius-md);
  border: 1px dashed #b3c8d5;
  background: linear-gradient(160deg, #f5f9fb, #edf4f7);
  color: #5f7485;
  display: grid;
  place-items: center;
}

.legal-main {
  padding: 72px 0 88px;
  background: #ffffff;
}

.legal-container {
  width: min(860px, 92%);
  margin: 0 auto;
}

.legal-last-updated {
  margin: 8px 0 28px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.legal-title {
  margin: 0 0 14px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 1.4rem + 1vw, 2.4rem);
  line-height: 1.2;
}

.legal-intro {
  margin: 0 0 28px;
  color: #4a4a4a;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content section {
  margin-bottom: 28px;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-content h3 {
  margin: 0 0 8px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: #4a4a4a;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-note {
  margin-top: 32px;
  border-top: 1px solid #e3edf2;
  padding-top: 18px;
  color: #5f7485;
  font-size: 14px;
}

.blog-main {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 28%, #ffffff 100%);
}

.blog-page-hero {
  padding-top: 68px;
  padding-bottom: 40px;
}

.blog-page-hero-inner {
  text-align: center;
}

.blog-page-hero-inner .eyebrow {
  margin: 0 auto 12px;
}

.blog-page-hero-inner .section-intro {
  margin: 0 auto;
  max-width: 620px;
}

.blog-featured-section {
  padding-top: 24px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ddeaf2;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(17, 52, 82, 0.08);
  padding: 24px;
}

.blog-featured-media {
  border-radius: 18px;
  overflow: hidden;
  background: #f1f8fb;
  border: 1px solid #dceaf2;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.blog-featured-content h2 {
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
  color: #1f4e79;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.28rem + 0.9vw, 2rem);
  line-height: 1.2;
}

.blog-featured-content p {
  margin: 0 0 18px;
  color: #4a4a4a;
  line-height: 1.7;
}

.blog-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(31, 164, 201, 0.14);
  color: #1f4e79;
}

.blog-list-section {
  padding-top: 48px;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.blog-filter-btn {
  border: 1px solid #cfe0ea;
  background: #ffffff;
  color: #1f4e79;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.blog-filter-btn.is-active,
.blog-filter-btn:hover,
.blog-filter-btn:focus-visible {
  background: #1f4e79;
  border-color: #1f4e79;
  color: #ffffff;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-post-card {
  background: #ffffff;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(17, 52, 82, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-post-image {
  background: #f2f8fb;
  border-bottom: 1px solid #deebf2;
  min-height: 170px;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-content .blog-pill {
  margin-bottom: 10px;
}

.blog-post-content h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  color: #1f4e79;
  font-size: 1.12rem;
  line-height: 1.35;
}

.blog-post-content p {
  margin: 0 0 12px;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #1f4e79;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-read-link span {
  transition: transform 0.2s ease;
}

.blog-read-link:hover span,
.blog-read-link:focus-visible span {
  transform: translateX(2px);
}

.blog-article-main {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 24%, #ffffff 100%);
}

.article-shell {
  width: min(920px, 92%);
  margin: 0 auto;
  padding-top: 58px;
  padding-bottom: 72px;
}

.breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: #5f7485;
}

.breadcrumb a {
  color: #1f4e79;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-header h1 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  color: #1f4e79;
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem);
  line-height: 1.2;
}

.article-header p {
  margin: 0 0 18px;
  color: #4a4a4a;
  line-height: 1.7;
}

.article-hero-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dce9f1;
  background: #f2f8fb;
  margin-bottom: 28px;
}

.article-hero-image img {
  width: 100%;
  display: block;
  min-height: 220px;
  max-height: 420px;
  object-fit: cover;
}

.article-content {
  max-width: 780px;
}

.article-content section {
  margin-bottom: 26px;
}

.article-content h2 {
  margin: 0 0 10px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.32rem;
}

.article-content p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.76;
}

.article-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.article-content li {
  color: #4a4a4a;
  margin-bottom: 8px;
  line-height: 1.7;
}

.related-products {
  margin-top: 46px;
}

.related-products h2 {
  margin: 0 0 16px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-final-cta {
  margin-top: 52px;
}

.article-final-cta .about-final-cta-box {
  max-width: none;
}

.delivery-page-main {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 28%, #ffffff 100%);
}

.delivery-page-hero {
  padding-top: 62px;
  padding-bottom: 46px;
}

.delivery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: center;
}

.delivery-hero-visual {
  display: flex;
  justify-content: center;
}

.delivery-hero-icon-wrap {
  width: min(300px, 100%);
  border-radius: 24px;
  border: 1px solid #dce9f1;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fc 100%);
  padding: 30px;
  box-shadow: 0 12px 28px rgba(17, 52, 82, 0.08);
  display: grid;
  place-items: center;
}

.delivery-hero-icon-wrap img {
  width: 80px;
  height: 80px;
  display: block;
}

.delivery-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.delivery-step {
  background: #ffffff;
  border: 1px solid #dce8f1;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(17, 52, 82, 0.06);
}

.delivery-step-index {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1f4e79;
  background: rgba(31, 164, 201, 0.14);
}

.delivery-step h3 {
  margin: 0 0 10px;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.delivery-step p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.66;
}

.delivery-light-band {
  background: linear-gradient(180deg, #f8fbfc 0%, #f0f8fb 100%);
}

.delivery-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.delivery-info-block {
  background: #ffffff;
  border: 1px solid #ddeaf2;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(17, 52, 82, 0.06);
  padding: 24px;
}

.delivery-info-block .section-title {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 1.2rem + 0.45vw, 1.8rem);
}

.delivery-info-block p {
  margin: 0 0 10px;
  color: #4a4a4a;
  line-height: 1.72;
}

.delivery-info-block ul {
  margin: 4px 0 10px;
  padding-left: 20px;
}

.delivery-info-block li {
  margin-bottom: 6px;
  color: #4a4a4a;
}

.delivery-cost-box {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #dbe8f1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 52, 82, 0.06);
  padding: 30px;
}

.delivery-cost-box p {
  margin: 0 0 12px;
  color: #4a4a4a;
  line-height: 1.72;
}

.delivery-faq-section {
  background: #f8fbfc;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #dce8f1;
  border-radius: 14px;
  padding: 0 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 28px 16px 0;
  color: #1f4e79;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #1fa4c9;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 14px;
  color: #4a4a4a;
  line-height: 1.7;
  padding-right: 12px;
}

#site-footer {
  margin-top: 82px;
  border-top: 1px solid #254f78;
  background: var(--brand-blue);
}

.footer-grid {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  color: var(--white-clinical);
  font-family: 'Poppins', sans-serif;
}

.footer-grid p,
.footer-grid li,
.footer-grid a,
.footer-grid small {
  color: #d6e5f0;
}

.footer-grid a:hover {
  color: var(--brand-turquoise);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.socials {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 0;
}

button,
input,
textarea,
a {
  transition: 0.2s ease;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual-card {
    max-width: 480px;
    padding: 24px;
  }

  .hero-visual-wrapper::before {
    width: min(460px, 94%);
    height: min(460px, 94%);
    filter: blur(38px);
  }

  .hero-visual-wrapper::after {
    width: min(360px, 82%);
    height: min(360px, 82%);
    filter: blur(34px);
  }

  .hero-grid,
  .about-hero-grid,
  .blog-featured-card,
  .delivery-hero-grid,
  .contact-location-grid,
  .contact-layout,
  .catalog-layout,
  .footer-grid,
  .two-col,
  .delivery-band {
    grid-template-columns: 1fr;
  }

  .filter-box {
    position: relative;
    top: 0;
  }

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

  .about-proposal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .value-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .categories-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .catalog-layout .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-posts-grid,
  .delivery-steps-grid,
  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-products-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .edu-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .edu-item {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    padding: 20px;
  }

  .edu-image {
    max-width: 360px;
  }

  .domicilios-home-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .domicilios-banner {
    padding: 34px;
    gap: 24px;
  }

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

  .delivery-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0 16px;
  }

  .brand-logo {
    height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--brand-blue);
    border-bottom: 1px solid #254f78;
    padding: 14px 16px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav.open {
    display: block;
  }

  .header-tools {
    display: flex;
  }

  .header-tools .btn-whatsapp {
    display: none;
  }

  .wave-divider svg {
    height: 50px;
  }

  .value-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .legal-main {
    padding: 56px 0 64px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }

  .domicilios-banner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 24px;
  }

  .domicilios-title {
    font-size: 26px;
  }

  .domicilios-cta-panel {
    align-items: stretch;
  }

  .main-cta {
    width: 100%;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .mini-cart {
    right: -4px;
    width: min(94vw, 400px);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .hero-visual {
    margin-top: 32px;
  }

  .hero-visual-wrapper::before {
    width: min(380px, 92%);
    height: min(380px, 92%);
    filter: blur(34px);
    opacity: 0.85;
    background: radial-gradient(
      circle,
      rgba(31, 164, 201, 0.2) 0%,
      rgba(31, 164, 201, 0.08) 42%,
      rgba(31, 164, 201, 0.03) 60%,
      transparent 74%
    );
  }

  .hero-visual-wrapper::after {
    width: min(280px, 74%);
    height: min(280px, 74%);
    filter: blur(28px);
    opacity: 0.7;
  }

  .hero-visual-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 22px;
  }

  .hero-mascot-img {
    max-width: 100%;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    text-align: center;
    align-items: center;
    padding: 22px;
  }

  .icon-wrapper {
    margin-bottom: 14px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .categories-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .categories-section .section-title,
  .categories-section .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .category-item {
    padding: 22px;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-layout .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-product-card {
    padding: 18px;
  }

  .catalog-description {
    min-height: 0;
  }

  .featured-products-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .featured-products-section .section-title,
  .featured-products-section .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .featured-product-card {
    padding: 18px;
  }

  .featured-product-image {
    padding: 16px;
  }

  .edu-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .edu-section .section-title,
  .edu-section .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .edu-list {
    gap: 24px;
  }

  .edu-item,
  .edu-item-reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .edu-item-reverse .edu-image,
  .edu-item-reverse .edu-content {
    order: initial;
  }

  .edu-image {
    max-width: 100%;
    border-radius: 16px;
  }

  .edu-content h3 {
    font-size: 22px;
  }

  .domicilios-home-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-item-side {
    align-items: flex-start;
    min-width: 0;
  }

  .confirmation-box {
    padding: 22px;
  }

  .confirmation-actions .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .search-box {
    display: none;
  }

  .grid-3,
  .products-grid,
  .blog-grid,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .blog-page-hero {
    padding-top: 42px;
    padding-bottom: 26px;
  }

  .delivery-page-hero {
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .contact-location-info {
    padding: 18px;
  }

  .blog-featured-section {
    padding-top: 8px;
  }

  .blog-featured-card {
    padding: 18px;
    border-radius: 20px;
    gap: 16px;
  }

  .blog-list-section {
    padding-top: 34px;
  }

  .blog-posts-grid,
  .delivery-steps-grid,
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .delivery-hero-icon-wrap {
    max-width: 220px;
    padding: 22px;
    border-radius: 18px;
  }

  .delivery-hero-icon-wrap img {
    width: 62px;
    height: 62px;
  }

  .delivery-step,
  .delivery-info-block {
    padding: 18px;
  }

  .contact-map iframe {
    height: 320px;
  }

  .delivery-cost-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .faq-item {
    padding: 0 14px;
  }

  .faq-item summary {
    font-size: 0.98rem;
  }

  .article-shell {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .article-content h2 {
    font-size: 1.2rem;
  }

  .about-hero {
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .about-hero-copy {
    text-align: left;
  }

  .about-hero-visual-box {
    max-width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .about-proposal-grid {
    grid-template-columns: 1fr;
  }

  .about-commitment-block {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .about-final-cta-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .about-final-cta-box .cta-row {
    flex-direction: column;
  }

  .about-final-cta-box .btn {
    width: 100%;
  }

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