/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
  --color-bg: #0a0a1a;
  --color-bg-2: #11112a;
  --color-surface: #1a1a35;
  --color-text: #ffffff;
  --color-text-muted: #b8b8d1;
  --color-primary: #0066ff;        /* Azul eléctrico */
  --color-secondary: #7b2ff7;      /* Violeta */
  --color-accent: #00d4ff;         /* Turquesa */
  --color-dark: #000000;
  --gradient-main: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #0066ff 100%);
  --gradient-hover: linear-gradient(135deg, #0066ff 0%, #7b2ff7 50%, #00d4ff 100%);
  --shadow-soft: 0 10px 40px rgba(0, 102, 255, 0.15);
  --shadow-glow: 0 0 30px rgba(123, 47, 247, 0.5);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(10, 10, 26, 0);
  backdrop-filter: blur(0);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-main);
  transition: width var(--transition);
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--color-accent); }

.nav-cta {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--gradient-main);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(123, 47, 247, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 47, 247, 0.6);
}

.nav-toggle { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(123, 47, 247, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%),
    var(--color-bg);
}

.urban-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 47, 247, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.urban-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--color-bg) 100%);
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px; height: 400px;
  background: var(--color-secondary);
  top: -100px; left: -100px;
}

.shape-2 {
  width: 350px; height: 350px;
  background: var(--color-accent);
  bottom: -100px; right: -100px;
  animation-delay: -7s;
}

.shape-3 {
  width: 300px; height: 300px;
  background: var(--color-primary);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 40px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.logo-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  position: relative;
  animation: logoPulse 3s infinite ease-in-out;
}

.logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(123, 47, 247, 0.6));
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(123, 47, 247, 0.6)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.8)); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 10px 30px rgba(123, 47, 247, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hover);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(123, 47, 247, 0.6);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.05);
  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.05); }
  50% { box-shadow: 0 0 35px rgba(123, 47, 247, 0.5), inset 0 0 25px rgba(123, 47, 247, 0.1); }
}

.btn .arrow {
  width: 20px; height: 20px;
  transition: transform var(--transition);
}

.btn:hover .arrow { transform: translateX(6px); }

.btn .icon-wa { width: 22px; height: 22px; }

.btn-large { padding: 20px 44px; font-size: 16px; }

/* ============================================
   SECCIONES
   ============================================ */
section { padding: 100px 0; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(123, 47, 247, 0.15);
  border: 1px solid rgba(123, 47, 247, 0.3);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CARRUSEL PRODUCTOS
   ============================================ */
.productos {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}

.carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
}

.product-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: rgba(123, 47, 247, 0.4);
}

.product-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #1a1a35, #2a2a55);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--gradient-main);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-info {
  padding: 24px;
}

.product-category {
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-actions .btn {
  padding: 12px 20px;
  font-size: 13px;
  width: 100%;
}

.btn-small {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  padding: 10px 16px;
  font-size: 12px;
}

.btn-small:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--color-accent);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn svg { width: 24px; height: 24px; }

.carousel-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--gradient-main);
}

/* ============================================
   FEATURES / NOSOTROS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-surface);
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 47, 247, 0.3);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(123, 47, 247, 0.4);
}

.feature-icon svg { width: 32px; height: 32px; color: white; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonios {
  background: var(--color-bg-2);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonio-card {
  background: var(--color-surface);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
}

.testimonio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonio-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonio-text {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.testimonio-author h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonio-author span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================
   UBICACIÓN
   ============================================ */
.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(0.3) contrast(1.1);
}

.btn-direction {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background:
    radial-gradient(circle at 30% 50%, rgba(123, 47, 247, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.25) 0%, transparent 50%),
    var(--color-bg);
  text-align: center;
  padding: 120px 0;
}

.cta-content { max-width: 800px; margin: 0 auto; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-subtitle {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a svg { width: 18px; height: 18px; }

.social-links a:hover {
  background: var(--gradient-main);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.btn-ecommerce-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  animation: neonPulse 2s infinite ease-in-out;
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 25px rgba(123, 47, 247, 0.5); }
}

.btn-ecommerce-footer:hover {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  transform: translateX(5px);
}

.btn-ecommerce-footer .arrow {
  width: 16px; height: 16px;
  transition: transform var(--transition);
}

.btn-ecommerce-footer:hover .arrow { transform: translateX(5px); }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

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

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}

.scroll-indicator span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 10px;
  background: var(--color-accent);
  border-radius: 4px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 30px; }
}

/* ============================================
   ANIMACIONES AOS (fade-up, zoom)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="zoom"] {
  transform: scale(0.8);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .product-card { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform var(--transition);
  }

  .nav-menu.active { transform: translateY(0); }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
  }

  .nav-toggle span {
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
  }

  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-cta { display: none; }

  .product-card { flex: 0 0 100%; }
  .carousel-wrapper { padding: 0 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }

  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .logo-wrapper { width: 140px; height: 140px; }
  .carousel-wrapper { padding: 0 20px; }
  .carousel-btn { width: 40px; height: 40px; }
  .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; }
}

/* ============================================
   LOGO REAL - AJUSTES
   ============================================ */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(123, 47, 247, 0.6));
  transition: filter 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.8));
}

/* ============================================
   IMÁGENES DE PRODUCTOS
   ============================================ */
.product-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a35, #2a2a55);
}

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

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

/* Estado fallback si la imagen no carga */
.product-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image.no-image::before {
  content: '🛍️';
  font-size: 4rem;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}

.product-image.no-image::after {
  display: none;
}