/* ============================================
   Heladería y Frutería Arcoíris - styles.css
   Paleta: colores del arcoíris + tonos cálidos
   Tipografía: Poppins + Pacifico
============================================ */

/* ---------- VARIABLES CSS (Design Tokens) ---------- */
:root {
  /* Colores arcoíris */
  --color-red:    #FF4757;
  --color-orange: #FF6B35;
  --color-yellow: #FFD700;
  --color-green:  #2ED573;
  --color-teal:   #1E90FF;
  --color-blue:   #5352ED;
  --color-purple: #C850C0;
  --color-pink:   #FF6EB4;

  /* Gradientes arcoíris */
  --gradient-rainbow: linear-gradient(135deg,
    #FF4757 0%, #FF6B35 18%, #FFD700 36%,
    #2ED573 54%, #1E90FF 72%, #C850C0 100%);
  --gradient-rainbow-soft: linear-gradient(135deg,
    #FF6B6B 0%, #FFD93D 25%, #6BCB77 50%,
    #4D96FF 75%, #C77DFF 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
  --gradient-cool: linear-gradient(135deg, #1E90FF 0%, #C850C0 100%);
  --gradient-green: linear-gradient(135deg, #2ED573 0%, #17C0EB 100%);

  /* Colores de texto */
  --text-dark:  #1a1a2e;
  --text-mid:   #444466;
  --text-light: #888899;
  --text-white: #ffffff;

  /* Fondos */
  --bg-primary:  #f3e8ff;  /* Morado pastel suave */
  --bg-about:    #ede0ff;
  --bg-contact:  #f0fff4;
  --bg-team:     #fdf4ff;
  --bg-footer:   #1a1a2e;

  /* Bordes y sombras */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);
  --shadow-colored: 0 8px 32px rgba(255, 107, 53, 0.3);

  /* Tipografía */
  --font-display: 'Pacifico', cursive;
  --font-body:    'Poppins', sans-serif;

  /* Transiciones */
  --transition-fast:   0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow:   0.5s ease;

  /* Navbar height */
  --navbar-h: 72px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* ---------- UTILITY: CONTAINER ---------- */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

/* ---------- UTILITY: BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-warm);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}
.btn-outline:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* ---------- UTILITY: SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--gradient-rainbow-soft);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-inline: auto;
}

/* Highlight spans */
.highlight-green  { color: var(--color-green); }
.highlight-blue   { color: var(--color-teal); }
.highlight-rainbow {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- UTILITY: ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.3); opacity: 0; }
}
@keyframes rainbowShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(46, 213, 115, 0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animation utility classes */
.animate-fade-up   { animation: fadeUp   0.7s ease both; }
.animate-zoom-in   { animation: zoomIn   0.8s ease both; }
.animate-slide-left  { animation: slideLeft  0.7s ease both; }
.animate-slide-right { animation: slideRight 0.7s ease both; }

/* Delay helpers */
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* Scroll-triggered reveal (added via JS) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HEADER / NAVBAR
============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

/* Scrolled state (added via JS) */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  padding-inline: clamp(16px, 5vw, 60px);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.4));
  animation: float 3s ease-in-out infinite;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: rainbowShift 4s ease infinite;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-fill-color: var(--text-light);
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-orange);
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/* Open state */
.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--color-orange);
}
.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--color-orange);
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--navbar-h);
  background: linear-gradient(160deg, #fff9f0 0%, #fff0f5 40%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: bubbleRise linear infinite;
}

.bubble-1 { width: 70px;  height: 70px;  background: radial-gradient(circle, #FF4757aa, transparent); left: 5%;   bottom: -80px; animation-duration: 8s;  animation-delay: 0s; }
.bubble-2 { width: 50px;  height: 50px;  background: radial-gradient(circle, #FF6B35aa, transparent); left: 18%;  bottom: -60px; animation-duration: 10s; animation-delay: 1.5s; }
.bubble-3 { width: 90px;  height: 90px;  background: radial-gradient(circle, #FFD700aa, transparent); left: 35%;  bottom: -100px; animation-duration: 12s; animation-delay: 0.5s; }
.bubble-4 { width: 60px;  height: 60px;  background: radial-gradient(circle, #2ED573aa, transparent); left: 55%;  bottom: -70px; animation-duration: 9s;  animation-delay: 2s; }
.bubble-5 { width: 80px;  height: 80px;  background: radial-gradient(circle, #1E90FFaa, transparent); left: 75%;  bottom: -90px; animation-duration: 11s; animation-delay: 1s; }
.bubble-6 { width: 55px;  height: 55px;  background: radial-gradient(circle, #C850C0aa, transparent); left: 90%;  bottom: -65px; animation-duration: 7s;  animation-delay: 0.8s; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 60px clamp(16px, 5vw, 48px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  width: fit-content;
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.rainbow-text {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: rainbowShift 5s ease infinite;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: 1.1em;
  color: var(--color-orange);
  -webkit-text-fill-color: var(--color-orange);
  text-shadow: 2px 4px 16px rgba(255, 107, 53, 0.25);
}

.hero-slogan {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-purple);
  font-weight: 500;
  padding: 12px 20px;
  border-left: 4px solid var(--color-purple);
  background: rgba(200, 80, 192, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.hero-buttons {
  contain: layout paint;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-red    { background: #ffe0e0; color: #c0392b; }
.badge-orange { background: #fff0e0; color: #d35400; }
.badge-yellow { background: #fffbe0; color: #b8860b; }
.badge-green  { background: #e0ffe8; color: #218c45; }

/* Hero image */
.hero-image { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

/* ---------- HERO SLIDESHOW ---------- */
.hero-slideshow {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(255, 107, 53, 0.2);
  animation: float 5s ease-in-out infinite;
  background: #222;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active { opacity: 1; }

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

/* Slideshow controls */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  color: var(--text-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.slide-prev { left: 10px; }
.slide-next { right: 10px; }
.slide-prev:hover,
.slide-next:hover {
  background: var(--gradient-warm);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Slideshow dots */
.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
  border-color: var(--color-orange);
}
.dot:hover { background: rgba(255,255,255,0.8); }

/* Floating cards */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.floating-card strong { display: block; font-weight: 700; font-size: 0.88rem; }
.floating-card small  { color: var(--text-light); font-size: 0.72rem; }
.card-icon { font-size: 1.4rem; }

.card-location {
  bottom: -18px;
  left: -20px;
  animation-delay: 0.5s;
  border-left: 4px solid var(--color-orange);
}

.card-rating {
  top: -14px;
  right: -20px;
  border-left: 4px solid var(--color-yellow);
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* =============================================
   PRODUCTS SECTION
============================================= */
.products-section {
  padding: 80px 0;
  background: #fff9f0;
}

/* Category filters */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  background: rgba(0,0,0,0.05);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.filter-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-warm);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
} 


/* Product card */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card.featured {
  border: 2px solid var(--color-yellow);
}

/* Product image */
.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Product badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

.product-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-red);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

/* Badge color variants */
.badge-red    { background: #FF4757; color: #fff; }
.badge-orange { background: #FF6B35; color: #fff; }
.badge-yellow { background: #FFD700; color: #333; }
.badge-green  { background: #2ED573; color: #fff; }
.badge-blue   { background: #1E90FF; color: #fff; }
.badge-purple { background: #C850C0; color: #fff; }
.badge-pink   { background: #FF6EB4; color: #fff; }

/* Product overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.overlay-btn {
  background: #fff;
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  transform: translateY(12px);
  transition: all var(--transition-normal);
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-btn:hover {
  background: var(--gradient-warm);
  color: #fff;
}

/* Product info */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-warm);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.btn-add:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.55);
}

/* Animación de éxito al agregar al carrito */
.btn-add.added {
  background: #2ED573;
  box-shadow: 0 4px 14px rgba(46, 213, 115, 0.4);
}

/* Hidden product card */
.product-card.hidden {
  display: none;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
  padding: 0;
  background: var(--bg-about);
  position: relative;
}

.section-wave-top,
.section-wave-bottom {
  line-height: 0;
}
.section-wave-top svg,
.section-wave-bottom svg {
  width: 100%;
  display: block;
}

.about-section .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* About cards grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.history-card::before { background: var(--gradient-warm); }
.mission-card::before { background: var(--gradient-green); }
.vision-card::before  { background: var(--gradient-cool); }

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1;
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.about-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-list li span { font-size: 1.1rem; }

/* Vision stats */
.vision-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

/* Values row */
.values-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.value-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.value-icon { font-size: 2rem; }

.value-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
  padding: 80px 0;
  background: var(--bg-contact);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.icon-red    { background: var(--color-red); }
.icon-orange { background: var(--color-orange); }
.icon-yellow { background: var(--color-yellow); color: #333; }
.icon-green  { background: var(--color-green); }

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-text span {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  border: none;
  cursor: pointer;
  text-align: center;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-btn i { font-size: 1.3rem; }

/* Social contact */
.social-contact { margin-top: 4px; }

.social-contact p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-weight: 500;
}

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

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.12);
  filter: brightness(1.15);
}

.icon-facebook  { background: #1877F2; }
.icon-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-tiktok    { background: #010101; }
.icon-whatsapp  { background: #25D366; }

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  display: flex;
  flex-direction: column;
}

.map-header {
  background: var(--gradient-warm);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-container iframe {
  flex: 1;
  width: 100%;
  border: none;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.75);
  position: relative;
}

.footer-wave {
  line-height: 0;
  margin-top: -1px;
}
.footer-wave svg { width: 100%; display: block; }

.footer-content {
  padding: 60px clamp(16px, 5vw, 48px) 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.footer-logo div {
  display: flex;
  flex-direction: column;
}

.footer-logo strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--gradient-rainbow-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo small {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-fill-color: rgba(255,255,255,0.45);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.footer-social-link:hover {
  background: var(--gradient-warm);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
  color: var(--color-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0 28px;
  text-align: center;
}

.rainbow-bar {
  height: 4px;
  background: var(--gradient-rainbow);
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  background-size: 300% 100%;
  animation: rainbowShift 4s ease infinite;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   FLOATING WHATSAPP BUTTON
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition-normal);
  animation: pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: #128C7E;
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: rgba(26,26,46,0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* =============================================
   SCROLL TOP BUTTON
============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  transition: all var(--transition-normal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.55);
}

/* =============================================
   MODAL
============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 26, 46, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 1;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-red);
  color: #fff;
}

.modal-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   RESPONSIVE: TABLET (≤ 900px)
============================================= */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-tag { margin-inline: auto; }

  .hero-buttons { justify-content: center; }

  .hero-badges { justify-content: center; }

  .hero-image { order: -1; }

  .card-location { bottom: -14px; left: 8px; }
  .card-rating   { top: -10px;   right: 8px; }

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

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

  .footer-brand { grid-column: span 2; }
}

/* =============================================
   RESPONSIVE: MOBILE (≤ 600px)
============================================= */
@media (max-width: 600px) {
  :root { --navbar-h: 64px; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 0;
    top: var(--navbar-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 999;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 14px 32px;
  }

  /* Hero */
  .hero-content { padding: 40px 16px 80px; }

  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  .hero-img { border-radius: var(--radius-lg); }

  .floating-card {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Contact */
  .map-container { height: 280px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand { grid-column: auto; }

  /* Modal */
  .modal-box { border-radius: var(--radius-lg); }

  /* Float buttons */
  .whatsapp-float { bottom: 16px; right: 16px; }
  .scroll-top-btn { bottom: 88px; right: 16px; }
}

/* =============================================
   SCROLLBAR STYLING
============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
  background: var(--gradient-warm);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-orange); }

/* =============================================
   NAVBAR: BOTÓN CARRITO
============================================= */
.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.cart-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.55);
}

/* Wiggle animation on add */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%       { transform: rotate(-12deg) scale(1.15); }
  50%       { transform: rotate(12deg) scale(1.2); }
  75%       { transform: rotate(-6deg) scale(1.1); }
}
.cart-btn.wiggle { animation: wiggle 0.45s ease; }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--color-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  transition: transform var(--transition-fast);
}

.cart-badge.bump {
  animation: fadeUp 0.3s ease;
}

/* =============================================
   CARRITO: OVERLAY
============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   CARRITO: DRAWER LATERAL
============================================= */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}

.cart-drawer.open {
  transform: translateX(0);
}

/* Cabecera del carrito */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: var(--gradient-warm);
  color: #fff;
  flex-shrink: 0;
}

.cart-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.cart-close:hover {
  background: rgba(255,255,255,0.45);
  transform: rotate(90deg);
}

/* Cuerpo del carrito */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* Estado vacío */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-light);
  text-align: center;
  padding: 40px 20px;
}

.cart-empty-icon { font-size: 4rem; }

.cart-empty p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-mid);
}

.cart-empty small { font-size: 0.85rem; }

/* Lista de items */
.cart-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item individual */
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fafafa;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-fast);
  animation: fadeUp 0.3s ease;
}

.cart-item:hover { box-shadow: var(--shadow-sm); }

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2px;
}

/* Controles de cantidad */
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.qty-btn:hover { transform: scale(1.15); filter: brightness(1.1); }

.qty-value {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
  color: var(--text-dark);
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 71, 87, 0.1);
  color: var(--color-red);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  margin-left: 2px;
}

.cart-item-remove:hover {
  background: var(--color-red);
  color: #fff;
  transform: scale(1.1);
}

/* Pie del carrito */
.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.cart-total-row {
  font-size: 1.05rem;
  color: var(--text-dark);
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cart-total-row strong {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.15rem;
}

/* Botón checkout WhatsApp */
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Botón vaciar carrito */
.cart-clear-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--color-red);
  border: 1.5px solid rgba(255, 71, 87, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-clear-btn:hover {
  background: rgba(255, 71, 87, 0.08);
  border-color: var(--color-red);
}

/* =============================================
   MODAL: ACCIONES ACTUALIZADAS
============================================= */
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.btn-add-modal {
  width: 100%;
  padding: 14px;
  background: var(--gradient-warm);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.btn-add-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.5);
}

/* Responsive: carrito en móvil */
@media (max-width: 600px) {
  .cart-drawer { width: 100vw; }
  .cart-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/* =============================================
   SECCIÓN EQUIPO DE TRABAJO
============================================= */
.team-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #f3e8ff 0%, #ede0ff 50%, #e8d5ff 100%);
  position: relative;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 2rem;
  margin-top: 3rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: transform var(--transition-normal);
}

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

.team-photo-wrap {
  position: relative;
  width: 150px;
  height: 150px;
}

.team-photo-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
  background: linear-gradient(135deg, #d8b4fe 0%, #c084fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  font-size: 4rem;
  line-height: 1;
}

.team-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 2px solid #e9d5ff;
}

.team-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.team-role {
  font-size: 0.88rem;
  color: #9333ea;
  font-weight: 500;
  background: #f3e8ff;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid #d8b4fe;
  margin: 0;
}

/* Responsive equipo */
@media (max-width: 700px) {
  .team-grid {
    gap: 2rem 1rem;
  }
  .team-photo-wrap,
  .team-photo-circle {
    width: 120px;
    height: 120px;
  }
}
