/* Camila & Valeska con estructura tipo John Sport y colores propios. */
:root {
  --cv-blue: #1e6fe8;
  --cv-blue-dark: #061833;
  --cv-blue-deep: #071222;
  --cv-blue-soft: #6db7ff;
  --cv-red: #e53935;
  --cv-red-dark: #b71c1c;
  --cv-bg: #08111f;
  --cv-panel: #101826;
  --cv-panel-2: #142238;
  --cv-text: #f8fbff;
  --cv-muted: #aeb9ca;
  --cv-border: rgba(255, 255, 255, 0.12);
  --cv-radius: 8px;
}

.client-body {
  min-height: 100vh;
  padding: 0;
  background: var(--cv-bg);
  color: var(--cv-text);
  font-family: "Inter", "Montserrat", Arial, sans-serif;
}

.container {
  width: 75vw;
  max-width: 1540px;
  margin: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(6, 24, 51, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  border-color: var(--cv-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--cv-radius);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: var(--cv-blue-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d2d9e6;
  font-size: 14px;
  font-weight: 700;
}

.menu a:hover {
  color: #fff;
}

.nav-actions {
  display: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  background: var(--cv-panel);
  color: #fff;
  font-size: 20px;
}

.catalog-page,
.detail-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  min-height: 660px;
  padding: 142px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(229, 57, 53, 0.2), transparent 29%),
    radial-gradient(circle at 64% 72%, rgba(30, 111, 232, 0.2), transparent 34%),
    linear-gradient(135deg, #061833 0%, #08111f 58%, #14090e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -320px;
  top: -180px;
  background: radial-gradient(circle, rgba(47, 139, 255, 0.18), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 74px;
}

.hero-copy {
  max-width: 680px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(109, 183, 255, 0.42);
  border-radius: 999px;
  background: rgba(30, 111, 232, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.hero-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cv-red);
  box-shadow: 0 0 18px var(--cv-red);
}

.hero h1 {
  margin: 24px 0 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 28px 0 34px;
  color: #c4d0e3;
  font-size: 16px;
  line-height: 1.85;
}

.hero-showcase {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.showcase-ring {
  position: absolute;
  right: -40px;
  top: 10px;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(229, 57, 53, 0.12);
  border-radius: 50%;
}

.card-main {
  position: relative;
  z-index: 4;
  width: 330px;
  padding: 16px;
  transform: rotate(5deg);
  background: linear-gradient(145deg, rgba(109, 183, 255, 0.14), rgba(229, 57, 53, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  transition: 0.35s;
}

.card-main:hover {
  transform: rotate(1deg) translateY(-8px);
}

.card-back {
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 360px;
  left: 38px;
  top: 80px;
  transform: rotate(-13deg);
  background: linear-gradient(145deg, rgba(229, 57, 53, 0.75), rgba(30, 111, 232, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.card-badge {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 28px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--cv-red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.hero-latest-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  background: #071222;
}

.jersey {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #142238, #061833);
}

.jersey span,
.jersey strong {
  position: relative;
  z-index: 2;
}

.jersey span {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 900;
}

.jersey strong {
  font-size: 86px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}

.card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 2px;
}

.card-info small {
  color: var(--cv-red);
  font-size: 9px;
  font-weight: 900;
}

.card-info h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 19px;
}

.card-info b {
  padding: 7px 9px;
  border-radius: 6px;
  background: #1b2940;
  color: #d7e7ff;
  font-size: 9px;
  font-weight: 900;
}

.search-section {
  position: relative;
  z-index: 8;
  margin-top: -36px;
  padding-bottom: 76px;
  background: #08111f;
}

.search-box {
  max-width: 920px;
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(109, 183, 255, 0.16);
  border-radius: 16px;
  background: #101826;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
}

.search-icon {
  width: 52px;
  display: grid;
  place-items: center;
  color: #8ea3c2;
  font-size: 25px;
}

.search-box input {
  flex: 1;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--cv-radius);
  padding: 0 14px;
  background: transparent;
  color: #fff;
  outline: 0;
}

.search-box a,
.filter,
.whatsapp-order {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--cv-radius);
  font-weight: 850;
}

.search-box a {
  min-width: 100px;
  min-height: 54px;
  background: var(--cv-red);
  color: #fff;
  font-size: 13px;
}

.catalog-section {
  padding: 0 0 96px;
  background: #08111f;
  color: var(--cv-text);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--cv-blue-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.filter {
  border: 1px solid rgba(109, 183, 255, 0.15);
  padding: 0 15px;
  background: #101826;
  color: #c4d0e3;
  font-size: 12px;
}

.filter:hover,
.filter.active {
  border-color: var(--cv-blue);
  background: linear-gradient(135deg, var(--cv-blue), var(--cv-red));
  color: #fff;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.model-card {
  overflow: hidden;
  border: 1px solid rgba(109, 183, 255, 0.12);
  border-radius: 12px;
  background: #101826;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  transition: 0.25s;
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 57, 53, 0.42);
}

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

.model-image-link {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #071222;
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.model-info {
  min-height: 142px;
  padding: 16px;
  background: linear-gradient(180deg, #101826, #142238);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.model-info h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.model-info span {
  display: block;
  margin-top: 6px;
  color: #99acd0;
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-order {
  margin-top: auto;
  background: var(--cv-red);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(229, 57, 53, 0.25);
}

.whatsapp-order:hover {
  background: var(--cv-red-dark);
}

.empty-state,
.empty-card {
  border: 1px dashed rgba(109, 183, 255, 0.22);
  border-radius: var(--cv-radius);
  padding: 36px;
  background: #101826;
  text-align: center;
}

.footer {
  padding: 58px 0 26px;
  color: #9ca9bf;
  border-top: 1px solid var(--cv-border);
  background: #061833;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 38px;
  align-items: start;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 18px;
  color: #b8c4d6;
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-social-icons,
.footer-contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 183, 255, 0.16);
  border-radius: 8px;
  background: #101826;
  color: #fff;
}

.social-icon:hover {
  border-color: var(--cv-red);
  background: var(--cv-red);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7587a5;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34), 0 10px 28px rgba(0, 0, 0, 0.34);
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
  font-size: 28px;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.3), 0 10px 26px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.12), 0 18px 34px rgba(37, 211, 102, 0.32), 0 10px 28px rgba(0, 0, 0, 0.32);
    transform: scale(1.06);
  }
}

.detail-page {
  min-height: 100vh;
  padding: 58px 0 80px;
  background: #08111f;
  color: #fff;
}

.detail-card {
  width: min(1180px, 92%);
  margin: 22px auto 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 620px) minmax(280px, 1fr);
  gap: 0;
  border: 1px solid rgba(109, 183, 255, 0.15);
  border-radius: 14px;
  background: #101826;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.detail-content {
  padding: 30px;
  background: #101826;
}

.detail-content h1 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.detail-content p {
  color: #c4d0e3;
  line-height: 1.7;
}

.detail-kicker-label {
  color: var(--cv-blue-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.button-link,
.whatsapp-button {
  min-height: 46px;
  border-radius: 8px;
  background: var(--cv-red);
  color: #fff;
  font-weight: 850;
}

.button-link.secondary {
  border: 1px solid var(--cv-border);
  background: #142238;
  color: #fff;
}

.zoom-stage,
.zoom-stage img {
  border-radius: 10px;
  background: #071222;
}

@media (max-width: 900px) {
  .container {
    width: 92%;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    background: #101826;
  }

  .menu.show {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .detail-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 118px 0 82px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-showcase {
    min-height: 380px;
  }

  .card-main {
    width: min(292px, 88vw);
  }

  .card-back {
    display: none;
  }

  .search-box {
    min-height: 64px;
  }

  .search-icon {
    display: none;
  }

  .footer-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }
}
/* Exact John Sport hero/card override */
.client-body {
  background: #101216;
}

.site-header {
  background: rgba(16, 18, 22, 0.78);
}

.brand small {
  color: #e50914;
}

.hero {
  background:
    radial-gradient(circle at 84% 28%, rgba(229, 9, 20, 0.16), transparent 28%),
    radial-gradient(circle at 66% 72%, rgba(1, 180, 185, 0.11), transparent 32%),
    #090b0f;
}

.hero::before {
  background: radial-gradient(circle, rgba(1, 180, 185, 0.16), transparent 66%);
}

.hero-label {
  border-color: rgba(229, 9, 20, 0.38);
  background: rgba(229, 9, 20, 0.08);
}

.hero-label i,
.card-badge,
.search-box a,
.whatsapp-order {
  background: #e50914;
}

.hero p {
  color: #aeb7c6;
}

.showcase-ring {
  border-color: rgba(229, 9, 20, 0.09);
}

.hero-showcase .design-card {
  display: block;
  grid-template-rows: none;
  overflow: visible;
  height: auto;
  min-height: 0;
  box-shadow: none;
  transition: none;
}

.hero-showcase .design-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero-showcase .card-main {
  position: relative;
  z-index: 4;
  width: 330px;
  padding: 16px;
  transform: rotate(5deg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s;
}

.hero-showcase .card-main:hover {
  transform: rotate(1deg) translateY(-8px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
}

.hero-showcase .card-back {
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 360px;
  left: 38px;
  top: 80px;
  transform: rotate(-13deg);
  background: linear-gradient(145deg, rgba(229, 9, 20, 0.7), rgba(1, 64, 108, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.hero-showcase .card-badge {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 28px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.hero-showcase .hero-latest-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  background: #07090d;
}

.hero-showcase .card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 2px;
  background: transparent;
}

.hero-showcase .card-info small {
  color: #e50914;
  font-size: 9px;
  font-weight: 900;
}

.hero-showcase .card-info h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.hero-showcase .card-info b {
  padding: 7px 9px;
  border-radius: 6px;
  background: #232832;
  color: #bbc4d0;
  font-size: 9px;
  font-weight: 900;
}

.search-section,
.catalog-section {
  background: #090b0f;
}

.search-box,
.model-card,
.model-info {
  background: #12151b;
}

.model-image-link {
  background: #0f1218;
}

.model-card {
  border-color: rgba(255, 255, 255, 0.08);
}

.model-card:hover {
  border-color: rgba(1, 180, 185, 0.36);
}

.model-info {
  background: #12151b;
}

.model-info span {
  color: #8a94a5;
}

.eyebrow,
.card-info small {
  color: #e50914;
}

.filter {
  border-color: rgba(255, 255, 255, 0.1);
  background: #12151b;
  color: #aeb7c6;
}

.filter:hover,
.filter.active {
  border-color: #e50914;
  background: #e50914;
  color: #fff;
}

.footer {
  background: #07090d;
}

@media (max-width: 640px) {
  .hero-showcase .card-main {
    width: min(292px, 88vw);
  }
}
/* Catalog cards hero-style animation */
.model-grid {
  gap: 34px;
  padding: 10px 0 22px;
  perspective: 1200px;
}

.model-card {
  --card-tilt: -1.2deg;
  --card-hover-tilt: 2deg;
  position: relative;
  isolation: isolate;
  overflow: visible;
  opacity: 0;
  transform: rotate(var(--card-tilt)) translateY(18px);
  transform-origin: center bottom;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.44);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  animation: none;
}

.model-card.is-visible {
  opacity: 1;
  transform: rotate(var(--card-tilt)) translateY(0);
  animation: catalog-card-float 5.8s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * -0.18s);
}

.model-card:nth-child(3n + 2) {
  --card-tilt: 1.15deg;
  --card-hover-tilt: -2deg;
}

.model-card:nth-child(3n + 3) {
  --card-tilt: -0.45deg;
  --card-hover-tilt: 1.4deg;
}

.model-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 42px -18px 84px -18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(229, 9, 20, 0.72), rgba(122, 11, 11, 0.28));
  transform: rotate(-8deg);
  opacity: 0.72;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.model-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10px -8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.model-card:hover {
  z-index: 5;
  transform: rotate(var(--card-hover-tilt)) translateY(-12px) scale(1.018);
  border-color: rgba(229, 9, 20, 0.34);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.55), 0 0 28px rgba(229, 9, 20, 0.14);
  animation-play-state: paused;
}

.model-card:hover::before {
  transform: rotate(-12deg) translateX(-8px) translateY(5px);
  opacity: 0.9;
}

.model-image-link {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.model-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.model-card:hover .model-image-link::after {
  transform: translateX(120%);
}

.model-card img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.model-card:hover img {
  transform: scale(1.045) rotate(-0.8deg);
  filter: saturate(1.08) contrast(1.04);
}

.model-info {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.model-info::before {
  content: "";
  position: absolute;
  left: -22%;
  right: 30%;
  top: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.model-card:hover .model-info::before {
  opacity: 1;
  transform: translateX(26%);
}

@keyframes catalog-card-float {
  0%,
  100% {
    transform: rotate(var(--card-tilt)) translateY(0);
  }

  50% {
    transform: rotate(calc(var(--card-tilt) * -0.45)) translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-card,
  .model-card.is-visible,
  .model-card:hover,
  .model-card img,
  .model-image-link::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .model-grid {
    gap: 28px;
    padding-top: 4px;
  }

  .model-card {
    --card-tilt: 0deg;
  }

  .model-card::before {
    inset: 36px -10px 84px -10px;
    transform: rotate(-4deg);
  }
}
/* Catalog cards hover-only animation */
.model-card,
.model-card.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

.model-card::before {
  opacity: 0;
  transform: rotate(-8deg) scale(0.96);
}

.model-card::after {
  opacity: 0.85;
}

.model-card:hover {
  z-index: 5;
  transform: rotate(var(--card-hover-tilt, 2deg)) translateY(-12px) scale(1.018);
  border-color: rgba(229, 9, 20, 0.34);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.55), 0 0 28px rgba(229, 9, 20, 0.14);
}

.model-card:hover::before {
  opacity: 0.9;
  transform: rotate(-12deg) translateX(-8px) translateY(5px) scale(1);
}

.model-card img {
  transform: none;
}

.model-card:hover img {
  transform: scale(1.045) rotate(-0.8deg);
  filter: saturate(1.08) contrast(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .model-card:hover,
  .model-card:hover img,
  .model-card:hover::before {
    transform: none;
  }
}
/* Flashy cursor hover effects */
@property --cv-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.model-card {
  --mouse-x: 50%;
  --mouse-y: 34%;
  --cv-border-angle: 0deg;
}

.model-card:hover {
  border-color: transparent;
  background:
    linear-gradient(#12151b, #12151b) padding-box,
    conic-gradient(from var(--cv-border-angle), transparent 0deg, rgba(229, 9, 20, 0.95) 78deg, rgba(1, 180, 185, 0.75) 142deg, transparent 240deg) border-box;
  animation: cv-border-spin 1.85s linear infinite;
}

.model-image-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.28), rgba(229, 9, 20, 0.12) 26%, transparent 48%),
    linear-gradient(135deg, transparent 20%, rgba(1, 180, 185, 0.18), transparent 72%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.model-card:hover .model-image-link::before {
  opacity: 1;
}

.model-info h3 {
  position: relative;
  display: inline-block;
  justify-self: center;
}

.model-info h3::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e50914, #01b4b9);
  opacity: 0;
  transition: left 0.28s ease, right 0.28s ease, opacity 0.28s ease;
}

.model-card:hover .model-info h3::after {
  left: 8%;
  right: 8%;
  opacity: 1;
}

.model-card:hover .model-info h3 {
  text-shadow: 0 0 18px rgba(229, 9, 20, 0.32);
}

.model-card:hover .model-info span {
  color: #d8e2ef;
}

.whatsapp-order {
  position: relative;
  overflow: hidden;
}

.whatsapp-order::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.model-card:hover .whatsapp-order {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(229, 9, 20, 0.34);
}

.model-card:hover .whatsapp-order::before {
  opacity: 1;
  animation: cv-button-shine 0.9s ease 0.08s 1;
}

.model-card:hover::after {
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 36px rgba(229, 9, 20, 0.06);
}

@keyframes cv-border-spin {
  to {
    --cv-border-angle: 360deg;
  }
}

@keyframes cv-button-shine {
  0% {
    transform: translateX(0) skewX(-18deg);
  }

  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-card:hover,
  .model-card:hover .whatsapp-order::before {
    animation: none;
  }
}
/* Catalog pagination */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.catalog-pagination[hidden] {
  display: none;
}

.catalog-pagination span {
  color: #aeb7c6;
  font-size: 13px;
  font-weight: 800;
}

.pagination-actions,
.pagination-pages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination-btn,
.pagination-page {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 13px;
  background: #12151b;
  color: #dbe2ef;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pagination-page.active,
.pagination-btn:not(:disabled):hover,
.pagination-page:hover {
  border-color: #e50914;
  background: #e50914;
  color: #fff;
  transform: translateY(-1px);
}

.pagination-btn:disabled {
  pointer-events: none;
  opacity: 0.45;
}

.search-empty {
  margin-top: 28px;
}

.search-empty[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .catalog-pagination,
  .pagination-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pagination-pages {
    justify-content: center;
  }

  .pagination-btn {
    width: 100%;
  }
}
/* Requested black/red palette */
:root {
  --fondo: #090909;
  --fondo-secundario: #151515;
  --tarjeta: #1C1C1C;
  --rojo: #E50914;
  --rojo-hover: #FF2635;
  --blanco: #FFFFFF;
  --texto-secundario: #A8A8A8;
  --borde: #2A2A2A;
}

.client-body {
  background: var(--fondo);
  color: var(--blanco);
}

.site-header {
  background: rgba(9, 9, 9, 0.82);
  border-bottom-color: transparent;
}

.site-header.scrolled,
.model-card,
.search-box,
.filter,
.pagination-btn,
.pagination-page,
.social-icon,
.detail-card {
  border-color: var(--borde);
}

.brand strong,
.hero h1,
.section-head h2,
.model-info h3,
.footer h3,
.detail-content h1 {
  color: var(--blanco);
}

.brand small,
.hero-label i,
.card-badge,
.search-box a,
.whatsapp-order,
.filter:hover,
.filter.active,
.pagination-page.active,
.pagination-btn:not(:disabled):hover,
.pagination-page:hover,
.button-link,
.whatsapp-button,
.social-icon:hover {
  background: var(--rojo);
}

.brand small,
.eyebrow,
.hero-showcase .card-info small,
.detail-kicker-label {
  color: var(--rojo);
}

.hero {
  background:
    radial-gradient(circle at 84% 28%, rgba(229, 9, 20, 0.16), transparent 28%),
    radial-gradient(circle at 66% 72%, rgba(255, 38, 53, 0.08), transparent 32%),
    var(--fondo);
}

.hero::before {
  background: radial-gradient(circle, rgba(229, 9, 20, 0.12), transparent 66%);
}

.hero-label {
  border-color: rgba(229, 9, 20, 0.38);
  background: rgba(229, 9, 20, 0.08);
}

.hero p,
.model-info span,
.footer,
.footer-brand p,
.detail-content p,
.catalog-pagination span {
  color: var(--texto-secundario);
}

.showcase-ring {
  border-color: rgba(229, 9, 20, 0.09);
}

.hero-showcase .card-main {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-color: var(--borde);
}

.hero-showcase .card-back,
.model-card::before {
  background: linear-gradient(145deg, rgba(229, 9, 20, 0.72), rgba(229, 9, 20, 0.22));
}

.hero-showcase .card-info b {
  background: var(--fondo-secundario);
  color: var(--blanco);
}

.search-section,
.catalog-section,
.detail-page {
  background: var(--fondo);
}

.search-box,
.filter,
.model-card,
.model-info,
.empty-state,
.empty-card,
.pagination-btn,
.pagination-page,
.social-icon,
.detail-card,
.detail-content {
  background: var(--tarjeta);
}

.model-image-link,
.zoom-stage,
.zoom-stage img {
  background: var(--fondo-secundario);
}

.model-info {
  background: linear-gradient(180deg, var(--tarjeta), var(--fondo-secundario));
}

.model-card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.62), 0 0 28px rgba(229, 9, 20, 0.18);
}

.model-card:hover {
  background:
    linear-gradient(var(--tarjeta), var(--tarjeta)) padding-box,
    conic-gradient(from var(--cv-border-angle), transparent 0deg, var(--rojo) 78deg, var(--rojo-hover) 142deg, transparent 240deg) border-box;
}

.whatsapp-order:hover,
.search-box a:hover,
.button-link:hover,
.whatsapp-button:hover {
  background: var(--rojo-hover);
}

.footer {
  background: var(--fondo-secundario);
  border-top-color: var(--borde);
}

.button-link.secondary {
  background: var(--tarjeta);
  border-color: var(--borde);
  color: var(--blanco);
}
/* Requested blue palette override */
:root {
  --fondo: #070A12;
  --fondo-secundario: #0D1424;
  --tarjeta: #111B2E;
  --azul: #1E6FE8;
  --azul-hover: #2F8BFF;
  --azul-claro: #6DB7FF;
  --azul-neon: #15D9FF;
  --blanco: #FFFFFF;
  --texto-secundario: #A8B6CC;
  --borde: #22304A;

  /* Se mantienen los nombres anteriores para no romper reglas existentes,
     pero ahora apuntan a la paleta azul solicitada. */
  --rojo: var(--azul);
  --rojo-hover: var(--azul-hover);
}

.client-body {
  background: var(--fondo);
}

.site-header {
  background: rgba(7, 10, 18, 0.84);
}

.brand small,
.eyebrow,
.hero-showcase .card-info small,
.detail-kicker-label {
  color: var(--azul-claro);
}

.hero {
  background:
    radial-gradient(circle at 84% 28%, rgba(30, 111, 232, 0.20), transparent 28%),
    radial-gradient(circle at 66% 72%, rgba(21, 217, 255, 0.12), transparent 32%),
    linear-gradient(135deg, #070A12 0%, #0D1424 58%, #071222 100%);
}

.hero::before {
  background: radial-gradient(circle, rgba(21, 217, 255, 0.16), transparent 66%);
}

.hero-label {
  border-color: rgba(109, 183, 255, 0.42);
  background: rgba(30, 111, 232, 0.12);
}

.hero-label i,
.card-badge,
.search-box a,
.whatsapp-order,
.filter:hover,
.filter.active,
.pagination-page.active,
.pagination-btn:not(:disabled):hover,
.pagination-page:hover,
.button-link,
.whatsapp-button,
.social-icon:hover {
  background: var(--azul);
}

.search-box a:hover,
.whatsapp-order:hover,
.button-link:hover,
.whatsapp-button:hover {
  background: var(--azul-hover);
}

.showcase-ring {
  border-color: rgba(30, 111, 232, 0.12);
}

.hero-showcase .card-back,
.model-card::before {
  background: linear-gradient(145deg, rgba(30, 111, 232, 0.76), rgba(21, 217, 255, 0.22));
}

.model-card:hover {
  border-color: rgba(47, 139, 255, 0.48);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.62), 0 0 30px rgba(47, 139, 255, 0.22);
}

.model-card:hover {
  background:
    linear-gradient(var(--tarjeta), var(--tarjeta)) padding-box,
    conic-gradient(from var(--cv-border-angle), transparent 0deg, var(--azul) 78deg, var(--azul-neon) 142deg, transparent 240deg) border-box;
}

.model-image-link::before {
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.26), rgba(47, 139, 255, 0.16) 26%, transparent 48%),
    linear-gradient(135deg, transparent 20%, rgba(21, 217, 255, 0.2), transparent 72%);
}

.model-info h3::after,
.model-info::before {
  background: linear-gradient(90deg, var(--azul), var(--azul-neon));
}

.model-card:hover .model-info h3 {
  text-shadow: 0 0 18px rgba(47, 139, 255, 0.36);
}

.model-card:hover::after {
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 36px rgba(47, 139, 255, 0.08);
}

.footer {
  background: var(--fondo-secundario);
}
/* Header brand cleanup */
html,
body,
.client-body {
  margin: 0;
  background: var(--fondo);
}

.site-header {
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  border-top: 0;
  background: rgba(7, 10, 18, 0.94);
}

.site-header .nav {
  min-height: 76px;
}

.brand {
  min-height: 58px;
}

.brand-mark {
  flex: 0 0 58px;
  background: transparent;
}

.brand > span:last-child {
  display: grid;
  gap: 5px;
}

.brand strong {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2px;
}

.brand small {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: var(--azul-claro);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 4px;
}

.footer .brand small {
  background: transparent !important;
}
/* Blue pagination and menu hover cleanup */
.menu a {
  position: relative;
  padding: 10px 2px;
  color: #d2d9e6;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--azul), var(--azul-neon));
  opacity: 0;
  transition: left 0.24s ease, right 0.24s ease, opacity 0.24s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--blanco);
  text-shadow: 0 0 14px rgba(47, 139, 255, 0.42);
  transform: translateY(-1px);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.pagination-page.active,
.pagination-btn:not(:disabled):hover,
.pagination-page:hover {
  border-color: var(--azul-hover);
  background: var(--azul);
  color: var(--blanco);
  box-shadow: 0 10px 22px rgba(47, 139, 255, 0.22);
}

.pagination-page.active {
  outline: 0;
}

.pagination-btn,
.pagination-page {
  box-shadow: none;
}

.pagination-btn:focus-visible,
.pagination-page:focus-visible {
  outline: 2px solid rgba(109, 183, 255, 0.75);
  outline-offset: 3px;
}
/* Remove remaining red accents */
.filter,
.filter.active,
.filter:hover {
  border-color: var(--azul-hover) !important;
}

.filter.active,
.filter:hover {
  background: var(--azul) !important;
  box-shadow: 0 10px 24px rgba(47, 139, 255, 0.22);
}

.model-card::before,
.model-card:hover::before {
  background: linear-gradient(145deg, rgba(30, 111, 232, 0.78), rgba(21, 217, 255, 0.26)) !important;
}

.model-card:hover {
  border-color: rgba(47, 139, 255, 0.52) !important;
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.62), 0 0 30px rgba(47, 139, 255, 0.24) !important;
}

.model-card:hover::after {
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(109, 183, 255, 0.18),
    inset 0 0 36px rgba(47, 139, 255, 0.1) !important;
}

.model-info::before {
  background: linear-gradient(90deg, transparent, rgba(21, 217, 255, 0.9), transparent) !important;
}

.model-info h3::after {
  background: linear-gradient(90deg, var(--azul), var(--azul-neon)) !important;
}

.model-image-link::before {
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.26), rgba(47, 139, 255, 0.16) 26%, transparent 48%),
    linear-gradient(135deg, transparent 20%, rgba(21, 217, 255, 0.2), transparent 72%) !important;
}

.whatsapp-order,
.whatsapp-order:hover {
  box-shadow: 0 16px 30px rgba(47, 139, 255, 0.28) !important;
}

.pagination-page.active,
.pagination-btn:not(:disabled):hover,
.pagination-page:hover {
  border-color: var(--azul-hover) !important;
  background: var(--azul) !important;
}

.hero-showcase .card-back {
  background: linear-gradient(145deg, rgba(30, 111, 232, 0.72), rgba(21, 217, 255, 0.24)) !important;
}

.hero-showcase .card-badge,
.hero-label i,
.search-box a,
.card-badge {
  background: var(--azul) !important;
}
/* Footer icons blue cleanup */
.footer .social-icon,
.footer-contact .social-icon,
.footer-social .social-icon {
  border-color: var(--borde) !important;
  background: var(--tarjeta) !important;
  color: var(--blanco);
  box-shadow: none;
}

.footer .social-icon:hover,
.footer .social-icon:focus-visible,
.footer-contact .social-icon:hover,
.footer-contact .social-icon:focus-visible,
.footer-social .social-icon:hover,
.footer-social .social-icon:focus-visible {
  border-color: var(--azul-hover) !important;
  background: var(--azul) !important;
  color: var(--blanco);
  box-shadow: 0 12px 24px rgba(47, 139, 255, 0.24);
  transform: translateY(-2px);
}

.footer .social-icon:focus-visible,
.footer-contact .social-icon:focus-visible,
.footer-social .social-icon:focus-visible {
  outline: 2px solid rgba(109, 183, 255, 0.72);
  outline-offset: 3px;
}
/* Quitar animaciones de cards de diseno */
.model-grid {
  perspective: none !important;
}

.model-card,
.model-card.is-visible {
  opacity: 1 !important;
  isolation: auto !important;
  overflow: hidden !important;
  transform: none !important;
  animation: none !important;
  background: var(--tarjeta) !important;
  border: 1px solid var(--borde) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3) !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.model-card::before,
.model-card::after,
.model-image-link::before,
.model-image-link::after,
.model-info::before,
.model-info h3::after,
.whatsapp-order::before {
  content: none !important;
  display: none !important;
}

.model-card:hover,
.model-card:hover::before,
.model-card:hover::after {
  transform: none !important;
  animation: none !important;
}

.model-card:hover {
  background: var(--tarjeta) !important;
  border-color: var(--azul-hover) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3) !important;
}

.model-card img,
.model-card:hover img {
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

.model-card:hover .model-info h3 {
  text-shadow: none !important;
}

.model-card:hover .model-info span {
  color: #99acd0 !important;
}

.model-card:hover .whatsapp-order {
  transform: none !important;
  box-shadow: 0 12px 24px rgba(47, 139, 255, 0.22) !important;
}
