 * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: #191919; background: #ffffff; overflow-x: hidden; }
    
    /* Cursor follower */
    .cursor-dot {
      width: 8px; height: 8px; background: #0171ff; border-radius: 50%;
      position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
      transition: transform 0.1s ease;
    }
    .cursor-ring {
      width: 40px; height: 40px; border: 1.5px solid rgba(1,113,255,0.4); border-radius: 50%;
      position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
      transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    }
    
    /* Reveal animations */
    .reveal { opacity: 0; transform: translateY(60px); }
    .reveal-left { opacity: 0; transform: translateX(-80px); }
    .reveal-right { opacity: 0; transform: translateX(80px); }
    .reveal-scale { opacity: 0; transform: scale(0.9); }
    .revealed { opacity: 1; transform: translateY(0) translateX(0) scale(1); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
    
    /* Hero gradient orb */
    .hero-orb {
      position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.25;
      animation: orbFloat 8s ease-in-out infinite;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }
    
    /* Floating Animations */
    .float-badge {
      animation: floatBadge 4s ease-in-out infinite;
    }
    .float-img-slow {
      animation: floatBadge 6s ease-in-out infinite alternate;
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-12px) rotate(2deg); }
    }
    
    /* Marquee */
    .marquee-track {
      display: flex; width: max-content;
      animation: marqueeScroll 30s linear infinite;
    }
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    /* Glass card */
    .glass-card {
      background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
      border: 1px solid rgba(0,0,0,0.06);
    }
    
    ::selection { background: rgba(1,113,255,0.15); color: #191919; }
    
    .nav-blur {
      background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-blur.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    }
    
    .btn-magnetic { position: relative; overflow: hidden; }
    .btn-magnetic::before {
      content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15);
      transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .btn-magnetic:hover::before { transform: translateX(0); }
    
    .card-lift {
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    }
    .card-lift:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }
    
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f7f7f8; }
    ::-webkit-scrollbar-thumb { background: #0171ff; border-radius: 10px; }
    
    .mobile-menu {
      transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .mobile-menu.open { transform: translateX(0); }
    
    .text-highlight {
      background: linear-gradient(135deg, #0171ff 0%, #0050cc 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .grid-pattern {
      background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .dot-pattern {
      background-image: radial-gradient(circle, rgba(1,113,255,0.08) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    .whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  background: #20bd5a;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-float-text {
  display: inline-block;
}

/* Efeito de pulso */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.25);
  z-index: -1;
  animation: whatsappPulse 1.8s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float-text {
    display: none;
  }

  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}

/* ================================
   HERO VIDEO - VISUAL REFINADO
================================ */

/* área do vídeo */
.hero-video-area {
  position: relative !important;
  min-height: 420px !important;
  align-items: center !important;
}

/* vídeo principal mais destacado */
.hero-video-frame {
  max-width: 700px !important;
  width: 100% !important;
  position: relative !important;
  z-index: 20 !important;
}

/* glow atrás do vídeo */
.hero-video-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: -28px !important;
  background: radial-gradient(circle, rgba(1, 113, 255, 0.24), transparent 68%) !important;
  filter: blur(24px) !important;
  opacity: 0.9 !important;
  z-index: -2 !important;
  pointer-events: none !important;
}

/* detalhe decorativo atrás */
.hero-video-frame::after {
  content: "" !important;
  position: absolute !important;
  inset: 18px -18px -18px 18px !important;
  border-radius: 34px !important;
  background: linear-gradient(135deg, rgba(1, 113, 255, 0.16), rgba(255, 255, 255, 0.18)) !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

/* card/moldura do vídeo */
.hero-video-card {
  border-radius: 32px !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.32) !important;
  box-shadow:
    0 34px 70px rgba(15, 23, 42, 0.18),
    0 14px 35px rgba(1, 113, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
  overflow: hidden !important;
}

/* vídeo mais bonito */
.hero-video-card video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.01) !important;
  filter: contrast(1.04) saturate(1.08) brightness(1.02) !important;
}

/* overlay sutil */
.hero-video-card .pointer-events-none {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(to top, rgba(0,0,0,0.14), transparent 52%) !important;
}

/* imagem da camiseta flutuando */
.hero-shirt-floating {
  width: 150px !important;
  right: -18px !important;
  bottom: -28px !important;
  z-index: 35 !important;
  transform: rotate(-4deg) !important;
}

.hero-shirt-floating img {
  width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.24)) !important;
}

/* card inferior menor, mas presente */
.hero-video-area .glass-card {
  transform: scale(0.9) !important;
  transform-origin: center !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(18px) !important;
}

/* card da esquerda inferior */
.hero-video-area > .glass-card {
  left: -18px !important;
  bottom: -28px !important;
  z-index: 40 !important;
}

/* badge superior geral menor */
.float-badge.glass-card {
  transform: scale(0.9) !important;
}

/* suaviza elementos de fundo */
.hero-orb {
  opacity: 0.28 !important;
}

.grid-pattern {
  opacity: 0.32 !important;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1024px) {
  .hero-video-area {
    min-height: auto !important;
    margin-top: 44px !important;
  }

  .hero-video-frame {
    max-width: 640px !important;
  }

  .hero-shirt-floating {
    width: 135px !important;
    right: 6px !important;
    bottom: -30px !important;
  }

  .hero-video-area > .glass-card {
    left: 8px !important;
    bottom: -30px !important;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 640px) {
  .hero-video-area {
    width: 100% !important;
    margin-top: 36px !important;
    padding-bottom: 42px !important;
  }

  .hero-video-frame {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-video-frame::before {
    inset: -14px !important;
    filter: blur(18px) !important;
    opacity: 0.7 !important;
  }

  .hero-video-frame::after {
    inset: 10px -8px -8px 10px !important;
    border-radius: 24px !important;
  }

  .hero-video-card {
    border-radius: 22px !important;
    box-shadow:
      0 24px 44px rgba(15, 23, 42, 0.16),
      0 10px 24px rgba(1, 113, 255, 0.12) !important;
  }

  .hero-video-card video {
    transform: scale(1.02) !important;
  }

  .hero-shirt-floating {
    display: block !important;
    width: 92px !important;
    right: 8px !important;
    bottom: -34px !important;
    transform: rotate(-5deg) !important;
  }

  .hero-shirt-floating img {
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.22)) !important;
  }

  .hero-video-area > .glass-card {
    display: flex !important;
    left: 10px !important;
    bottom: -30px !important;
    transform: scale(0.78) !important;
    transform-origin: left bottom !important;
    padding: 12px !important;
  }

  .hero-video-area .glass-card .w-12.h-12 {
    width: 40px !important;
    height: 40px !important;
  }

  .hero-video-area .glass-card p {
    line-height: 1.2 !important;
  }
}

/* ================================
   MOBILE PEQUENO
================================ */

@media (max-width: 420px) {
  .hero-video-area {
    padding-bottom: 52px !important;
  }

  .hero-shirt-floating {
    width: 82px !important;
    right: 4px !important;
    bottom: -30px !important;
  }

  .hero-video-area > .glass-card {
    transform: scale(0.72) !important;
    left: 2px !important;
    bottom: -32px !important;
  }

  .hero-video-card {
    border-radius: 20px !important;
  }
}