:root {
  --ink: #102f45;
  --ink-2: #214a63;
  --blue-900: #0d3a57;
  --blue-800: #14537c;
  --blue-700: #1775a8;
  --blue-500: #29b6e6;
  --blue-300: #85d9f4;
  --blue-100: #d6ebf9;
  --mist: #f2f7fb;
  --paper: #ffffff;
  --line: #dce8f0;
  --success: #28a96b;
  --shadow-sm: 0 8px 30px rgba(13, 58, 87, 0.08);
  --shadow-lg: 0 28px 70px rgba(13, 58, 87, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--blue-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.announcement {
  color: var(--paper);
  background: var(--blue-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(20, 83, 124, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 218px;
  height: auto;
}

.site-header {
  transition: background-color 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.header-inner {
  transition: min-height 260ms ease;
}

.brand img {
  transition: width 260ms ease;
}

.phone-link small {
  transition: max-height 260ms ease, opacity 200ms ease;
  max-height: 1.4em;
  overflow: hidden;
}

.site-header.is-shrunk {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(20, 83, 124, 0.16);
  box-shadow: 0 14px 32px -22px rgba(20, 83, 124, 0.55);
}

.site-header.is-shrunk .header-inner {
  min-height: 62px;
}

.site-header.is-shrunk .brand img {
  width: 168px;
}

.site-header.is-shrunk .phone-link small {
  max-height: 0;
  opacity: 0;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  border-radius: 5px;
  background: var(--blue-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 6px;
  line-height: 1.1;
}

.phone-link small {
  color: #698296;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-link strong {
  color: var(--blue-800);
  font-size: 0.9rem;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.cart-glyph {
  position: relative;
  width: 19px;
  height: 17px;
  border: 2px solid var(--blue-800);
  border-radius: 4px 4px 6px 6px;
}

.cart-glyph::before {
  position: absolute;
  top: -7px;
  left: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue-800);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  content: "";
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding-inline: 4px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 20px;
  color: var(--paper);
  background: var(--blue-500);
  font-size: 0.66rem;
  font-weight: 900;
}

.menu-button {
  display: none;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--blue-800);
  content: "";
}

.menu-bars {
  position: relative;
}

.menu-bars::before {
  position: absolute;
  top: -6px;
}

.menu-bars::after {
  position: absolute;
  top: 6px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 5px;
  background: var(--blue-500);
  content: "";
}

.display-title,
.section-title,
.page-title,
.product-title {
  margin: 0;
  color: var(--blue-900);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.display-title {
  max-width: 720px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
}

.display-title .accent,
.section-title .accent,
.page-title .accent {
  color: var(--blue-500);
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
}

.page-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #526f82;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--blue-800);
  box-shadow: 0 12px 28px rgba(20, 83, 124, 0.22);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 34px rgba(20, 83, 124, 0.3);
}

.button-cyan {
  color: var(--blue-900);
  background: var(--blue-300);
}

.button-light {
  border-color: var(--line);
  color: var(--blue-800);
  background: var(--paper);
}

.button-dark {
  color: var(--paper);
  background: var(--blue-900);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 900;
}

.text-link .arrow {
  transition: transform 180ms ease;
}

.text-link:hover .arrow {
  transform: translateX(5px);
}

/* Home */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 116px) 0 88px;
  background:
    radial-gradient(circle at 8% 10%, rgba(41, 182, 230, 0.18), transparent 25%),
    linear-gradient(155deg, var(--paper) 0 61%, var(--mist) 61% 100%);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 64px solid rgba(41, 182, 230, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.hero-copy .lead {
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 48px;
  color: #607a8d;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-notes span::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--success);
  content: "✓";
  font-size: 0.66rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 540px;
  overflow: hidden;
  border-radius: 44% 44% 28px 28px;
  box-shadow: var(--shadow-lg);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 58, 87, 0.46));
  content: "";
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  bottom: 4px;
  left: 0;
  width: min(310px, 76%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-float-card small {
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-float-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--blue-900);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-float-card span {
  color: #5a7689;
  font-size: 0.82rem;
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  top: 38px;
  left: 0;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 9px solid var(--blue-300);
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue-800);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-item {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 24px 30px;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-number {
  color: var(--blue-500);
  font-size: 1.75rem;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  color: var(--blue-900);
  font-size: 0.84rem;
  line-height: 1.25;
}

.trust-item span:not(.trust-number) {
  color: #728898;
  font-size: 0.72rem;
}

.section {
  padding: clamp(84px, 10vw, 140px) 0;
}

.section-soft {
  background: var(--mist);
}

.section-dark {
  color: var(--paper);
  background: var(--blue-900);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-header p {
  max-width: 450px;
  margin: 0;
  color: #657f92;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr 0.84fr;
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-900);
  box-shadow: var(--shadow-sm);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 58, 87, 0.03), rgba(13, 58, 87, 0.88));
  content: "";
}

.category-card-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 30px;
  color: var(--paper);
}

.category-card-content span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-300);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card-content h3 {
  max-width: 220px;
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.circle-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--blue-300);
  font-size: 1.2rem;
}

.category-mini-stack {
  display: grid;
  gap: 18px;
}

.category-mini-stack .category-card {
  min-height: 206px;
}

.category-mini-stack .category-card-content {
  padding: 22px;
}

.category-mini-stack .category-card-content h3 {
  font-size: 1.55rem;
}

.season-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-900);
  box-shadow: var(--shadow-lg);
}

.season-product {
  position: relative;
  display: grid;
  min-height: 570px;
  padding: 56px;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(133, 217, 244, 0.7), transparent 24%),
    linear-gradient(145deg, #e7f6fc, #bce9f8);
}

.season-product::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(23, 117, 168, 0.22);
  border-radius: 50%;
  content: "";
}

.season-product img {
  position: relative;
  z-index: 1;
  width: min(95%, 520px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(13, 58, 87, 0.25));
}

.offer-sticker {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 34px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue-500);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.season-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 84px);
  color: var(--paper);
}

.season-copy .eyebrow {
  color: var(--blue-300);
}

.season-copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.season-copy > p {
  max-width: 520px;
  margin: 25px 0;
  color: #c5dae7;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-line strong {
  color: var(--blue-300);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.price-line del {
  color: #88a5b7;
  font-size: 0.9rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  gap: 18px;
}

.step-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.step-card .step-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--blue-100);
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: #6e8595;
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(70px, 8vw, 110px);
  padding: clamp(42px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--blue-800);
}

.cta-band::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 48px solid rgba(133, 217, 244, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.cta-band p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #d2e7f2;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 112px) 0;
  background: var(--mist);
}

.page-hero::after {
  position: absolute;
  top: -210px;
  right: -70px;
  width: 500px;
  height: 500px;
  border: 72px solid rgba(41, 182, 230, 0.1);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: #718897;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--blue-700);
}

.breadcrumbs span {
  color: #a5b5bf;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.page-hero-aside {
  padding-left: 28px;
  border-left: 3px solid var(--blue-300);
}

.page-hero-aside p {
  margin: 0;
  color: #5e788b;
  font-size: 1.05rem;
}

/* Store */
.shop-controls-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.shop-controls {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-box::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--blue-700);
  border-radius: 50%;
  content: "";
  transform: translateY(-55%);
}

.search-box::after {
  position: absolute;
  top: calc(50% + 6px);
  left: 30px;
  width: 7px;
  height: 2px;
  background: var(--blue-700);
  content: "";
  transform: rotate(45deg);
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #60798b;
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--blue-800);
  color: var(--paper);
  background: var(--blue-800);
}

.shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.shop-meta p {
  margin: 0;
  color: #6f8798;
  font-size: 0.82rem;
}

.shop-meta strong {
  color: var(--blue-900);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 315px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(145deg, #f7fbfd, #e9f4f9);
}

.product-media img {
  width: 78%;
  height: 240px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 400ms ease;
}

.product-media img[src$="-transparente.png"] {
  mix-blend-mode: normal;
}

.product-media img[src$="-hd.png"] {
  mix-blend-mode: normal;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 17px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--blue-500);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-category {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.product-summary {
  margin: 10px 0 0;
  color: #698193;
  font-size: 0.78rem;
  line-height: 1.5;
}

.product-card-promo .product-media {
  min-height: 390px;
}

.product-card-promo .product-media img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: auto 0 20px;
  padding-top: 20px;
  gap: 9px;
}

.product-price strong {
  color: var(--blue-800);
  font-size: 1.25rem;
}

.product-price del {
  color: #8ba0ae;
  font-size: 0.76rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.product-actions .button {
  min-height: 46px;
  padding-inline: 16px;
}

.quick-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-800);
  background: var(--paper);
}

.empty-results {
  display: none;
  padding: 56px;
  border: 1px dashed #b5c9d6;
  border-radius: var(--radius);
  color: #687f90;
  text-align: center;
}

/* Product detail */
.product-page {
  padding: 54px 0 110px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start;
  gap: clamp(48px, 7vw, 90px);
}

.product-gallery {
  position: sticky;
  top: 118px;
}

.product-main-image {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 20%, rgba(41, 182, 230, 0.2), transparent 28%),
    var(--mist);
}

.product-main-image::before,
.product-main-image::after {
  position: absolute;
  border: 1px solid rgba(23, 117, 168, 0.16);
  border-radius: 50%;
  content: "";
}

.product-main-image::before {
  width: 440px;
  height: 440px;
}

.product-main-image::after {
  width: 330px;
  height: 330px;
}

.product-main-image img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(13, 58, 87, 0.22));
  mix-blend-mode: multiply;
}

.product-main-image img[src$="-transparente.png"] {
  mix-blend-mode: normal;
}

.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #718897;
  font-size: 0.76rem;
}

.product-info {
  padding-top: 20px;
}

.product-title {
  font-size: clamp(2.3rem, 4.2vw, 4.55rem);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: #6a8495;
  font-size: 0.78rem;
}

.stars {
  color: var(--blue-500);
  letter-spacing: 0.12em;
}

.detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 24px;
}

.detail-price strong {
  color: var(--blue-700);
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.04em;
}

.detail-price del {
  color: #8ba0ae;
}

.product-intro {
  color: #5d778a;
  font-size: 1.02rem;
}

.stock-line {
  display: flex;
  align-items: center;
  margin: 24px 0;
  gap: 10px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 900;
}

.stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(40, 169, 107, 0.1);
}

.purchase-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.qty-control {
  display: grid;
  grid-template-columns: 42px 46px 42px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.qty-control button,
.qty-control input {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: center;
}

.qty-control button {
  color: var(--blue-700);
  font-size: 1.3rem;
}

.qty-control input {
  font-weight: 900;
}

.purchase-row .button {
  min-height: 54px;
}

.payment-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #6e8495;
  background: var(--mist);
  font-size: 0.76rem;
}

.payment-note img {
  width: min(42%, 160px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.benefit-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.benefit-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  padding: 16px 0;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  color: #60798a;
  font-size: 0.82rem;
}

.benefit-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--blue-100);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.details-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  margin-top: 100px;
  gap: 64px;
}

.related-section {
  margin-top: 110px;
}

.details-grid h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.details-copy p {
  color: #617b8d;
}

.spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  color: #78909f;
  font-size: 0.8rem;
}

.spec-row dd {
  margin: 0;
  color: var(--blue-900);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: right;
}

/* About */
.about-hero {
  padding-bottom: 0;
  background: var(--paper);
}

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

.about-photo-wrap {
  position: relative;
  min-height: 640px;
}

.about-photo-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 84%;
  height: 580px;
  overflow: hidden;
  border-radius: 160px 26px 26px 26px;
}

.about-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: min(330px, 78%);
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--blue-800);
  box-shadow: var(--shadow-lg);
}

.about-quote p {
  margin: 0 0 16px;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
}

.about-quote span {
  color: var(--blue-300);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-copy .lead {
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-stat {
  padding-top: 19px;
  border-top: 2px solid var(--blue-100);
}

.about-stat strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.about-stat span {
  color: #6d8495;
  font-size: 0.72rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  gap: 18px;
}

.value-card {
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.value-card-number {
  margin-bottom: 78px;
  color: var(--blue-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.value-card p {
  margin: 0;
  color: #6a8293;
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-900);
}

.service-image {
  min-height: 540px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 84px);
  color: var(--paper);
}

.service-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-copy p {
  color: #c7dce8;
}

.service-points {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0edf4;
  font-size: 0.84rem;
}

.service-points li::before {
  color: var(--blue-300);
  content: "✓";
  font-weight: 900;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 60px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 25px 54px 25px 0;
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 740px;
  padding: 0 54px 26px 0;
  color: #617a8b;
  font-size: 0.94rem;
}

.faq-answer p {
  margin: 0;
}

.help-card {
  position: sticky;
  top: 120px;
  padding: 32px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--blue-800);
  box-shadow: var(--shadow-lg);
}

.help-card .help-label {
  color: var(--blue-300);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.help-card h2 {
  margin: 14px 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.help-card p {
  color: #d1e3ed;
  font-size: 0.87rem;
}

.help-card .button {
  width: 100%;
  margin-top: 12px;
}

.help-hours {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c5d9e5;
  font-size: 0.72rem;
}

/* Footer and overlays */
.site-footer {
  color: #bdd2de;
  background: #082d45;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 1fr;
  padding: 68px 0;
  gap: 50px;
}

.footer-brand img {
  width: min(100%, 320px);
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: #96b3c3;
  font-size: 0.84rem;
}

.footer-col h3 {
  margin: 0 0 19px;
  color: var(--paper);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: #96b3c3;
  font-size: 0.82rem;
}

.footer-col a:hover {
  color: var(--blue-300);
}

.footer-payment img {
  width: min(100%, 205px);
  height: auto;
  margin-top: 16px;
  border-radius: 8px;
  background: var(--paper);
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7798aa;
  font-size: 0.72rem;
}

.footer-bottom a {
  color: var(--blue-300);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(133, 217, 244, 0.45);
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.floating-help {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  gap: 10px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--blue-700);
  box-shadow: 0 14px 32px rgba(13, 58, 87, 0.28);
  font-size: 0.8rem;
  font-weight: 900;
}

.floating-help::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--paper);
  content: "?";
}

.cart-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  background: rgba(4, 27, 41, 0.44);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 92vw);
  height: 100%;
  padding: 32px;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.cart-open .cart-overlay {
  visibility: visible;
  opacity: 1;
}

.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-head strong {
  color: var(--blue-900);
  font-size: 1.4rem;
}

.cart-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.3rem;
}

.cart-panel-body {
  display: grid;
  flex: 1;
  place-items: center;
  text-align: center;
}

.cart-empty-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-800);
  background: var(--blue-100);
  font-size: 1.6rem;
  font-weight: 900;
}

.cart-panel-body h2 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 1.6rem;
}

.cart-panel-body p {
  max-width: 280px;
  margin: 0 auto 22px;
  color: #6a8293;
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 88px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 15px 19px;
  border-radius: 13px;
  color: var(--paper);
  background: var(--blue-900);
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .phone-link {
    display: none;
  }

  .main-nav ul {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 42px;
  }

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

  .category-grid > .category-card:last-child {
    grid-column: span 2;
    min-height: 280px;
  }

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

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 680px);
  }

  .announcement .container {
    min-height: 38px;
    font-size: 0.64rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .brand img {
    width: 182px;
  }

  .site-header.is-shrunk .header-inner {
    min-height: 56px;
  }

  .site-header.is-shrunk .brand img {
    width: 146px;
  }

  .main-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    justify-self: stretch;
    visibility: hidden;
    max-height: calc(100dvh - 72px);
    padding: 20px max(15px, calc((100vw - 680px) / 2));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(20, 83, 124, 0.14);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-grid,
  .page-hero-grid,
  .product-detail-grid,
  .about-hero-grid,
  .details-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image-main {
    width: 86%;
    height: 480px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

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

  .category-grid,
  .season-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .category-grid > .category-card:last-child {
    grid-column: auto;
  }

  .category-mini-stack {
    grid-template-columns: 1fr 1fr;
  }

  .season-product {
    min-height: 450px;
  }

  .steps-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .step-card .step-number,
  .value-card-number {
    margin-bottom: 34px;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .product-gallery,
  .help-card {
    position: static;
  }

  .about-photo-wrap {
    min-height: 590px;
    grid-row: 2;
  }

  .service-image {
    min-height: 430px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
    --radius-lg: 26px;
  }

  .brand img {
    width: 156px;
  }

  .site-header.is-shrunk .brand img {
    width: 128px;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    padding-inline: 14px;
  }

  .display-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-main {
    width: 90%;
    height: 430px;
  }

  .hero-float-card {
    width: 74%;
    padding: 18px;
  }

  .hero-orbit {
    width: 76px;
    height: 76px;
    border-width: 7px;
    font-size: 0.56rem;
  }

  .trust-item {
    min-height: 94px;
    padding: 20px 12px;
  }

  .category-grid,
  .category-mini-stack {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-mini-stack .category-card,
  .category-grid > .category-card:last-child {
    min-height: 310px;
  }

  .season-product {
    min-height: 360px;
    padding: 36px;
  }

  .offer-sticker {
    top: 20px;
    right: 20px;
    width: 76px;
    height: 76px;
    font-size: 0.62rem;
  }

  .season-copy {
    padding: 40px 26px;
  }

  .page-hero-aside {
    padding-left: 18px;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

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

  .product-media {
    min-height: 285px;
  }

  .product-card-promo .product-media,
  .product-card-promo .product-media img {
    height: 360px;
    min-height: 360px;
  }

  .product-main-image {
    min-height: 390px;
  }

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .qty-control {
    width: 130px;
  }

  .payment-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .spec-row {
    gap: 12px;
  }

  .about-photo-wrap {
    min-height: 520px;
  }

  .about-photo-large {
    width: 90%;
    height: 470px;
    border-radius: 110px 22px 22px 22px;
  }

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

  .value-card {
    min-height: auto;
  }

  .service-image {
    min-height: 360px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    padding: 54px 0;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
    gap: 5px;
  }

  .floating-help {
    right: 14px;
    bottom: 14px;
    width: 50px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .floating-help::before {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .header-inner,
  .brand img,
  .phone-link small {
    transition: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
