:root {
  --bg-dark: #0b0d17;
  --bg-dark-2: #101321;
  --bg-panel: #0c0f18;
  --bg-panel-2: #070a12;
  --bg-soft: #f4f4f4;
  --text: #ffffff;
  --text-dark: #1c1d24;
  --muted: #cfd2d8;
  --red: #e11b22;
  --red-dark: #b81218;
  --green: #24d366;
  --line: #2a2d39;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.14);
  --container: 1460px;
}

[hidden] {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text-dark);
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

ul {
  list-style: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(225, 27, 34, 0.45);
  outline-offset: 3px;
}

.site-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

/* =========================
   TRANSICIONES GENERALES
========================= */
.btn,
.mini-btn,
.hero-whatsapp-btn,
.floating-whatsapp,
.hero-arrow,
.main-nav a,
.collection-card,
.product-card,
.collection-card img,
.product-image img,
.benefit-item,
.benefit-icon,
.benefit-item p {
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease,
    letter-spacing 0.22s ease,
    border-color 0.22s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-subtitle {
  font-size: 7px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  padding-left: 2px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 92px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.main-nav a:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #070b16 0%, #040814 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 36%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.08), transparent 20%);
  z-index: 1;
}

.hero-slider {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(6, 10, 22, 0.96) 0%,
      rgba(3, 8, 22, 0.98) 42%,
      rgba(2, 7, 20, 0.98) 100%
    ),
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-slides {
  position: relative;
  min-height: 585px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 585px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.hero-slide-bg {
  display: none;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.045) 1.3px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.94;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055) 0 17%, transparent 17% 100%),
    radial-gradient(circle at 24% 52%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.16),
      transparent 18%,
      transparent 82%,
      rgba(0, 0, 0, 0.18)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      transparent 28%,
      transparent 72%,
      rgba(0, 0, 0, 0.12)
    );
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 585px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 0;
  padding-top: 6px;
  padding-bottom: 42px;
}

.hero-model {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  padding-left: 22px;
  transform: translateY(48px);
  isolation: isolate;
}

.hero-model::before {
  content: "";
  position: absolute;
  left: 45%;
  bottom: 42px;
  width: 340px;
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero-model::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: 18px;
  width: 300px;
  height: 90px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.28), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.hero-model img {
  position: relative;
  z-index: 1;
  height: 575px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.42));
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 42px 0 0;
}

.hero-top-text {
  font-size: 40px;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 0.92;
  margin-bottom: 16px;
}

.hero-title-dark {
  font-size: 112px;
  font-weight: 900;
  color: #f3f3f3;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.hero-title-red {
  font-size: 74px;
  font-weight: 900;
  color: #ff1b23;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 24px;
  line-height: 1.35;
  color: #f4f4f4;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-subtitle span {
  color: #ff2a31;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-height: 68px;
  padding: 0 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.btn:hover,
.mini-btn:hover,
.hero-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  filter: brightness(1.05);
}

.btn-dark {
  background: linear-gradient(180deg, #12172c, #0b1022);
  color: #fff;
}

.btn-dark:hover {
  background: linear-gradient(180deg, #171d35, #0e1428);
}

.btn-red {
  background: linear-gradient(180deg, #ff2028, #d90f18);
  color: #fff;
}

.btn-red:hover,
.mini-btn:hover {
  filter: brightness(1.08);
}

.btn i {
  font-size: 24px;
}

.hero-whatsapp-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #171a25;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-whatsapp-btn:hover {
  background: #1c2030;
}

.hero-whatsapp-btn i {
  color: var(--green);
  font-size: 24px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #3d3e45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: #f7f7f7;
  color: #111827;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.hero-arrow-left {
  left: 18px;
}

.hero-arrow-right {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  opacity: 0.95;
}

.hero-dots .dot.active {
  background: #ff8f96;
}

.hero-slide .hero-model {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero-slide .hero-text {
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform 0.65s ease,
    opacity 0.65s ease;
}

.hero-slide.active .hero-model {
  opacity: 1;
}

.hero-slide.active .hero-text {
  transform: translateY(0);
  opacity: 1;
}

/* =========================
   SECCIÓN OSCURA INFERIOR
========================= */
.home-main {
  background: linear-gradient(180deg, #0f1321 0%, #090c16 100%);
  margin-top: -1px;
}

.home-panels {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

.collections-panel,
.featured-panel {
  background: linear-gradient(180deg, rgba(18, 21, 34, 0.99), rgba(8, 10, 18, 0.99));
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.collections-panel::before,
.featured-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
  z-index: 1;
}

.collections-panel > *,
.featured-panel > * {
  position: relative;
  z-index: 2;
}

.collections-panel {
  padding: 16px 14px 18px;
}

.featured-panel {
  padding: 16px 14px 18px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.section-header h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-align: center;
}

.section-header .line {
  flex: 1;
  max-width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.featured-header {
  margin-bottom: 14px;
}

.featured-header h2 {
  width: 100%;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.collection-card {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1019;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.collection-card:hover,
.product-card:hover {
  transform: translateY(-4px);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card:hover img,
.product-card:hover .product-image img {
  transform: scale(1.04);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 15, 0.12), rgba(5, 6, 10, 0.56)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.06));
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    transparent 0 72%,
    rgba(215, 25, 32, 0.95) 72% 74%,
    transparent 74% 100%
  );
  z-index: 2;
  pointer-events: none;
}

.collection-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.collection-content h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}

.offer-card .collection-content h3 span {
  color: #ff4d55;
}

.mini-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #df1b22, #bb1117);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.mini-btn i {
  font-size: 14px;
}

/* =========================
   PRODUCTOS DESTACADOS
========================= */
.featured-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
  padding: 14px;
  background: #f3f3f3;
  overflow: hidden;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

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

.product-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  padding: 12px 12px 14px;
  background: linear-gradient(180deg, #1a1d2a 0%, #0f1320 100%);
  text-align: center;
  gap: 4px;
}

.old-price {
  margin: 0;
  font-size: 14px;
  color: #8b8f99;
  text-decoration: line-through;
  line-height: 1;
}

.price {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.featured-empty {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #cfd2d8;
  text-align: center;
}

/* =========================
   BENEFICIOS
========================= */
.benefits-bar {
  background: linear-gradient(180deg, #090c14, #05070d);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  text-align: center;
}

.benefit-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

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

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.benefit-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.benefit-item:hover .benefit-icon img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px rgba(225, 27, 34, 0.45));
}

.benefit-item p {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.benefit-item:hover p {
  color: #ffffff;
  letter-spacing: 0.5px;
}

.benefit-item:hover::after {
  width: 72px;
}

.benefit-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
}

/* =========================
   FLOATING WHATSAPP
========================= */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: whatsappPulse 8s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  2% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.25);
  }

  4% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.featured-empty {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #cfd2d8;
  text-align: center;
}

.old-price {
  margin: 0 0 4px;
  font-size: 14px;
  color: #8b8f99;
  text-decoration: line-through;
}
/* =========================
   NOVEDADES / RECIÉN AGREGADOS
   Bloque limpio único
========================= */
.home-new-products {
  position: relative;
  padding: 36px 0 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 27, 34, 0.12), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, #05070d 0%, #080c16 100%);
  overflow: hidden;
}

.home-new-products::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025),
      transparent 18%,
      transparent 82%,
      rgba(255, 255, 255, 0.018)
    ),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 1px, transparent 2px);
  background-size:
    auto,
    24px 24px;
  opacity: 0.65;
}

.home-new-products > .container {
  position: relative;
  z-index: 2;
  padding: 28px 34px 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 14, 22, 0.96), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.home-new-products > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025),
      transparent 25%,
      transparent 75%,
      rgba(255, 255, 255, 0.018)
    );
}

.home-new-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.home-new-title-block {
  max-width: 760px;
}

.home-new-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #ff232b;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-new-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.home-new-title-block h2 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.home-new-title-block p {
  margin: 9px 0 0;
  color: #d6dae1;
  font-size: 15px;
  line-height: 1.5;
}

.home-new-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.home-new-view-all {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: #ff232b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  border: 0;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.home-new-view-all:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.home-new-arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-new-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(5, 8, 13, 0.84);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border: 1px solid #ff171f;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.home-new-arrow:hover {
  transform: translateY(-2px) scale(1.03);
  background: #ff171f;
  color: #ffffff;
}

.home-new-slider {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0;
}

.home-new-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 6px;
  padding: 0 0 8px;
  scrollbar-width: none;
  will-change: scroll-position;
}

.home-new-track::-webkit-scrollbar {
  display: none;
}

.home-new-card {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(12, 18, 25, 0.9), rgba(6, 10, 15, 0.98));
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
  box-shadow: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.home-new-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.home-new-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff2028, #d5111a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(225, 27, 34, 0.22);
}

.home-new-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(17, 24, 31, 0.72), rgba(6, 10, 15, 0.98));
  overflow: hidden;
}

.home-new-image::after {
  display: none;
}

.home-new-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.32));
  transition:
    transform 0.45s ease,
    opacity 0.28s ease,
    filter 0.35s ease;
}

.home-new-card:hover .home-new-image img {
  transform: scale(1.03);
  filter: brightness(1.03) drop-shadow(0 16px 22px rgba(0, 0, 0, 0.32));
}

.home-new-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 15px 16px;
  background: linear-gradient(180deg, rgba(10, 16, 22, 0.96), rgba(5, 8, 13, 0.98));
  color: #ffffff;
}

.home-new-main-info {
  flex: 1;
}

.home-new-info h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 950;
  text-transform: none;
}

.home-new-category {
  margin: 8px 0 0;
  color: #c6cbd4;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.home-new-price {
  margin: 12px 0 0;
  color: #ff1d25;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.home-new-sizes {
  margin-top: 12px;
}

.home-new-sizes > span {
  display: block;
  margin-bottom: 7px;
  color: #c6cbd4;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-new-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.home-new-size-list b {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(5, 8, 13, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-new-btn {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff2028, #d9111a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(225, 27, 34, 0.18);
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.home-new-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 30px rgba(225, 27, 34, 0.26);
}

.home-new-empty {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #cfd2d8;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

/* =========================
   RESPONSIVE NOVEDADES
========================= */
@media (max-width: 1280px) {
  .home-new-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .home-new-image {
    height: 250px;
  }
}

@media (max-width: 900px) {
  .home-new-products > .container {
    padding: 24px 20px 28px;
  }

  .home-new-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .home-new-actions {
    width: 100%;
    justify-content: space-between;
  }

  .home-new-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .home-new-title-block h2 {
    font-size: 30px;
  }

  .home-new-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .home-new-products {
    padding: 30px 0 34px;
  }

  .home-new-products > .container {
    width: calc(100% - 20px);
    padding: 22px 14px 26px;
  }

  .home-new-title-block h2 {
    font-size: 26px;
  }

  .home-new-title-block p {
    font-size: 14px;
  }

  .home-new-view-all {
    font-size: 12px;
  }

  .home-new-card {
    flex-basis: 86%;
  }

  .home-new-image {
    height: 240px;
  }

  .home-new-info h3 {
    font-size: 15px;
  }

  .home-new-price {
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .home-new-card {
    flex-basis: 92%;
  }

  .home-new-image {
    height: 220px;
  }

  .home-new-size-list b {
    min-width: 30px;
    min-height: 27px;
    font-size: 11px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

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

  .main-nav a {
    font-size: 12px;
  }

  .hero-content {
    grid-template-columns: 42% 58%;
  }

  .hero-model {
    padding-left: 16px;
  }

  .hero-model::before {
    width: 290px;
    height: 290px;
    bottom: 34px;
  }

  .hero-model::after {
    width: 250px;
    height: 75px;
    bottom: 16px;
  }

  .hero-model img {
    height: 520px;
  }

  .hero-top-text {
    font-size: 34px;
  }

  .hero-title-dark {
    font-size: 90px;
  }

  .hero-title-red {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .btn {
    min-height: 62px;
    font-size: 18px;
    padding: 0 30px;
  }

  .home-panels {
    grid-template-columns: 1fr;
  }

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

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

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

  .header-container {
    min-height: 82px;
    gap: 16px;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #0d1019;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
    justify-content: center;
    padding: 18px 20px;
  }

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

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .main-nav a {
    min-height: 52px;
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    width: 120px;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 74px;
    padding-bottom: 56px;
  }

  .hero-model {
    justify-content: center;
    padding-left: 0;
    transform: translateY(0);
  }

  .hero-model::before {
    left: 50%;
    width: 240px;
    height: 240px;
    bottom: 26px;
  }

  .hero-model::after {
    left: 50%;
    width: 210px;
    height: 65px;
    bottom: 10px;
  }

  .hero-model img {
    height: 360px;
  }

  .hero-text {
    padding: 0;
  }

  .hero-top-text {
    font-size: 34px;
    max-width: 700px;
  }

  .hero-title-dark {
    font-size: 76px;
  }

  .hero-title-red {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .btn {
    min-height: 56px;
    font-size: 17px;
    padding: 0 24px;
  }

  .hero-whatsapp-btn {
    top: 16px;
    right: 16px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-arrow {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

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

  .benefits-container {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
    min-height: auto;
  }

  .benefit-divider {
    display: none;
  }
}

/* =========================
   BASE ANTI FLASH BLANCO
========================= */
html,
body {
  background: #05070d;
}

body {
  opacity: 1;
  transition: opacity 0.28s ease;
}

body.is-page-leaving {
  opacity: 0;
}

/* =========================
   LOADER GLOBAL
========================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-loader__content {
  position: relative;
  z-index: 2;
  width: min(92vw, 280px);
  padding: 34px 26px 28px;
  border-radius: 24px;
  text-align: center;
  background: rgba(20, 24, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(255, 20, 60, 0.08);
  overflow: hidden;
}

.page-loader__glow {
  position: absolute;
  inset: auto 50% 24px 50%;
  width: 130px;
  height: 130px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 35, 60, 0.14) 0%, rgba(255, 35, 60, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

.page-loader__logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 40, 40, 0.95);
  border-right-color: rgba(255, 255, 255, 0.2);
  animation: loaderSpin 1.15s linear infinite;
}

.page-loader__logo {
  position: relative;
  z-index: 2;
  width: 54px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 14px rgba(255, 30, 50, 0.12));
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.page-loader__text {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-loader__dots {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.page-loader__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2638;
  box-shadow: 0 0 12px rgba(255, 38, 56, 0.4);
  animation: loaderPulse 1s ease-in-out infinite;
}

.page-loader__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.page-loader__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes loaderPulse {
  0%,
  80%,
  100% {
    transform: scale(0.72);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

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

  .header-container {
    min-height: 76px;
    gap: 12px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 6px;
    letter-spacing: 3px;
  }

  .main-nav {
    top: 76px;
  }

  .hero-content {
    padding-top: 66px;
    padding-bottom: 54px;
  }

  .hero-model::before {
    width: 200px;
    height: 200px;
    bottom: 18px;
  }

  .hero-model::after {
    width: 170px;
    height: 55px;
    bottom: 8px;
  }

  .hero-model img {
    height: 280px;
  }

  .hero-top-text {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .hero-title {
    gap: 4px;
    margin-bottom: 14px;
  }

  .hero-title-dark {
    font-size: 46px;
  }

  .hero-title-red {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .btn {
    min-height: 52px;
    width: 100%;
    padding: 0 20px;
    font-size: 15px;
  }

  .hero-buttons {
    width: 100%;
    gap: 12px;
  }

  .hero-whatsapp-btn {
    top: 12px;
    right: 12px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
    gap: 8px;
  }

  .hero-whatsapp-btn i {
    font-size: 20px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .hero-dots {
    bottom: 8px;
  }

  .section-header {
    gap: 10px;
  }

  .section-header h2 {
    font-size: 18px;
  }

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

  .collection-card {
    min-height: 260px;
  }

  .collection-content h3 {
    font-size: 24px;
  }

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

  .product-image {
    min-height: 220px;
  }

  .product-image img {
    height: 200px;
  }

  .benefit-item {
    flex-direction: column;
    gap: 8px;
  }

  .benefit-item p {
    font-size: 13px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 24px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 560px) {
  .hero-model img {
    height: 240px;
  }

  .hero-top-text {
    font-size: 20px;
  }

  .hero-title-dark {
    font-size: 38px;
  }

  .hero-title-red {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
  }

  .hero-whatsapp-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-whatsapp-btn span {
    display: none;
  }

  .hero-whatsapp-btn i {
    font-size: 18px;
    margin: 0;
  }

  .collection-card {
    min-height: 220px;
    border-radius: 18px;
  }

  .collection-content {
    padding: 14px 12px 12px;
  }

  .collection-content h3 {
    font-size: 18px;
  }

  .mini-btn {
    min-height: 38px;
    font-size: 14px;
    padding: 0 16px;
  }

  .product-image {
    min-height: 180px;
  }

  .product-image img {
    height: 170px;
  }

  .price {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 18px);
  }

  .header-container {
    min-height: 72px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 5px;
    letter-spacing: 2px;
  }

  .hero-content {
    padding-top: 62px;
    padding-bottom: 48px;
  }

  .hero-model::before {
    width: 170px;
    height: 170px;
    bottom: 14px;
  }

  .hero-model::after {
    width: 140px;
    height: 46px;
    bottom: 6px;
  }

  .hero-model img {
    height: 210px;
  }

  .hero-top-text {
    font-size: 18px;
  }

  .hero-title-dark {
    font-size: 34px;
  }

  .hero-title-red {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .btn {
    min-height: 48px;
    font-size: 13px;
    padding: 0 14px;
    gap: 8px;
  }

  .btn i {
    font-size: 18px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hero-whatsapp-btn {
    top: 10px;
    right: 10px;
  }

  .section-header h2 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
