/*
 Theme Name:   Computex Redesign
 Theme URI:    https://computex.com.py
 Description:  Child theme de Hello Elementor para el redesign moderno de Computex
 Author:       Computex
 Author URI:   https://computex.com.py
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v3 or later
 Text Domain:  computex-redesign
*/

/* ============================================
   COMPUTEX REDESIGN - Child Theme Styles
   ============================================ */

/* ============================================
   VARIABLES GLOBALES (sobrescriben Elementor Kit)
   ============================================ */
:root {
  /* Colores principales */
  --computex-primary: #1A73E8;
  --computex-primary-dark: #1557B0;
  --computex-primary-light: #E8F0FE;
  --computex-secondary: #E63946;
  --computex-secondary-dark: #C1122A;
  --computex-dark: #1A1A2E;
  --computex-dark-secondary: #16213E;
  --computex-light: #F8F9FA;
  --computex-lighter: #FFFFFF;
  --computex-text: #202124;
  --computex-text-secondary: #5F6368;
  --computex-success: #34A853;
  --computex-warning: #FBBC04;
  --computex-border: #DADCE0;

  /* Sobrescribir colores globales de Elementor */
  --e-global-color-primary: #1A73E8;
  --e-global-color-secondary: #E63946;
  --e-global-color-text: #202124;

  /* Espaciado */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Bordes */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Sombras */
  --computex-shadow: rgba(26, 115, 232, 0.15);
  --computex-shadow-dark: rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--computex-text);
  background: var(--computex-lighter);
  line-height: 1.6;
}

/* ============================================
   HEADER MODERNO
   ============================================ */
.site-header {
  background: var(--computex-lighter) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .site-branding img {
  max-height: 36px;
  width: auto;
}

/* Promo bar compacto */
.computex-header-promo {
  padding: 6px 16px;
  font-size: 0.75rem;
  background: var(--computex-dark);
}

.computex-header-main {
  padding: 8px 24px;
  gap: 16px;
}

.computex-header-nav-row {
  padding: 0 24px;
  min-height: 44px;
}

.computex-mega-menu > li > a {
  padding: 10px 12px;
  font-size: 0.82rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(230, 57, 70, 0.7) 50%,
    rgba(26, 26, 46, 0.85) 100%
  );
  z-index: 1;
}

.hero-section .elementor-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--computex-lighter);
}

.hero-content h1,
.hero-content h2 {
  color: var(--computex-lighter) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.1rem;
}

/* ============================================
   BOTONES MODERNOS
   ============================================ */
.elementor-button {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  border-radius: var(--radius-md) !important;
  padding: 14px 28px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  box-shadow: 0 2px 8px var(--computex-shadow) !important;
}

.elementor-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--computex-shadow) !important;
  background-color: var(--computex-primary-dark) !important;
}

.elementor-button-primary,
.elementor-button.elementor-button {
  background-color: var(--computex-primary) !important;
  color: var(--computex-lighter) !important;
}

.elementor-button-secondary {
  background-color: var(--computex-secondary) !important;
  color: var(--computex-lighter) !important;
}

/* ============================================
   SECCIÓN CATEGORÍAS
   ============================================ */
.categories-section {
  padding: var(--space-3xl) 0;
  background: var(--computex-light);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px var(--computex-shadow-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
  color: var(--computex-lighter);
}

.category-card .category-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  color: var(--computex-lighter);
}

.category-card .category-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================
   SECCIÓN PRODUCTOS DESTACADOS
   ============================================ */
.products-section {
  padding: var(--space-3xl) 0;
  background: var(--computex-lighter);
}

.section-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: var(--computex-dark) !important;
  font-size: 2rem !important;
  margin-bottom: var(--space-xl) !important;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--computex-primary);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/* ============================================
   TARJETA DE PRODUCTO
   ============================================ */
.product-card {
  background: var(--computex-lighter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--computex-shadow-dark);
  transition: all 0.3s ease;
  border: 1px solid var(--computex-border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  border-color: var(--computex-primary);
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--computex-light);
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: var(--space-md);
}

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

.product-card .product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--computex-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-card .product-wishlist {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  background: var(--computex-lighter);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--computex-shadow-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.product-card:hover .product-wishlist {
  opacity: 1;
}

.product-card .product-wishlist:hover {
  background: var(--computex-secondary);
  color: white;
  transform: scale(1.1);
}

.product-card .product-info {
  padding: var(--space-md);
}

.product-card .product-category {
  font-size: 0.75rem;
  color: var(--computex-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.product-card .product-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--computex-text);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--computex-primary);
  margin-bottom: var(--space-md);
}

.product-card .product-price .old-price {
  font-size: 0.85rem;
  color: var(--computex-text-secondary);
  text-decoration: line-through;
  margin-left: var(--space-sm);
}

.product-card .btn-add-cart {
  width: 100%;
  background: var(--computex-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px var(--space-md);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.product-card .btn-add-cart:hover {
  background: var(--computex-primary-dark);
}

.product-card.out-of-stock .product-image img {
  filter: grayscale(100%);
  opacity: 0.6;
}

.product-card.out-of-stock .btn-add-cart {
  background: var(--computex-text-secondary);
  cursor: not-allowed;
}

/* ============================================
   GALERÍA DE MARCAS
   ============================================ */
.brands-section {
  padding: var(--space-2xl) 0;
  background: var(--computex-light);
}

.brands-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 16, 29, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(33, 150, 243, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(230, 57, 70, 0.08), transparent 22%),
    #ffffff;
  box-shadow: 0 20px 42px rgba(10, 22, 40, 0.08);
}

.brands-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(8, 16, 29, 0.08);
}

.brands-showcase-titlewrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brands-showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
}

.brands-showcase-title {
  margin: 0;
  color: #050505;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.brands-showcase-copy {
  margin: 4px 0 0;
  color: var(--computex-text-secondary);
}

.brands-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-weight: 700;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0 26px;
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  animation: computexBrandLoop 34s linear infinite;
}

.brands-marquee-group {
  display: flex;
  gap: 18px;
  padding-inline: 18px;
  flex: 0 0 auto;
}

.brand-marquee-card {
  width: 208px;
  min-width: 208px;
  min-height: 120px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(8, 16, 29, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  box-shadow: 0 16px 30px rgba(10, 22, 40, 0.06);
}

.brand-mark-name {
  color: var(--brand-accent, #111111);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand-mark-tag {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 600;
}

.brands-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-fade.is-left {
  left: 0;
  background: linear-gradient(90deg, #ffffff 8%, rgba(255, 255, 255, 0));
}

.brands-marquee-fade.is-right {
  right: 0;
  background: linear-gradient(270deg, #ffffff 8%, rgba(255, 255, 255, 0));
}

@keyframes computexBrandLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50%));
  }
}

/* ============================================
   TRUST SIGNALS
   ============================================ */
.trust-section {
  padding: var(--space-2xl) 0;
  background: var(--computex-lighter);
  border-top: 1px solid var(--computex-border);
  border-bottom: 1px solid var(--computex-border);
}

.trust-item {
  text-align: center;
  padding: var(--space-lg);
}

.trust-item .trust-icon {
  width: 64px;
  height: 64px;
  background: var(--computex-primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: var(--computex-primary);
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: var(--computex-primary);
  color: white;
  transform: scale(1.1);
}

.trust-item .trust-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--computex-dark);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.trust-item .trust-desc {
  font-size: 0.85rem;
  color: var(--computex-text-secondary);
}

/* ============================================
   FOOTER MODERNO
   ============================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(230, 57, 70, 0.18), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #0f172a 52%, #121826 100%) !important;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(56px, 7vw, 84px) 0 28px;
}

.site-footer.computex-footer,
.site-footer.computex-footer:not(.dynamic-footer) {
  max-width: 100% !important;
  width: 100vw !important;
  padding-inline: 0 !important;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.03), transparent 30%);
  pointer-events: none;
}

.computex-footer-shell {
  position: relative;
  z-index: 1;
  width: min(var(--computex-shell-width, 1360px), calc(100% - var(--computex-shell-gutter, 32px)));
  margin: 0 auto;
}

.computex-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.computex-footer-brand,
.computex-footer-card,
.computex-footer-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 30, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.computex-footer-brand {
  padding: 32px;
  border-radius: 28px;
}

.computex-footer-logo img {
  max-height: 46px;
  width: auto;
}

.computex-footer-title {
  display: inline-block;
  color: var(--computex-lighter) !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.computex-footer-copy {
  margin: 20px 0 0;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.computex-footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.computex-footer-pills span,
.computex-footer-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--computex-lighter) !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.computex-footer-card {
  padding: 28px 24px;
  border-radius: 24px;
}

.computex-footer-card h3,
.computex-footer-contact h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.computex-footer-links,
.computex-footer-links .menu,
.computex-footer-links .sub-menu,
.computex-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.computex-footer-links li + li,
.computex-footer-contact-list li + li {
  margin-top: 14px;
}

.computex-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.computex-footer-links a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--computex-primary), var(--computex-secondary));
  box-shadow: 0 0 16px rgba(26, 115, 232, 0.35);
}

.computex-footer-links a:hover {
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--computex-primary), var(--computex-secondary));
  border-color: transparent;
  transform: translateY(-4px);
}

.computex-footer-contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.computex-footer-contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.computex-footer-contact-list span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.computex-footer-contact-list p,
.computex-footer-contact-list a {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.computex-footer-cta {
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.computex-footer-cta strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.computex-footer-cta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.computex-footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--computex-secondary), #ff6b7a);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(230, 57, 70, 0.28);
}

.computex-footer-cta a:hover {
  transform: translateY(-2px);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 26px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom p {
  margin: 0;
}

.computex-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

/* ============================================
   WHATSAPP BOTÓN FLOTANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  background: #128C7E;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.eael-ext-scroll-to-top-wrap .eael-ext-scroll-to-top-button {
  background-color: var(--computex-primary) !important;
  border-radius: var(--radius-md) !important;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.eael-ext-scroll-to-top-wrap .eael-ext-scroll-to-top-button:hover {
  opacity: 1;
  transform: translateY(-3px);
  background-color: var(--computex-primary-dark) !important;
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 70vh;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .category-card img {
    height: 160px;
  }

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

  .computex-footer-brand {
    grid-column: 1 / -1;
  }

  .computex-footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .computex-footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.75rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .category-card {
    margin-bottom: var(--space-md);
  }

  .computex-footer-shell {
    width: min(100%, calc(100% - var(--computex-shell-gutter-mobile, 20px)));
  }

  .computex-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .computex-footer-brand,
  .computex-footer-card,
  .computex-footer-cta {
    padding: 22px;
    border-radius: 20px;
  }

  .computex-footer-copy {
    max-width: none;
  }

  .computex-footer-pills {
    gap: 8px;
  }

  .computex-footer-pills span,
  .computex-footer-meta span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .category-card img {
    height: 140px;
  }

  .product-card {
    margin-bottom: var(--space-md);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .trust-item {
    padding: var(--space-md);
  }

  .trust-item .trust-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .trust-item .trust-title {
    font-size: 0.9rem;
  }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   BANNERS PROMOCIONALES
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--computex-primary) 0%, var(--computex-primary-dark) 100%);
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.promo-banner h3 {
  color: white !important;
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.promo-banner p {
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: var(--space-lg);
}

.promo-banner .promo-code {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  letter-spacing: 2px;
}
