/* ==========================================
   MANSÃO MAROMBA - Tropical GYM Landing Page
   ========================================== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Tropical Summer Palette */
  --primary-green: #00C853;
  --primary-orange: #FF9800;
  --primary-yellow: #FFEB3B;
  --primary-pink: #FF7043;
  --accent-purple: #26C6DA;
  --accent-teal: #00BCD4;
  --coral: #FF6B6B;
  --turquoise: #4DD0E1;
  
  /* Light theme colors */
  --bg-light: #FFF8E1;
  --bg-cream: #FFFDE7;
  --bg-sand: #FFF3E0;
  
  /* Dark for contrast */
  --black: #1A1A2E;
  --white: #FFFFFF;
  --gray: #333333;
  --text-dark: #2D3436;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-sand) 100%);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ==========================================
   PRELOADER - BLACK WAVE REVEAL EFFECT
   ========================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000; /* Absolute black for logo */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 300px;
  height: auto;
}

.wave-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 5;
  animation: waveExit 2.5s ease-in-out forwards;
}

.wave-svg {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 200%;
  height: 100px;
  fill: var(--black);
  animation: waveMove 1s linear infinite;
  transform: rotate(180deg);
}

@keyframes waveMove {
  0% { transform: rotate(180deg) translateX(0); }
  100% { transform: rotate(180deg) translateX(-50%); }
}

@keyframes waveExit {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.main-content.visible {
  opacity: 1;
}

/* ==========================================
   ANIMATED BACKGROUND TEXT - "SABOOOR" (Hero only)
   ========================================== */
.background-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.text-row {
  display: flex;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 12vw, 150px);
  font-weight: 400;
  color: rgba(255, 152, 0, 0.04);
  -webkit-text-stroke: 2px rgba(255, 152, 0, 0.12);
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 0;
}

.text-row span {
  padding: 0 30px;
}

.text-row.row-1 { animation: scrollRight 25s linear infinite; }
.text-row.row-2 { animation: scrollLeft 22s linear infinite; }
.text-row.row-3 { animation: scrollRight 28s linear infinite; }
.text-row.row-4 { animation: scrollLeft 20s linear infinite; }
.text-row.row-5 { animation: scrollRight 24s linear infinite; }
.text-row.row-6 { animation: scrollLeft 26s linear infinite; }
.text-row.row-7 { animation: scrollRight 23s linear infinite; }
.text-row.row-8 { animation: scrollLeft 27s linear infinite; }

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@keyframes scrollLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   HERO SECTION - TROPICAL SUMMER VIBES
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  gap: 80px;
  z-index: 1;
  overflow: hidden;
  transition: filter 0.3s ease, opacity 0.3s ease;
  background: 
    linear-gradient(135deg, 
      rgba(255, 235, 59, 0.5) 0%, 
      rgba(255, 152, 0, 0.4) 30%, 
      rgba(255, 107, 107, 0.35) 60%, 
      rgba(255, 248, 225, 0.9) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 200, 83, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 235, 59, 0.4) 0%, transparent 40%);
}

/* ==========================================
   PRODUCT - SEPARATE CAN AND LABEL
   ========================================== */
.product {
  position: relative;
  width: 280px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform 0.5s ease;
}

.product:hover {
  transform: translateY(-20px);
}

/* Can base image - static, always visible */
.can-base {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  /* Make the can slightly transparent to show label behind */
  mix-blend-mode: multiply;
}

/* Label container - masked to can shape */
.label-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  
  /* Mask using the can shape */
  -webkit-mask-image: url('assets/can-base.png');
  mask-image: url('assets/can-base.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Label wrapper - fixed size container */
.label-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.label-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  /* Position to show LEFT side = Tropical GYM logo, 14G, ENERGÉTICO */
  transform: translateX(0);
  transition: transform 0.8s ease;
}

/* Hide duplicate image */
.label-img:nth-child(2) {
  display: none;
}

/* On hover, shift to show the right side (nutrition info + Cristo Redentor) */
.product:hover .label-img {
  transform: translateX(-50%);
}

/* Glow effect */
.can-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(255, 152, 0, 0.4) 0%,
    rgba(46, 125, 50, 0.2) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ==========================================
   HERO CONTENT
   ========================================== */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 500px;
}

/* Slide-in animation from left to right */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial state - hidden and offset */
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-features,
.hero-cta {
  opacity: 0;
  transform: translateX(-60px);
}

/* Animate when main-content becomes visible */
.main-content.visible .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: slideInFromLeft 0.8s ease-out forwards, badgePulse 2s ease-in-out infinite 0.8s;
}

.main-content.visible .hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  animation: slideInFromLeft 0.8s ease-out 0.15s forwards;
}

.main-content.visible .hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.6;
  animation: slideInFromLeft 0.8s ease-out 0.3s forwards;
}

.main-content.visible .hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  animation: slideInFromLeft 0.8s ease-out 0.45s forwards;
}

.main-content.visible .hero-cta {
  display: flex;
  gap: 16px;
  animation: slideInFromLeft 0.8s ease-out 0.6s forwards;
}

@keyframes badgePulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4); }
  50% { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 152, 0, 0.6); }
}

.badge-icon {
  font-size: 16px;
}

.title-tropical {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-gym {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5em;
  color: var(--primary-green);
  text-shadow: 0 0 40px rgba(255, 152, 0, 0.5);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.feature-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.feature-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.6);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #000000; /* Absolute black for logo */
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================
   SHARED SECTION STYLES - PREMIUM TECH
   ========================================== */
.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.section-title .highlight {
  background: linear-gradient(135deg, #FFD54F 0%, #FF9800 50%, #F57C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 152, 0, 0.5));
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   BENEFITS SECTION - TROPICAL SUMMER
   ========================================== */
.benefits {
  position: relative;
  padding: 120px 40px 120px 420px; /* Extra left padding for sticky can */
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(0, 200, 83, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255, 235, 59, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-sand) 100%);
  z-index: 10;
  overflow: hidden;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Animated glow orbs in background */
.benefits::before,
.benefits::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.benefits::before {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--primary-orange), transparent);
}

.benefits::after {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-green), transparent);
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
}

.section-header {
  max-width: 900px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* ====== STICKY CAN - FOLLOWS SCROLL THROUGHOUT PAGE ====== */
.sticky-can-container {
  position: fixed;
  left: 10%;
  top: 50%;
  transform: translateY(-50%) translateX(-100px);
  width: 320px;
  height: 580px;
  z-index: 50; /* Lower z-index so floating elements can pass in front */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Show the can after hero section - with slide in animation from left */
.sticky-can-container.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.sticky-can {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg); /* Tilted to the right side */
}

/* Can base image - static */
.scroll-can-base {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* Label container - masked to can shape */
.scroll-label-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  
  /* Mask using the can shape */
  -webkit-mask-image: url('assets/can-base.png');
  mask-image: url('assets/can-base.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Label wrapper */
.scroll-label-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.scroll-label-img {
  position: absolute;
  left: 0;
  top: 5%;
  width: 180%;
  height: 90%;
  object-fit: cover;
  object-position: left center;
  /* Initial position - same as hero can */
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth fluid animation */
}

/* Glow effect behind the can */
.sticky-can-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(255, 152, 0, 0.6) 0%, 
    rgba(233, 30, 99, 0.3) 30%, 
    rgba(156, 39, 176, 0.2) 50%,
    transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: stickyCanGlow 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes stickyCanGlow {
  0%, 100% { 
    opacity: 0.6; 
    transform: translate(-50%, -50%) scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1.15); 
  }
}


/* Responsive adjustments */
@media (max-width: 1400px) {
  .sticky-can-container {
    left: 2%;
    width: 300px;
    height: 520px;
  }
}

@media (max-width: 1200px) {
  .sticky-can-container {
    left: 0;
    width: 250px;
    height: 450px;
    opacity: 0.8;
  }
}

@media (max-width: 1024px) {
  .sticky-can-container {
    display: none;
  }
}

/* ====== IMPACTFUL BENEFIT CARDS - TROPICAL ====== */
.benefit-card {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(0, 200, 83, 0.3);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* Initial state for entrance animation */
  opacity: 0;
  transform: translateY(60px) scale(0.9);
}

/* Animated border glow effect - smooth version */
.benefit-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 152, 0, 0.3) 25%,
    rgba(255, 152, 0, 0.6) 50%,
    rgba(255, 152, 0, 0.3) 75%,
    transparent 100%);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.6;
  animation: borderGlowSmooth 4s ease-in-out infinite;
  background-size: 300% 100%;
  filter: blur(3px);
}

@keyframes borderGlowSmooth {
  0%, 100% { background-position: 100% 0; opacity: 0.4; }
  50% { background-position: 0% 0; opacity: 0.8; }
}

/* Inner glow overlay */
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 152, 0, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 24px;
}

/* Entrance animation - staggered cascade */
.benefit-card.animate-in {
  animation: cardEntranceImpact 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.benefit-card:nth-child(1).animate-in { animation-delay: 0s; }
.benefit-card:nth-child(2).animate-in { animation-delay: 0.15s; }
.benefit-card:nth-child(3).animate-in { animation-delay: 0.3s; }
.benefit-card:nth-child(4).animate-in { animation-delay: 0.45s; }

@keyframes cardEntranceImpact {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.8) rotateX(15deg);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02) rotateX(0deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0px);
  }
}

/* Animate border on visible */
.benefit-card.animate-in::before {
  opacity: 0.6;
}

/* HOVER - 3D elevation with colored shadow */
.benefit-card:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: rgba(255, 152, 0, 0.6);
  box-shadow: 
    0 30px 60px rgba(255, 152, 0, 0.25),
    0 0 80px rgba(255, 152, 0, 0.15),
    0 0 0 1px rgba(255, 152, 0, 0.3) inset;
  background: rgba(255, 152, 0, 0.08);
}

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

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

/* ====== ICON WITH NEON PULSE ====== */
.benefit-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  display: block;
  animation: iconPulseGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.6));
}

@keyframes iconPulseGlow {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.6));
  }
  50% { 
    transform: scale(1.1); 
    filter: drop-shadow(0 0 35px rgba(255, 152, 0, 0.9)) drop-shadow(0 0 60px rgba(255, 152, 0, 0.5));
  }
}

/* Unique colors per card */
.benefit-card:nth-child(1) .benefit-icon { 
  animation: iconPulseOrange 2s ease-in-out infinite;
}
.benefit-card:nth-child(2) .benefit-icon { 
  animation: iconPulsePink 2s ease-in-out infinite;
  animation-delay: 0.3s;
}
.benefit-card:nth-child(3) .benefit-icon { 
  animation: iconPulseGreen 2s ease-in-out infinite;
  animation-delay: 0.6s;
}
.benefit-card:nth-child(4) .benefit-icon { 
  animation: iconPulsePurple 2s ease-in-out infinite;
  animation-delay: 0.9s;
}

@keyframes iconPulseOrange {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.7)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 40px rgba(255, 152, 0, 1)) drop-shadow(0 0 70px rgba(255, 193, 7, 0.6)); transform: scale(1.15); }
}

@keyframes iconPulsePink {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.7)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 40px rgba(233, 30, 99, 1)) drop-shadow(0 0 70px rgba(255, 64, 129, 0.6)); transform: scale(1.15); }
}

@keyframes iconPulseGreen {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.7)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 40px rgba(0, 230, 118, 1)) drop-shadow(0 0 70px rgba(29, 233, 182, 0.6)); transform: scale(1.15); }
}

@keyframes iconPulsePurple {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(156, 39, 176, 0.7)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 40px rgba(156, 39, 176, 1)) drop-shadow(0 0 70px rgba(186, 104, 200, 0.6)); transform: scale(1.15); }
}

/* Card-specific hover colors */
.benefit-card:nth-child(1):hover {
  box-shadow: 0 30px 60px rgba(255, 152, 0, 0.3), 0 0 100px rgba(255, 152, 0, 0.2);
  border-color: rgba(255, 152, 0, 0.7);
}
.benefit-card:nth-child(2):hover {
  box-shadow: 0 30px 60px rgba(233, 30, 99, 0.3), 0 0 100px rgba(233, 30, 99, 0.2);
  border-color: rgba(233, 30, 99, 0.7);
}
.benefit-card:nth-child(3):hover {
  box-shadow: 0 30px 60px rgba(0, 230, 118, 0.3), 0 0 100px rgba(0, 230, 118, 0.2);
  border-color: rgba(0, 230, 118, 0.7);
}
.benefit-card:nth-child(4):hover {
  box-shadow: 0 30px 60px rgba(156, 39, 176, 0.3), 0 0 100px rgba(156, 39, 176, 0.2);
  border-color: rgba(156, 39, 176, 0.7);
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFD54F 0%, #FF9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ==========================================
   INGREDIENTS SECTION - BEACH PARALLAX
   ========================================== */
.ingredients {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 140px 420px; /* Extra left padding for sticky can */
  overflow: hidden;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Beach background with blur - brighter for summer */
.ingredients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/beach-bg.png') center/cover no-repeat;
  filter: blur(5px) brightness(0.7) saturate(1.3);
  transform: scale(1.1);
  z-index: 0;
}

/* Gradient overlay for depth */
.ingredients::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 150; /* Above sticky can (z-index: 100) */
}

.floating-item {
  position: absolute;
  animation: floatEnhanced 8s ease-in-out infinite;
  transition: transform 0.2s ease-out;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.floating-item:nth-child(odd) {
  animation-duration: 10s;
  animation-delay: -3s;
}

.floating-item:nth-child(even) {
  animation-duration: 7s;
  animation-delay: -1.5s;
}

/* Motion blur effect - enhanced */
.floating-item.motion-blur {
  filter: blur(3px) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  opacity: 0.7;
}

@keyframes floatEnhanced {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  20% { transform: translateY(-30px) rotate(8deg); }
  40% { transform: translateY(-15px) rotate(-5deg); }
  60% { transform: translateY(-40px) rotate(5deg); }
  80% { transform: translateY(-20px) rotate(-8deg); }
}

.ingredients-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 200, 83, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ingredients-description {
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 45px;
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 152, 0, 0.15);
  border: 1px solid rgba(255, 152, 0, 0.4);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
}

.tag:hover {
  background: rgba(255, 152, 0, 0.3);
  border-color: var(--primary-orange);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
}

/* ==========================================
   PERFORMANCE SECTION - TROPICAL SUMMER
   ========================================== */
.performance {
  position: relative;
  padding: 140px 40px 140px 420px; /* Extra left padding for sticky can */
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(255, 235, 59, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 200, 83, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-light) 50%, var(--bg-cream) 100%);
  overflow: hidden;
  z-index: 10;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.performance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255, 152, 0, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(46, 125, 50, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 60%);
  z-index: 1;
  animation: bgPulse 6s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.performance-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.performance-text {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 60px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.performance-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.stat-item {
  text-align: center;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 152, 0, 0.1) 50%, transparent 60%);
  animation: holographic 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes holographic {
  0% { transform: translate(-100%, -100%) rotate(45deg); }
  100% { transform: translate(100%, 100%) rotate(45deg); }
}

.stat-item:hover {
  border-color: rgba(255, 152, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.15);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(180deg, #FFD54F 0%, #FF9800 50%, #F57C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.4));
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

/* ==========================================
   POURING SECTION - TROPICAL SUMMER
   ========================================== */
.pouring {
  position: relative;
  min-height: 100vh;
  padding: 100px 40px 100px 420px; /* Extra left padding for sticky can */
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(0, 200, 83, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(77, 208, 225, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 188, 212, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-sand) 100%);
  overflow: hidden;
  z-index: 10;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.pouring-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  gap: 80px;
}

.can-pouring {
  position: relative;
  z-index: 10;
}

.pouring-can {
  width: 320px;
  height: auto;
  transform: rotate(-25deg) translateY(0);
  filter: drop-shadow(0 30px 60px rgba(255, 152, 0, 0.4));
  animation: canTiltEnhanced 4s ease-in-out infinite;
}

@keyframes canTiltEnhanced {
  0%, 100% { 
    transform: rotate(-25deg) translateY(0); 
    filter: drop-shadow(0 30px 60px rgba(255, 152, 0, 0.4));
  }
  50% { 
    transform: rotate(-30deg) translateY(-15px); 
    filter: drop-shadow(0 40px 80px rgba(255, 152, 0, 0.5));
  }
}

.liquid-stream {
  position: absolute;
  top: 45%;
  left: 60%;
  width: 120px;
  height: 450px;
  z-index: 5;
}

.liquid-drop {
  position: absolute;
  width: 24px;
  height: 36px;
  background: linear-gradient(180deg, #FFD54F 0%, #FF9800 50%, #F57C00 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
  animation: liquidFallGlow 1.8s ease-in infinite;
  box-shadow: 
    0 0 20px rgba(255, 152, 0, 0.6),
    0 0 40px rgba(255, 152, 0, 0.3);
}

.liquid-drop:nth-child(1) { left: 10px; }
.liquid-drop:nth-child(2) { left: 35px; animation-delay: 0.35s; width: 20px; height: 30px; }
.liquid-drop:nth-child(3) { left: 22px; animation-delay: 0.7s; }
.liquid-drop:nth-child(4) { left: 48px; animation-delay: 1.05s; width: 18px; height: 28px; }

@keyframes liquidFallGlow {
  0% {
    top: 0;
    opacity: 0;
    transform: scale(0.3);
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    opacity: 1;
  }
  100% {
    top: 380px;
    opacity: 0;
    transform: scale(0.6) translateY(30px);
  }
}

.liquid-splash {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(255, 152, 0, 0.7) 0%, rgba(255, 152, 0, 0.3) 40%, transparent 70%);
  border-radius: 50%;
  animation: splashGlow 1.2s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(255, 152, 0, 0.5);
}

@keyframes splashGlow {
  0%, 100% { 
    transform: translateX(-50%) scale(1); 
    opacity: 0.7;
    box-shadow: 0 0 50px rgba(255, 152, 0, 0.5);
  }
  50% { 
    transform: translateX(-50%) scale(1.3); 
    opacity: 1;
    box-shadow: 0 0 80px rgba(255, 152, 0, 0.7);
  }
}

.pouring-text {
  position: relative;
  text-align: left;
  max-width: 550px;
  z-index: 10;
}

.pouring-text .section-title {
  text-align: left;
}

.pouring-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  margin-top: 15px;
  line-height: 1.7;
}

.pouring-description {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.pouring-description p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

.pouring-description strong {
  color: var(--primary-orange);
}

.pouring-benefits {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pouring-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.benefit-check {
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.pouring-badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pouring-badge {
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.4);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.pouring-badge:hover {
  background: rgba(0, 230, 118, 0.25);
  transform: translateY(-3px);
}

/* Hidden aliens in sections */
.alien-section-hidden {
  position: absolute;
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 5;
}

.alien-section-hidden.visible {
  opacity: 1;
  transform: scale(1) rotate(5deg);
}

.alien-hidden-img {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
  animation: alienWiggle 3s ease-in-out infinite;
}

@keyframes alienWiggle {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  25% { transform: rotate(5deg) translateY(-5px); }
  50% { transform: rotate(-3deg) translateY(3px); }
  75% { transform: rotate(3deg) translateY(-3px); }
}

.alien-pouring-1 {
  top: 20%;
  left: 5%;
}

.alien-pouring-2 {
  bottom: 15%;
  right: 3%;
}

/* ==========================================
   CTA SECTION - TROPICAL VIBRANT
   ========================================== */
.cta-section {
  position: relative;
  padding: 140px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(255, 152, 0, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 235, 59, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #FFEB3B 0%, #FF9800 50%, #FF6B6B 100%);
  text-align: center;
  z-index: 10;
  overflow: hidden;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

.btn-large {
  padding: 24px 70px;
  font-size: 18px;
  box-shadow: 
    0 15px 50px rgba(255, 152, 0, 0.4),
    0 0 30px rgba(255, 152, 0, 0.2) inset;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 25px 70px rgba(255, 152, 0, 0.5),
    0 0 50px rgba(255, 152, 0, 0.3) inset;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 100px 40px;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .product {
    width: 220px;
    height: 410px;
  }
  
  /* Benefits responsive */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Ingredients responsive */
  .floating-item {
    opacity: 0.5;
  }
  
  /* Performance responsive */
  .performance-stats {
    gap: 40px;
  }
  
  /* Pouring responsive */
  .pouring-container {
    flex-direction: column;
    text-align: center;
  }
  
  .pouring-text {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: center;
    margin-top: 40px;
  }
  
  .liquid-stream {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Remove extra left padding when sticky can is hidden */
  .benefits,
  .ingredients,
  .performance,
  .pouring,
  .cta-section {
    padding-left: 40px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }
  
  .product {
    width: 180px;
    height: 340px;
  }
  
  .hero-features {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
  
  .text-row {
    -webkit-text-stroke: 1px rgba(255, 152, 0, 0.1);
  }
  
  .btn-primary {
    padding: 16px 35px;
    font-size: 14px;
  }

  .preloader-logo {
    width: 200px;
  }
  
  /* Benefits mobile */
  .benefits {
    padding: 60px 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  /* Ingredients mobile */
  .ingredients {
    padding: 80px 20px;
    min-height: auto;
  }
  
  .floating-item {
    display: none;
  }
  
  .floating-item:nth-child(-n+4) {
    display: block;
    opacity: 0.3;
  }
  
  /* Performance mobile */
  .performance {
    padding: 80px 20px;
  }
  
  .performance-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Pouring mobile */
  .pouring {
    min-height: auto;
    padding: 60px 20px;
  }
  
  .pouring-can {
    width: 200px;
  }
  
  .liquid-stream {
    height: 300px;
  }
  
  /* CTA mobile */
  .cta-section {
    padding: 80px 20px;
  }
  
  .btn-large {
    padding: 18px 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .product {
    width: 160px;
    height: 300px;
  }
  
  .hero-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 10px 14px;
    flex: 1;
    min-width: 80px;
  }
  
  .feature-value {
    font-size: 1.2rem;
  }
  
  /* Benefits extra small */
  .benefit-icon {
    font-size: 2.5rem;
  }
  
  /* Performance extra small */
  .stat-item {
    min-width: 80px;
  }
  
  /* Pouring extra small */
  .pouring-can {
    width: 160px;
    transform: rotate(-35deg) translateY(-30px);
  }
}

/* ==========================================
   EASTER EGG: HIDDEN ALIENS 👽
   ========================================== */

/* Corner alien - appears when not scrolling, hides on scroll */
.easter-egg-alien {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.alien-corner {
  bottom: 20px;
  right: -100px;
  transition: right 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s ease;
}

.alien-corner.visible {
  right: 20px;
}

.alien-corner .alien-img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
  animation: alienFloat 3s ease-in-out infinite;
}

@keyframes alienFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* Alien behind the can - peeks out */
.alien-behind-can {
  position: absolute;
  bottom: -20px;
  left: -40px;
  z-index: -1;
  opacity: 0;
  transform: translateX(-30px) scale(0.8);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.alien-behind-can.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.alien-peek-img {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
  animation: alienPeek 4s ease-in-out infinite;
}

@keyframes alienPeek {
  0%, 100% { 
    transform: translateX(0) rotate(10deg); 
  }
  25% {
    transform: translateX(10px) rotate(15deg);
  }
  50% { 
    transform: translateX(5px) rotate(-5deg); 
  }
  75% {
    transform: translateX(-5px) rotate(5deg);
  }
}

/* Hide on mobile */
@media (max-width: 1024px) {
  .easter-egg-alien,
  .alien-behind-can {
    display: none;
  }
}
