/* =====================================================
   GUARAPÉAME — style.css
   Paleta: Verde oscuro, amarillo caña, verde vibrante
   Fuentes: Fredoka One + Nunito
   ===================================================== */

:root {
  --yellow:       #f9e94e;
  --yellow-deep:  #f4a900;
  --green-bright: #7bc043;
  --green-dark:   #2d6a00;
  --green-deeper: #1a3a00;
  --white:        #ffffff;
  --offwhite:     #fffdf0;
  --text-dark:    #1a2e00;
  --text-mid:     #3d5a10;
  --shadow:       0 8px 32px rgba(45,106,0,0.18);
  --radius:       18px;
  --radius-lg:    28px;
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--offwhite);
  color: var(--text-dark);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video, iframe { max-width: 100%; display: block; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-deeper); }
::-webkit-scrollbar-thumb { background: var(--green-bright); border-radius: 4px; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 3rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(26,58,0,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 0.7rem 3rem;
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: var(--yellow);
  white-space: nowrap;
  margin-right: auto;
}
.logo-icon { font-size: 1.8rem; }
.nav-links {
  display: flex; gap: 2rem;
}
.nav-links a {
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--green-bright);
  color: var(--white);
  font-weight: 800; font-size: 0.95rem;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(123,192,67,0.4);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,169,0,0.5);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--green-deeper) 0%, var(--green-dark) 40%, #1e4c00 70%, #2d6a00 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}
.hero-bg-shapes {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.shape {
  position: absolute; border-radius: 50%;
  background: rgba(123,192,67,0.08);
}
.shape1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape2 { width: 300px; height: 300px; bottom: -80px; left: -80px; background: rgba(249,233,78,0.06); }
.shape3 { width: 200px; height: 200px; top: 30%; left: 30%; background: rgba(123,192,67,0.05); }
.bubbles {
  position: absolute; width: 100%; height: 100%;
}
.bubbles span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(249,233,78,0.2);
  animation: floatBubble 6s infinite ease-in-out;
}
.bubbles span:nth-child(1)  { left:10%; top:80%; animation-delay:0s;   animation-duration:7s; }
.bubbles span:nth-child(2)  { left:25%; top:60%; animation-delay:1s;   animation-duration:9s; width:20px; height:20px; }
.bubbles span:nth-child(3)  { left:50%; top:90%; animation-delay:2s;   animation-duration:6s; }
.bubbles span:nth-child(4)  { left:70%; top:70%; animation-delay:3s;   animation-duration:8s; width:18px; height:18px; }
.bubbles span:nth-child(5)  { left:85%; top:50%; animation-delay:1.5s; animation-duration:7.5s; }
.bubbles span:nth-child(6)  { left:35%; top:20%; animation-delay:0.5s; animation-duration:10s; width:10px; height:10px; }
.bubbles span:nth-child(7)  { left:60%; top:30%; animation-delay:2.5s; animation-duration:8s;  width:22px; height:22px; }
.bubbles span:nth-child(8)  { left:5%;  top:40%; animation-delay:3.5s; animation-duration:6.5s; width:16px; height:16px; }

@keyframes floatBubble {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%      { transform: translateY(-40px) scale(1.2); opacity: 0.8; }
}

.hero-content {
  flex: 1; max-width: 600px;
  position: relative; z-index: 2;
  animation: fadeInLeft 0.9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(123,192,67,0.2);
  border: 1px solid rgba(123,192,67,0.4);
  color: var(--green-bright);
  font-weight: 700; font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.highlight       { color: var(--yellow);       text-shadow: 0 0 30px rgba(249,233,78,0.6); }
.highlight-green { color: var(--green-bright);  text-shadow: 0 0 30px rgba(123,192,67,0.6); }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem; line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-bright);
  color: var(--white);
  font-weight: 800; font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(123,192,67,0.5);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: #8fd44a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(123,192,67,0.6);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(249,233,78,0.08);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem; color: var(--yellow); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-visual {
  flex: 0 0 auto;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem;
  animation: fadeInRight 0.9s ease both;
}
.hero-glass-wrap {
  position: relative;
  width: min(320px, 80vw);
  height: min(320px, 80vw);
  display: flex; align-items: center; justify-content: center;
}
.glow-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,192,67,0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.hero-juice-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 28px;
  box-shadow: 0 28px 58px rgba(0,0,0,0.32);
  animation: floatGlass 4s ease-in-out infinite;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@keyframes floatGlass {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}
.hero-sticker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) rotate(-4deg);
  width: 64%;
  border-radius: 8px;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.25),
    0 8px 22px rgba(0,0,0,0.35);
  z-index: 3;
  pointer-events: none;
}

.hero-visual-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.9rem;
  width: 100%;
  max-width: 360px;
}
.hero-feature-card {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  font-weight: 700;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}
.hero-feature-card i {
  color: var(--green-bright);
  font-size: 1rem;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s both;
}
.bounce {
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* =====================================================
   FEATURES
   ===================================================== */
.features { padding: 6rem 0; background: var(--offwhite); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(123,192,67,0.15);
  color: var(--green-dark);
  font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.section-tag.green { background: rgba(123,192,67,0.25); color: var(--green-bright); }
.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }
.section-header p {
  color: var(--text-mid); font-size: 1.05rem; max-width: 520px; margin: 0 auto;
}
.section-sub {
  color: var(--text-dark);
  font-size: 1rem;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--yellow));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(45,106,0,0.2); }
.feature-card:hover::before { transform: scaleX(1); }
.feat-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.feature-card p  { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.5rem; }

.moment-list {
  list-style: none;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.moment-list li {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.moment-list li::before {
  content: '🎋';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 2px;
}
.moment-tagline {
  color: var(--text-mid);
  font-size: 0.85rem !important;
  line-height: 1.55;
  border-top: 1px solid rgba(45,106,0,0.1);
  padding-top: 0.5rem;
  margin-top: 0.4rem !important;
}
.moment-slogan {
  color: var(--green-dark) !important;
  font-size: 0.88rem !important;
  font-weight: 700;
  margin-top: 0.3rem !important;
}

/* =====================================================
   CAROUSELS (shared styles)
   ===================================================== */
.gallery-section  { padding: 6rem 0; background: #f3fde8; }
.video-section    { padding: 6rem 0; background: linear-gradient(160deg, var(--green-deeper), var(--green-dark)); }

.carousel-wrapper {
  position: relative;
  display: flex; align-items: center;
  max-width: 1300px; margin: 0 auto;
  padding: 0 60px;
}
.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 0.8rem);
  min-width: 0;
}
.photo-placeholder {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.photo-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  border-radius: var(--radius);
}
.photo-placeholder:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.photo-placeholder span  { font-size: 3rem; position: relative; z-index: 1; }
.photo-placeholder p     { font-family: 'Fredoka One', cursive; font-size: 1.2rem; position: relative; z-index: 1; }
.photo-placeholder small { font-size: 0.75rem; opacity: 0.8; position: relative; z-index: 1; }

/* To use REAL images, replace .photo-placeholder with:
   <img src="tu-foto.jpg" alt="Guarapo" style="width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:18px;"/>
*/

.video-slide .carousel-slide { flex: 0 0 calc(50% - 0.6rem); }
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(123,192,67,0.4);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center; padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.video-placeholder:hover { background: rgba(123,192,67,0.1); border-color: var(--green-bright); }
.play-icon {
  width: 64px; height: 64px;
  background: var(--green-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: 0 8px 24px rgba(123,192,67,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-placeholder:hover .play-icon { transform: scale(1.1); box-shadow: 0 12px 32px rgba(123,192,67,0.6); }
.video-placeholder span { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: var(--white); }
.video-placeholder p { font-size: 0.78rem; opacity: 0.6; }
/* For real videos, replace video-placeholder div with:
   <iframe src="https://www.youtube.com/embed/VIDEO_ID" ...></iframe>
   OR <video controls ...></video>
*/

.carousel-btn {
  position: absolute; z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all var(--transition);
}
.carousel-btn:hover {
  background: var(--green-bright);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(123,192,67,0.4);
}
.prev-btn { left: 0;  }
.next-btn { right: 0; }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 1.8rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(45,106,0,0.25);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.video-section .dot { background: rgba(255,255,255,0.3); }
.dot.active {
  background: var(--green-bright);
  width: 28px; border-radius: 5px;
}
.video-section .dot.active { background: var(--yellow); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  padding: 5rem 2rem;
  position: relative; overflow: hidden;
}
.cta-bg-shape {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-text h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deeper);
  margin-bottom: 0.6rem;
}
.cta-text p { color: var(--green-dark); font-size: 1.05rem; max-width: 480px; }
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--green-deeper);
  color: var(--white);
  font-weight: 900; font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(26,58,0,0.35);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cta-big:hover {
  background: var(--green-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(26,58,0,0.45);
}
.btn-cta-big i { font-size: 1.4rem; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section { padding: 6rem 0; background: var(--offwhite); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(45,106,0,0.18); }
.contact-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem; color: var(--white);
  box-shadow: 0 6px 20px rgba(123,192,67,0.4);
}
.contact-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.contact-card p  { color: var(--text-mid); font-weight: 700; margin-bottom: 1rem; }
.contact-link {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 800; font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(123,192,67,0.15);
  transition: all var(--transition);
}
.contact-link:hover { background: var(--green-bright); color: var(--white); }
.contact-link-soft { color: var(--text-mid); font-size: 0.9rem; font-weight: 700; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--green-deeper);
  position: relative;
  padding-top: 0;
}
.footer-wave {
  display: block; line-height: 0;
  background: var(--offwhite);
}
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-body {
  padding: 3rem 2rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem; color: var(--yellow);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  color: var(--green-bright);
  font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem; line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
  background: rgba(123,192,67,0.1);
  transform: translateY(-3px);
}
.footer-links-col h4, .footer-contact-col h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; color: var(--yellow);
  margin-bottom: 1.2rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a {
  color: rgba(255,255,255,0.55); font-size: 0.92rem; font-weight: 600;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links-col a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 600;
}
.footer-contact-item i { color: var(--green-bright); width: 18px; text-align: center; }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-bright);
  color: var(--white); font-weight: 800; font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(123,192,67,0.4);
  transition: all var(--transition);
}
.footer-cta-btn:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,169,0,0.4);
}
.footer-bottom {
  padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.footer-bottom-badge {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.footer-bottom-badge span {
  font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.footer-copy {
  color: rgba(255,255,255,0.3); font-size: 0.82rem; text-align: center;
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 2rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.65);
}
.wa-tooltip {
  position: absolute;
  right: 70px; bottom: 50%;
  transform: translateY(50%);
  background: var(--green-deeper);
  color: var(--white); font-weight: 700; font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInLeft  { from { opacity:0; transform: translateX(-40px); } to { opacity:1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform: translateX(40px);  } to { opacity:1; transform: translateX(0); } }
@keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc(50% - 0.6rem); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.6rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,58,0,0.97);
    align-items: center; justify-content: center; gap: 2.5rem;
    z-index: 998;
    font-size: 1.3rem;
  }
  .hamburger { display: flex; z-index: 999; }
  .hero { flex-direction: column; padding: 6rem 2rem 4rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 1rem; }
  .hero-glass-wrap { width: min(260px, 75vw); height: min(260px, 75vw); }
  .carousel-slide { flex: 0 0 calc(100% - 0rem); }
  .carousel-wrapper { padding: 0 50px; }
  .footer-main { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   PRODUCTOS
   ===================================================== */
.products-section { padding: 6rem 0; background: #f3fde8; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45,106,0,0.22);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(160deg, #1e4c00 0%, var(--green-deeper) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem 0.5rem;
}
.product-real-img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.45));
}
.product-card:hover .product-real-img { transform: scale(1.06) translateY(-4px); }
.product-vol-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--yellow);
  color: var(--green-deeper);
  font-weight: 900; font-size: 0.82rem;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1.4rem 1.5rem 0.8rem;
  flex: 1;
}
.product-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.product-people {
  color: var(--text-mid);
  font-size: 0.88rem; font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.product-people i { color: var(--green-bright); }
.product-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.75rem;
  color: var(--yellow-deep);
}

.product-actions {
  padding: 0.8rem 1.5rem 1.4rem;
  display: flex; gap: 0.6rem;
}
.btn-presentation {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--green-bright);
  border-radius: 50px;
  color: var(--green-dark);
  font-weight: 700; font-size: 0.83rem;
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
}
.btn-presentation:hover { background: var(--green-bright); color: var(--white); }

.btn-add-cart {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: var(--green-dark);
  border: none; border-radius: 50px;
  color: var(--white);
  font-weight: 800; font-size: 0.83rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--green-bright); }
.btn-add-cart.added { background: var(--yellow-deep); animation: addedPop 0.35s ease; }
@keyframes addedPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* =====================================================
   CART TOGGLE (navbar)
   ===================================================== */
.cart-toggle {
  position: relative;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.cart-toggle:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-deeper);
}
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #e53e3e;
  color: var(--white);
  font-size: 0.68rem; font-weight: 900;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  line-height: 1;
}
.cart-badge.visible { display: flex; }

/* =====================================================
   CART OVERLAY + DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1998;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 95vw;
  background: var(--white);
  z-index: 1999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem 1rem;
  background: var(--green-deeper);
}
.cart-header h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--yellow);
  display: flex; align-items: center; gap: 0.6rem;
}
.cart-close {
  background: rgba(255,255,255,0.12);
  border: none; color: var(--white);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; cursor: pointer;
  transition: background var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.25); }

.cart-body {
  flex: 1; overflow-y: auto;
  padding: 0.5rem 1.5rem 1rem;
}
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; height: 200px;
  color: var(--text-mid); opacity: 0.4;
}
.cart-empty i { font-size: 3rem; }
.cart-empty p { font-weight: 700; font-size: 0.95rem; }

.cart-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-item-bottle { width: 42px; flex-shrink: 0; }
.cart-item-img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 800; font-size: 0.88rem; color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: 0.8rem; color: var(--text-mid); font-weight: 600; margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 0.45rem; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--green-bright);
  background: transparent; color: var(--green-dark);
  font-size: 1rem; font-weight: 800; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.qty-btn:hover { background: var(--green-bright); color: var(--white); }
.qty-num { font-weight: 900; font-size: 1rem; color: var(--text-dark); min-width: 18px; text-align: center; }
.cart-item-total {
  font-family: 'Fredoka One', cursive;
  font-size: 0.98rem; color: var(--yellow-deep); white-space: nowrap;
}

.cart-footer {
  padding: 1.1rem 1.5rem 1.4rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  background: var(--offwhite);
  display: none;
}
.cart-footer.visible { display: block; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.9rem;
  font-weight: 800; font-size: 1rem; color: var(--text-dark);
}
.cart-total-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.55rem; color: var(--green-dark);
}
.btn-cart-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%;
  background: #25d366; color: var(--white);
  font-weight: 900; font-size: 1rem;
  padding: 0.85rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.btn-cart-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}
.btn-cart-whatsapp i { font-size: 1.25rem; }

/* =====================================================
   PRODUCT MODAL
   ===================================================== */
.product-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.product-modal-overlay.open { opacity: 1; pointer-events: all; }

.product-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 460px; width: 100%;
  overflow: hidden; position: relative;
  max-height: 90vh;
  display: flex; flex-direction: column;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.product-modal-overlay.open .product-modal { transform: scale(1); }

.modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 34px; height: 34px; border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.12); color: var(--white);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,0.25); }

.modal-bottle-wrap {
  overflow: hidden;
  background: linear-gradient(160deg, #1e4c00 0%, var(--green-deeper) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1rem;
  height: 260px;
}
.modal-real-img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.5));
}

.modal-info { padding: 1.4rem 1.8rem; overflow-y: auto; }
.modal-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem; color: var(--green-dark); margin-bottom: 0.6rem;
}
.modal-specs { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.modal-spec {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(123,192,67,0.12);
  color: var(--green-dark); font-weight: 700; font-size: 0.84rem;
  padding: 0.28rem 0.8rem; border-radius: 50px;
}
.modal-spec i { color: var(--green-bright); }
.modal-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem; color: var(--yellow-deep); margin-bottom: 0.7rem;
}
.modal-desc { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }

.modal-actions {
  display: flex; gap: 0.8rem;
  padding: 1rem 1.8rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.btn-modal-cart {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green-dark); color: var(--white);
  font-weight: 800; font-size: 0.92rem;
  padding: 0.75rem 1rem; border-radius: 50px;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-modal-cart:hover { background: var(--green-bright); }
.btn-modal-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #25d366; color: var(--white);
  font-weight: 800; font-size: 0.92rem;
  padding: 0.75rem 1rem; border-radius: 50px;
  transition: all var(--transition);
}
.btn-modal-wa:hover { background: #1da851; transform: translateY(-2px); }

/* =====================================================
   RESPONSIVE — PRODUCTOS + CARRITO
   ===================================================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .cart-drawer   { width: 100%; }
}

/* =====================================================
   VIDEO GRID
   ===================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.video-item video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  display: block;
  background: #000;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
}