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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset para header sticky */
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #020617;
  color: #f9fafb;
}

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

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

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 85px;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-right: 2.5rem;
  margin-left: 1rem;
  padding: 1.2rem 0;
}

.logo-img {
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.75rem;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 1.5rem;
  margin-left: 1rem;
  padding: 1.2rem 0;
}

.header-phone svg {
  color: #38bdf8;
  flex-shrink: 0;
}

.phone-number {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav a svg {
  flex-shrink: 0;
  color: #38bdf8;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover svg {
  color: #0ea5e9;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  transition: width 0.22s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  height: 2px;
  background: #f9fafb;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-open .main-nav {
  max-height: 260px;
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, #0f172a, #020617 52%),
    radial-gradient(circle at 110% 20%, #0b1120, #020617 60%);
  overflow: hidden;
}


.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(circle at 75% 10%, rgba(37, 99, 235, 0.22), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 1));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.1rem);
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 1.8rem;
  color: rgba(226, 232, 240, 0.92);
  font-size: 1.15rem;
}

.hero-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.hero-button-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
  border: 2px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(56, 189, 248, 0.1);
  position: relative;
}

.hero-button-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(37, 99, 235, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.hero-button-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(56, 189, 248, 0.4), 0 0 60px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.9);
}

.hero-button-card:hover::before {
  opacity: 1;
}

.hero-button-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 450px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-button-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-button-card:hover .hero-button-image::after {
  opacity: 0.5;
}

.hero-button-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.95) contrast(1.05);
}

.hero-button-card:hover .hero-button-image img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.1);
}

.hero-button-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(37, 99, 235, 0.35));
  color: rgba(56, 189, 248, 0.9);
}

.hero-button-placeholder svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
}

.hero-button-content {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
  transition: background 0.4s ease;
}

.hero-button-card:hover .hero-button-content {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
}

.hero-button-content h2 {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f9fafb;
  transition: color 0.3s ease;
}

.hero-button-card:hover .hero-button-content h2 {
  color: #60a5fa;
}

.hero-button-content p {
  margin: 0;
  font-size: 1.18rem;
  color: rgba(209, 213, 219, 0.95);
  line-height: 1.65;
  transition: color 0.3s ease;
}

.hero-button-card:hover .hero-button-content p {
  color: rgba(226, 232, 240, 1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9, #1d4ed8);
  border-color: rgba(37, 99, 235, 0.4);
  color: #0b1120;
  font-weight: 600;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.78);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  justify-content: center;
  margin: 0 auto;
}

.hero-badges span {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-segments {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.hero-segment {
  padding: 1rem 0.95rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, #020617, #0b1120);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-segment h2 {
  margin: 0;
  font-size: 1.2rem;
}

.hero-segment p {
  margin: 0;
  color: rgba(209, 213, 219, 0.94);
}

.hero-segment ul {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-segment ul li {
  position: relative;
  padding-left: 0.9rem;
}

.hero-segment ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.hero-segment-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 340px;
  padding: 1.5rem 1.4rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.9);
}

.hero-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.92);
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.hero-form label {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.hero-form input,
.hero-form select {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  padding: 0.55rem 0.7rem;
  font-size: 0.84rem;
}

.hero-form small {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Secciones generales */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #020617 55%, #020617 100%);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.section-header {
  max-width: 620px;
}

.section-header-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.85rem;
}

.section-header p {
  margin: 0;
  color: rgba(209, 213, 219, 0.92);
  font-size: 1.1rem;
}

.section-header-centered p {
  margin: 0 0 1.5rem;
}

/* Botón scroll sutil */
.btn-scroll-down {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 0.7rem;
  color: rgba(56, 189, 248, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-scroll-down:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.btn-scroll-down svg {
  transition: transform 0.3s ease;
}

.btn-scroll-down:hover svg {
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .section-header-centered {
    max-width: 100%;
  }

  .btn-scroll-down {
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
  }
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.two-cols.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.section-text h2 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
}

.section-text p {
  margin: 0 0 1.4rem;
  color: rgba(209, 213, 219, 0.92);
  font-size: 0.96rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-cta {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-link-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
}

.btn-link-ver-mas:hover {
  color: #0ea5e9;
  background: rgba(56, 189, 248, 0.1);
  transform: translateX(2px);
}

.btn-link-ver-mas svg {
  transition: transform 0.25s ease;
}

.btn-link-ver-mas:hover svg {
  transform: translateX(3px);
}

.section-media {
  display: flex;
  justify-content: flex-end;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature {
  padding: 0.9rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.85rem;
}

.feature h3 {
  margin: 0 0 0.28rem;
  font-size: 0.9rem;
}

.feature p {
  margin: 0;
  color: rgba(209, 213, 219, 0.92);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.pills span {
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.9rem;
}

.stats-card {
  width: 100%;
  max-width: 420px;
  padding: 2rem 1.8rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #1e3a8a, #1e40af, #0ea5e9, #38bdf8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2), 0 0 0 1px rgba(56, 189, 248, 0.1);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.95), rgba(14, 165, 233, 0.9), rgba(56, 189, 248, 0.85));
  z-index: 0;
}

.stats-card > * {
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Gaming cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  padding: 0;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(148, 163, 184, 0.1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(37, 99, 235, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(56, 189, 248, 0.3), 0 0 40px rgba(56, 189, 248, 0.15);
}

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

.card > * {
  position: relative;
  z-index: 1;
}

.card-image {
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .card-image::after {
  opacity: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-content {
  padding: 1.5rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Estilos para cards sin card-content wrapper (contenido directo) */
.card > h3:first-child {
  padding: 2rem 2rem 0.5rem;
  margin: 0;
}

.card > p:not(:last-child) {
  padding: 0 2rem;
  margin: 0;
}

.card > p:last-child {
  padding: 0 2rem 2rem;
  margin: 0;
}

.card > .card-list {
  padding: 0.5rem 2rem 2rem;
  margin: 0;
}

.card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.3;
}

.card p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(209, 213, 219, 0.95);
  line-height: 1.5;
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: rgba(209, 213, 219, 0.98);
}

.card-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: 700;
  font-size: 1rem;
}

.card .btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card:hover .btn {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

/* PC Hogareñas Section */
.pc-hogareñas-section {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-align: center;
}

.pc-hogareñas-section h3 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.pc-hogareñas-section p {
  margin: 0 0 1.5rem;
  color: rgba(209, 213, 219, 0.9);
  font-size: 0.95rem;
}

.pc-hogareñas-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-large span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #020617;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

.modal-content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 200px);
}

.modal-loading {
  text-align: center;
  padding: 3rem;
  color: rgba(148, 163, 184, 0.9);
}

.modal-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.modal-product-card {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-product-card:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.5);
}

.modal-product-code {
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.8);
  font-family: 'Courier New', monospace;
}

.modal-product-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #f9fafb;
}

.modal-product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #38bdf8;
  margin: 0.3rem 0;
}

.modal-product-stock {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
}

.modal-product-stock.in-stock {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.modal-product-stock.out-of-stock {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.modal-product-add {
  width: 100%;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(37, 99, 235, 0.6);
  background: rgba(15, 23, 42, 1);
  color: #bfdbfe;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.modal-product-add:hover:not(:disabled) {
  background: rgba(37, 99, 235, 0.9);
  border-color: rgba(56, 189, 248, 0.9);
  transform: translateY(-1px);
}

.modal-product-add.active {
  background: #1d4ed8;
  color: #eff6ff;
  border-color: #3b82f6;
}

.modal-product-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-cart-summary {
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
  min-height: 1.5rem;
}

.modal-cart-summary p {
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

/* Buscador y Filtros Wrapper */
.search-filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1rem;
}

@media (min-width: 769px) {
  .search-filters-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .search-container-full {
    flex: 1;
    min-width: 0;
  }

  .filters-container {
    flex-shrink: 0;
    width: auto;
  }

  .filters-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
  }

  .filter-group {
    min-width: 180px;
  }
}

/* Buscador y Filtros Compacto en una línea */
.search-filters-compact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  width: 100%;
  flex-wrap: wrap;
}

.search-compact-box {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.7rem;
  padding: 0.65rem 1rem;
  transition: all 0.2s ease;
  gap: 0.6rem;
}

.search-compact-box:focus-within {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.search-compact-icon {
  flex-shrink: 0;
  color: rgba(56, 189, 248, 0.8);
  width: 18px;
  height: 18px;
}

.search-compact-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #f9fafb;
  font-size: 0.9rem;
  outline: none;
  padding: 0;
  min-width: 0;
  font-weight: 400;
}

.search-compact-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.search-compact-clear {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.2);
  color: #f9fafb;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.search-compact-clear:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.search-compact-clear svg {
  width: 14px;
  height: 14px;
}

.filter-group-compact {
  flex-shrink: 0;
}

.filter-select-compact {
  padding: 0.65rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  min-width: 160px;
}

.filter-select-compact:hover {
  border-color: rgba(56, 189, 248, 0.5);
}

.filter-select-compact:focus {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

@media (max-width: 768px) {
  .search-filters-compact {
    flex-direction: column;
    gap: 0.65rem;
  }

  .search-compact-box {
    width: 100%;
    min-width: 100%;
  }

  .filter-group-compact {
    width: 100%;
  }

  .filter-select-compact {
    width: 100%;
    min-width: 100%;
  }
}

.search-main-box:focus-within {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15), 0 8px 30px rgba(0, 0, 0, 0.4);
  background: rgba(15, 23, 42, 1);
}

.search-main-icon {
  flex-shrink: 0;
  color: rgba(56, 189, 248, 0.9);
  width: 20px;
  height: 20px;
}

.search-main-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #f9fafb;
  font-size: 0.95rem;
  outline: none;
  padding: 0;
  min-width: 0;
  font-weight: 400;
}

.search-main-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.search-main-clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.2);
  color: #f9fafb;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.search-main-clear:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  transform: scale(1.1);
}

.search-main-clear svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .search-main-container {
    margin: 0.75rem auto 1rem;
    padding: 0 1rem;
  }

  .search-main-box {
    padding: 0.75rem 1rem;
    border-radius: 0.85rem;
  }

  .search-main-input {
    font-size: 0.9rem;
  }

  .search-main-icon {
    width: 18px;
    height: 18px;
  }
}

/* Buscador completo */
.search-container-full {
  width: 100%;
  flex-shrink: 0;
}

.search-box-full {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.85rem;
  padding: 0.7rem 1rem;
  transition: all 0.2s ease;
  gap: 0.65rem;
}

.search-box-full:focus-within {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.search-box-full .search-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #f9fafb;
  font-size: 0.95rem;
  outline: none;
  padding: 0;
  order: 1;
  min-width: 0;
}

.search-box-full .search-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.search-box-full .search-clear {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.2);
  color: #f9fafb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.2s ease;
  order: 2;
}

.search-box-full .search-clear:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.search-box-full .search-icon {
  flex-shrink: 0;
  color: rgba(148, 163, 184, 0.8);
  order: 3;
  width: 20px;
  height: 20px;
}

.search-container-full .search-results-info {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
  min-height: 1.2rem;
}

.total-productos-info {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 0.7rem;
  text-align: center;
  color: rgba(229, 231, 235, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.total-productos-info strong {
  color: #38bdf8;
  font-weight: 700;
}

.clear-filters-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 0.55rem;
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-clear-filters:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.5);
  color: #0ea5e9;
  transform: translateY(-1px);
}

.btn-clear-filters svg {
  flex-shrink: 0;
}

/* Filtros */
.filters-container {
  width: 100%;
  flex-shrink: 0;
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.9);
}

.filter-select {
  padding: 0.6rem 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.filter-select:hover {
  border-color: rgba(56, 189, 248, 0.5);
}

.filter-select:focus {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

/* Buscador y Carrito */
.search-cart-container {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.search-container {
  width: 100%;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: rgba(148, 163, 184, 0.7);
  pointer-events: none;
  z-index: 1;
}

.search-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}

.search-input:focus {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
  background: rgba(15, 23, 42, 1);
}

.search-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.search-clear {
  position: absolute;
  right: 0.8rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.2);
  color: rgba(148, 163, 184, 0.9);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.search-clear:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.search-results-info {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
  min-height: 1.2rem;
}

/* Gaming Section en Tienda */
.gaming-section {
  margin: 2.5rem 0;
}

.armado-access-section {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.armado-access-card {
  width: 100%;
  max-width: 800px;
  padding: 2rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.armado-access-content {
  text-align: center;
}

.armado-access-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: #f9fafb;
}

.armado-access-content p {
  font-size: 1.05rem;
  color: rgba(209, 213, 219, 0.9);
}

/* Versión subtítulo (arriba) */
.armado-access-subtitle {
  margin: 1.5rem 0 2rem;
  justify-content: flex-start;
}

.armado-access-subtitle .armado-access-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.armado-access-subtitle .armado-access-text {
  flex: 1;
  min-width: 0;
}

.armado-access-subtitle .armado-access-text h3 {
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
  color: #f9fafb;
  font-weight: 600;
}

.armado-access-subtitle .armado-access-text p {
  font-size: 0.95rem;
  color: rgba(209, 213, 219, 0.85);
  margin: 0;
  line-height: 1.5;
}

.armado-access-subtitle .armado-access-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .armado-access-subtitle .armado-access-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }

  .armado-access-subtitle .armado-access-text h3 {
    font-size: 1.15rem;
  }

  .armado-access-subtitle .armado-access-text p {
    font-size: 0.9rem;
  }

  .armado-access-subtitle .armado-access-btn {
    width: 100%;
  }
}
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.tienda-separator {
  margin: 2.5rem 0 1.5rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.4s ease;
  scroll-margin-top: 100px; /* Offset para scroll suave */
}

/* Efecto highlight cuando se hace scroll hasta la sección */
.tienda-separator:target,
.tienda-separator.highlight {
  border-top-color: rgba(56, 189, 248, 0.5);
  border-bottom-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.05);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
  animation: highlightPulse 1.5s ease-out;
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 0 0 rgba(56, 189, 248, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
  }
}

.tienda-separator h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  color: #f9fafb;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tienda-separator p {
  font-size: 1.05rem;
  color: rgba(209, 213, 219, 0.9);
  margin: 0;
  text-align: center;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Lista de precios */
.price-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.98);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-item:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}

.price-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-item-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-item h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: #f9fafb;
}

.price-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.price-item-code {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.8);
  font-family: 'Courier New', monospace;
}

.price-item-marca,
.price-item-categoria {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.price-item-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-item-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #38bdf8;
}

.price-item-stock {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 500;
}

.price-item-stock.in-stock {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.price-item-stock.out-of-stock {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.price-item p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(209, 213, 219, 0.92);
}

.price-add {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(37, 99, 235, 0.8);
  background: rgba(15, 23, 42, 1);
  color: #bfdbfe;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.price-add:hover:not(:disabled) {
  background: rgba(37, 99, 235, 0.9);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.6);
  border-color: rgba(56, 189, 248, 0.9);
}

.price-add.active {
  background: #1d4ed8;
  color: #eff6ff;
  border-color: #3b82f6;
}

.price-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(148, 163, 184, 0.3);
}

/* Carrito flotante móvil */
.cart-float-mobile {
  position: fixed;
  top: 88px;
  right: 1rem;
  z-index: 45;
  display: none;
}

.cart-float-btn-mobile {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border: 2px solid rgba(56, 189, 248, 0.3);
  color: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
  transition: all 0.2s ease;
  position: relative;
}

.cart-float-btn-mobile:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.7);
}

.cart-badge-mobile {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  border: 2px solid #020617;
}

/* Carrito siempre visible (desktop) */
.cart-summary-box {
  width: 100%;
}

.cart-summary-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.cart-summary-btn:hover {
  border-color: rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 1);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}

.cart-summary-btn:active {
  transform: translateY(0);
}

.cart-summary-box.has-items .cart-summary-btn {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(56, 189, 248, 0.1));
  border-color: rgba(56, 189, 248, 0.5);
}

.cart-summary-btn svg {
  flex-shrink: 0;
  color: #38bdf8;
}

.cart-summary-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cart-summary-label {
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.9);
  font-weight: 500;
}

.cart-summary-count {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f9fafb;
}

.cart-summary-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
  margin-left: auto;
}

.cart-badge-inline {
  min-width: 24px;
  height: 24px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  border: 2px solid #020617;
}

/* Modal del carrito */
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cart-modal-overlay.active {
  display: flex;
}

.cart-modal {
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  background: #020617;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.cart-modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.cart-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

.cart-modal-content {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  max-height: calc(80vh - 180px);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 0.8rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.cart-item-info {
  flex: 1;
}

.cart-item-sku {
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.3rem;
}

.cart-item-details {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

.cart-item-subtotal {
  font-weight: 700;
  color: #38bdf8;
  font-size: 1.1rem;
}

.cart-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-total {
  text-align: right;
  font-size: 1.2rem;
  color: #f9fafb;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.cart-total strong {
  color: #38bdf8;
  font-size: 1.4rem;
}

/* Controles de cantidad */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(37, 99, 235, 0.7);
  background: rgba(15, 23, 42, 1);
  color: #bfdbfe;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
}

.quantity-btn:hover:not(:disabled) {
  background: rgba(37, 99, 235, 0.9);
  border-color: rgba(56, 189, 248, 0.9);
  transform: scale(1.05);
}

.quantity-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.quantity-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quantity-value {
  min-width: 2.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  padding: 0 0.5rem;
}

.price-footer {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  justify-content: space-between;
  font-size: 0.86rem;
}

.price-footer button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Footer */
.footer {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  background: #020617;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  font-size: 0.86rem;
}

.footer h3 {
  margin: 0 0 0.4rem;
}

.footer h4 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
  color: rgba(148, 163, 184, 0.96);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-list span {
  font-weight: 500;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(37, 99, 235, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  color: #f9fafb;
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.5), 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.social-link:hover::before {
  opacity: 1;
}

.social-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-link:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.25));
  border-color: rgba(56, 189, 248, 0.5);
  transform: scale(1.05);
}

.social-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.social-link span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.social-link-email:hover {
  border-color: rgba(59, 130, 246, 0.6);
}

.social-link-email:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.25));
  border-color: rgba(59, 130, 246, 0.5);
}

.social-link-email:hover svg {
  color: #60a5fa;
}

.social-link-instagram:hover {
  border-color: rgba(236, 72, 153, 0.6);
}

.social-link-instagram:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.25));
  border-color: rgba(236, 72, 153, 0.5);
}

.social-link-instagram:hover svg {
  color: #f472b6;
}

.social-link-maps:hover {
  border-color: rgba(34, 197, 94, 0.6);
}

.social-link-maps:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.25));
  border-color: rgba(34, 197, 94, 0.5);
}

.social-link-maps:hover svg {
  color: #4ade80;
}

.social-link-consultoria:hover {
  border-color: rgba(59, 130, 246, 0.6);
}

.social-link-consultoria:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.25));
  border-color: rgba(59, 130, 246, 0.5);
}

.social-link-consultoria:hover svg {
  color: #60a5fa;
}

.social-link-servicio:hover {
  border-color: rgba(34, 197, 94, 0.6);
}

.social-link-servicio:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.25));
  border-color: rgba(34, 197, 94, 0.5);
}

.social-link-servicio:hover svg {
  color: #4ade80;
}

.social-link-gaming:hover {
  border-color: rgba(168, 85, 247, 0.6);
}

.social-link-gaming:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
}

.social-link-gaming:hover svg {
  color: #a78bfa;
}

.social-link-arrepentimiento:hover {
  border-color: rgba(251, 146, 60, 0.6);
}

.social-link-arrepentimiento:hover .social-icon-wrapper {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(234, 88, 12, 0.25));
  border-color: rgba(251, 146, 60, 0.5);
}

.social-link-arrepentimiento:hover svg {
  color: #fb923c;
}


.footer-bottom {
  margin-top: 1.8rem;
  padding: 0.8rem 0 1.6rem;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(100, 116, 139, 0.96);
}

/* Página de Arrepentimiento */
.arrepentimiento-container {
  max-width: 700px;
  margin: 2rem auto 0;
}

.arrepentimiento-info {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.arrepentimiento-info h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: #f9fafb;
}

.arrepentimiento-info p {
  margin: 0 0 1rem;
  color: rgba(209, 213, 219, 0.9);
  line-height: 1.6;
}

.arrepentimiento-info p:last-child {
  margin-bottom: 0;
}

.arrepentimiento-form {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.required {
  color: #f87171;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.6rem;
  color: #f9fafb;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-help {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.8);
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.arrepentimiento-legal {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.arrepentimiento-legal h4 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #f9fafb;
}

.arrepentimiento-legal p {
  margin: 0 0 1rem;
  color: rgba(209, 213, 219, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

.arrepentimiento-legal p:last-child {
  margin-bottom: 0;
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.65);
  border: none;
  cursor: pointer;
  z-index: 50;
  text-decoration: none;
  transition: all 0.25s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(22, 163, 74, 0.8);
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .hero-buttons-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero-button-image {
    aspect-ratio: 16 / 10;
    min-height: 280px;
  }

  .hero-button-image img {
    min-height: 280px;
  }

  .hero-button-placeholder {
    font-size: 5rem;
  }

  .hero-button-placeholder svg {
    width: 64px;
    height: 64px;
  }

  .hero-button-content {
    padding: 1.6rem 1.4rem;
  }

  .hero-button-content h2 {
    font-size: 1.5rem;
  }

  .two-cols,
  .two-cols.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-media {
    justify-content: flex-start;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .card {
    border-radius: 1.2rem;
  }

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

  .card-content {
    padding: 1.3rem 1.3rem 1.6rem;
    gap: 0.9rem;
  }

  /* Estilos responsive para cards sin card-content wrapper */
  .card > h3:first-child {
    padding: 1.6rem 1.6rem 0.4rem;
  }

  .card > p:not(:last-child) {
    padding: 0 1.6rem;
  }

  .card > p:last-child {
    padding: 0 1.6rem 1.6rem;
  }

  .card > .card-list {
    padding: 0.4rem 1.6rem 1.6rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 1rem;
  }

  .card-list {
    font-size: 0.95rem;
    gap: 0.65rem;
  }

  .card-list li {
    padding-left: 1.4rem;
  }

  .card .btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.3rem;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.3rem;
  }

  .footer-social {
    margin-top: 0.8rem;
    gap: 0.5rem;
  }

  .social-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    gap: 0.6rem;
  }

  .social-icon-wrapper {
    width: 28px;
    height: 28px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .social-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .arrepentimiento-container {
    margin: 1.5rem auto 0;
  }

  .arrepentimiento-info,
  .arrepentimiento-form,
  .arrepentimiento-legal {
    padding: 1.5rem;
  }

  .arrepentimiento-info h3 {
    font-size: 1.2rem;
  }

  .form-actions .btn {
    min-width: 100%;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 1.5rem;
  }

  .topbar-inner {
    height: 70px;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .logo {
    margin-right: 0.5rem;
    padding: 0.5rem 0;
  }

  .logo-img {
    max-height: 50px;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 70px;
    background: rgba(2, 6, 23, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 1.6rem 0.8rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.6);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.18s ease, opacity 0.18s ease;
  }

  .main-nav a {
    padding: 0.25rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-button-image {
    aspect-ratio: 16 / 10;
    min-height: 250px;
  }

  .hero-button-image img {
    min-height: 250px;
  }

  .hero-button-placeholder {
    font-size: 4.5rem;
  }

  .hero-button-placeholder svg {
    width: 56px;
    height: 56px;
  }

  .hero-button-content {
    padding: 1.4rem 1.2rem;
  }

  .hero-button-content h2 {
    font-size: 1.4rem;
  }

  .modal-container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header,
  .modal-content,
  .modal-footer {
    padding: 1rem 1.2rem;
  }

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

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

  .search-filters-wrapper {
    margin: 1.5rem 0;
  }

  .search-container-full {
    margin: 0;
  }

  /* Mostrar carrito flotante en móvil */
  .cart-float-mobile {
    display: block;
  }

  /* Ocultar carrito desktop en móvil */
  .cart-summary-box {
    display: none;
  }

  .cart-summary-btn {
    padding: 0.9rem 1.2rem;
  }

  .cart-summary-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .cart-summary-total {
    margin-left: 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    padding: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    gap: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }
}

/* Carrusel de imágenes */
.carousel-container {
  margin: 2rem 0;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.carousel-placeholder {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.8);
  color: rgba(148, 163, 184, 0.7);
  padding: 2rem;
}

.carousel-placeholder svg {
  opacity: 0.5;
}

.carousel-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.6);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(148, 163, 184, 0.7);
}

.carousel-dot.active {
  background: #38bdf8;
  width: 24px;
}

/* Redes Sociales */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-card {
  padding: 2rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.6);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.98));
}

.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.15));
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.social-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f9fafb;
}

.social-card p {
  margin: 0;
  color: rgba(209, 213, 219, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-link {
  margin-top: auto;
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-card:hover .social-link {
  color: #7dd3fc;
}

@media (max-width: 768px) {
  .carousel-slide img,
  .carousel-placeholder {
    height: 350px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

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

/* Reseñas de Google */
.reviews-container {
  margin-top: 1rem;
}

.google-reviews-widget {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 1.2rem;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  padding: 1.8rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.6);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.98));
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-author strong {
  color: #f9fafb;
  font-size: 1.05rem;
  font-weight: 600;
}

.review-date {
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.85rem;
}

.review-text {
  margin: 0;
  color: rgba(209, 213, 219, 0.95);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.review-source svg {
  width: 18px;
  height: 18px;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .review-card {
    padding: 1.5rem;
  }
}

/* Formulario de Armado de PC */
.section-header-icon {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 2.2rem;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
}

.armado-form-container {
  margin-top: 3rem;
  padding: 2.5rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.armado-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.armado-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.armado-field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.armado-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.95);
  margin-bottom: 0.2rem;
}

.armado-label-icon {
  font-size: 1.3rem;
}

.armado-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  border: 2px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.armado-input:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

.armado-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
  background: rgba(15, 23, 42, 0.95);
}

.armado-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.armado-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

@media (max-width: 768px) {
  .section-header-icon {
    font-size: 1.8rem;
    margin-right: 0.6rem;
  }

  .armado-form-container {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .armado-form {
    gap: 2rem;
  }

  .armado-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .armado-field {
    gap: 0.7rem;
  }

  .armado-input {
    padding: 0.9rem 1rem;
  }

  .armado-actions {
    flex-direction: column;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

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


