/*
Theme Name: DJ Luck
Theme URI: https://djluck.com.br
Author: DJ Luck
Author URI: https://djluck.com.br
Description: Tema oficial do DJ Luck - Festas e Eventos
Version: 1.0.0
License: GPL v2
Text Domain: djluck
*/

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0505;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0505;
}
::-webkit-scrollbar-thumb {
  background: rgba(255,157,157,0.2);
  border-radius: 3px;
}

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

.font-display {
  font-family: 'Inter', sans-serif;
}

.font-mono-custom {
  font-family: 'JetBrains Mono', monospace;
}

/* ========== UTILITIES ========== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

.relative {
  position: relative;
}

.w-full {
  width: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/* ========== GRID ========== */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

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

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .lg\:gap-16 {
    gap: 4rem;
  }
}

/* ========== SPACING ========== */
.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-28 {
  padding-top: 7rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:mb-14 {
    margin-bottom: 3.5rem;
  }
  .md\:mb-20 {
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ========== TEXT ========== */
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.break-all {
  word-break: break-all;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .md\:text-right {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

/* ========== COLORS ========== */
.text-white {
  color: #ffffff;
}

.text-white\/30 {
  color: rgba(255,255,255,0.3);
}

.text-white\/40 {
  color: rgba(255,255,255,0.4);
}

.text-white\/50 {
  color: rgba(255,255,255,0.5);
}

.text-white\/60 {
  color: rgba(255,255,255,0.6);
}

.text-white\/70 {
  color: rgba(255,255,255,0.7);
}

.text-white\/90 {
  color: rgba(255,255,255,0.9);
}

.text-\[\#FF2D2D\] {
  color: #FF2D2D;
}

.text-\[\#FF4D4D\] {
  color: #FF4D4D;
}

.text-transparent {
  color: transparent;
}

.bg-black {
  background-color: #000000;
}

.bg-\[\#0a0505\] {
  background-color: #0a0505;
}

.bg-\[\#1a0808\] {
  background-color: #1a0808;
}

.bg-\[\#1a1a1a\] {
  background-color: #1a1a1a;
}

.bg-white\/5 {
  background-color: rgba(255,255,255,0.05);
}

.bg-white\/10 {
  background-color: rgba(255,255,255,0.10);
}

.bg-\[\#FF2D2D\]\/10 {
  background-color: rgba(255,45,45,0.10);
}

.bg-\[\#FF2D2D\]\/20 {
  background-color: rgba(255,45,45,0.20);
}

.bg-\[\#FF2D2D\]\/30 {
  background-color: rgba(255,45,45,0.30);
}

.bg-\[\#FF2D2D\]\/40 {
  background-color: rgba(255,45,45,0.40);
}

/* ========== GRADIENT TEXT ========== */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-\[\#FF2D2D\] {
  --tw-gradient-from: #FF2D2D;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#FF4D4D\] {
  --tw-gradient-from: #FF4D4D;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#8B0000\] {
  --tw-gradient-from: #8B0000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#0a0505\] {
  --tw-gradient-from: #0a0505;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#0f0505\] {
  --tw-gradient-from: #0f0505;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#1a0808\] {
  --tw-gradient-from: #1a0808;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white\/10 {
  --tw-gradient-from: rgba(255,255,255,0.10);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white\/\[0\.06\] {
  --tw-gradient-from: rgba(255,255,255,0.06);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white\/\[0\.08\] {
  --tw-gradient-from: rgba(255,255,255,0.08);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-emerald-500 {
  --tw-gradient-from: #10b981;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-\[\#FF4D4D\] {
  --tw-gradient-stops: var(--tw-gradient-from), #FF4D4D, var(--tw-gradient-to);
}

.via-\[\#1a0808\] {
  --tw-gradient-stops: var(--tw-gradient-from), #1a0808, var(--tw-gradient-to);
}

.via-transparent {
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to);
}

.via-\[\#FF2D2D\] {
  --tw-gradient-stops: var(--tw-gradient-from), #FF2D2D, var(--tw-gradient-to);
}

.to-\[\#FF4D4D\] {
  --tw-gradient-to: #FF4D4D;
}

.to-\[\#8B0000\] {
  --tw-gradient-to: #8B0000;
}

.to-\[\#0a0505\] {
  --tw-gradient-to: #0a0505;
}

.to-\[\#050202\] {
  --tw-gradient-to: #050202;
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.to-white\/5 {
  --tw-gradient-to: rgba(255,255,255,0.05);
}

.to-white\/\[0\.02\] {
  --tw-gradient-to: rgba(255,255,255,0.02);
}

.to-emerald-600 {
  --tw-gradient-to: #059669;
}

/* ========== BORDERS ========== */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-\[32px\] {
  border-radius: 32px;
}

.rounded-\[40px\] {
  border-radius: 40px;
}

.border-white\/10 {
  border-color: rgba(255,255,255,0.10);
}

.border-\[\#FF2D2D\]\/20 {
  border-color: rgba(255,45,45,0.20);
}

.border-\[\#FF2D2D\]\/30 {
  border-color: rgba(255,45,45,0.30);
}

.border-\[\#FF2D2D\]\/40 {
  border-color: rgba(255,45,45,0.40);
}

.border-\[\#FF2D2D\]\/50 {
  border-color: rgba(255,45,45,0.50);
}

/* ========== BACKDROP BLUR ========== */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ========== SHADOWS ========== */
.shadow-\[0_0_15px_rgba\(255\,45\,45\,0\.4\)\] {
  box-shadow: 0 0 15px rgba(255,45,45,0.4);
}

.shadow-\[0_0_30px_rgba\(255\,45\,45\,0\.5\)\] {
  box-shadow: 0 0 30px rgba(255,45,45,0.5);
}

.shadow-\[0_0_40px_rgba\(255\,45\,45\,0\.3\)\] {
  box-shadow: 0 0 40px rgba(255,45,45,0.3);
}

.shadow-\[0_0_40px_rgba\(255\,45\,45\,0\.5\)\] {
  box-shadow: 0 0 40px rgba(255,45,45,0.5);
}

.shadow-\[0_0_60px_rgba\(255\,45\,45\,0\.3\)\] {
  box-shadow: 0 0 60px rgba(255,45,45,0.3);
}

.shadow-\[0_0_20px_rgba\(16\,185\,129\,0\.4\)\] {
  box-shadow: 0 0 20px rgba(16,185,129,0.4);
}

.drop-shadow-\[0_0_15px_rgba\(255\,45\,45\,0\.5\)\] {
  filter: drop-shadow(0 0 15px rgba(255,45,45,0.5));
}

/* ========== FILTERS ========== */
.filter {
  filter: var(--tw-filter);
}

.brightness-90 {
  --tw-filter: brightness(0.9);
}

.hover\:brightness-110:hover {
  --tw-filter: brightness(1.1);
}

.blur-\[40px\] {
  filter: blur(40px);
}

.blur-\[60px\] {
  filter: blur(60px);
}

.blur-\[150px\] {
  filter: blur(150px);
}

.blur-\[180px\] {
  filter: blur(180px);
}

.blur-\[120px\] {
  filter: blur(120px);
}

.blur-\[200px\] {
  filter: blur(200px);
}

/* ========== ASPECT RATIO ========== */
.aspect-\[9\/16\] {
  aspect-ratio: 9/16;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3/4;
}

.aspect-square {
  aspect-ratio: 1/1;
}

/* ========== SIZES ========== */
.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-36 {
  width: 9rem;
}

.w-48 {
  width: 12rem;
}

.w-\[280px\] {
  width: 280px;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-24 {
  height: 6rem;
}

.h-36 {
  height: 9rem;
}

.h-px {
  height: 1px;
}

.h-48 {
  height: 12rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-\[100px\] {
  max-width: 100px;
}

@media (min-width: 768px) {
  .md\:w-16 {
    width: 4rem;
  }
  .md\:w-56 {
    width: 14rem;
  }
  .md\:w-\[320px\] {
    width: 320px;
  }
  .md\:h-16 {
    height: 4rem;
  }
}

@media (min-width: 1024px) {
  .lg\:w-36 {
    width: 9rem;
  }
  .lg\:h-36 {
    height: 9rem;
  }
}

/* ========== POSITION ========== */
.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-6 {
  top: 1.5rem;
}

.top-20 {
  top: 5rem;
}

.-top-8 {
  top: -2rem;
}

.-top-20 {
  top: -5rem;
}

.-top-6 {
  top: -1.5rem;
}

.right-4 {
  right: 1rem;
}

.-right-6 {
  right: -1.5rem;
}

.-right-20 {
  right: -5rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.-bottom-6 {
  bottom: -1.5rem;
}

.-bottom-10 {
  bottom: -2.5rem;
}

.bottom-32 {
  bottom: 8rem;
}

.left-6 {
  left: 1.5rem;
}

.left-1\/2 {
  left: 50%;
}

.-left-6 {
  left: -1.5rem;
}

.-z-10 {
  z-index: -10;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

@media (min-width: 768px) {
  .md\:right-6 {
    right: 1.5rem;
  }
  .md\:right-8 {
    right: 2rem;
  }
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.translate-x-\[-150px\] {
  transform: translateX(-150px);
}

/* ========== FLEX SHRINK ========== */
.flex-shrink-0 {
  flex-shrink: 0;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* ========== OBJECT FIT ========== */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* ========== ANIMATIONS ========== */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255,45,45,0.5), 0 0 40px rgba(255,45,45,0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 30px rgba(255,45,45,0.8), 0 0 60px rgba(255,45,45,0.5);
    transform: scale(1.02);
  }
}

.animate-glow-pulse {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin 8s linear infinite;
}

/* ========== TRANSITIONS ========== */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-\[1\.02\]:hover {
  transform: scale(1.02);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

/* ========== ORDER ========== */
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }
  .lg\:order-2 {
    order: 2;
  }
}

/* ========== RESPONSIVE DISPLAY ========== */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
}

/* ========== FOCUS ========== */
.focus\:outline-none:focus {
  outline: none;
}

/* ========== POINTER EVENTS ========== */
.pointer-events-none {
  pointer-events: none;
}

/* ========== GALLERY STRIP ========== */
.gallery-strip {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-strip-bottom {
  display: flex;
  gap: 1rem;
  transform: translateX(-150px);
}

.gallery-item {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,45,45,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== FORM INPUTS ========== */
input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
select {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  width: 100%;
  outline: none;
  transition: all 0.15s ease;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder {
  color: rgba(255,255,255,0.3);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus {
  border-color: rgba(255,45,45,0.5);
  box-shadow: 0 0 15px rgba(255,45,45,0.15);
}

input[type="date"],
input[type="time"] {
  color-scheme: dark;
}

select option {
  background-color: #1a0808;
  color: #ffffff;
}

/* ========== VIDEO ========== */
video {
  display: block;
}

/* ========== QUOTE ========== */
.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255,45,45,0.4);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(10,5,5,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,45,45,0.2);
  padding: 1rem 0;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, #10b981, #059669);
  border-radius: 9999px;
  box-shadow: 0 0 30px rgba(16,185,129,0.5);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  box-shadow: 0 0 40px rgba(16,185,129,0.7);
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .whatsapp-btn {
    right: 1.5rem;
  }
}

/* ========== SPINNING FLYER ========== */
.spinning-flyer {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 6rem;
  height: 6rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .spinning-flyer {
    right: 2rem;
  }
}

@media (min-width: 1024px) {
  .spinning-flyer {
    width: 9rem;
    height: 9rem;
  }
}

.spinning-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
  border: 2px solid rgba(255,45,45,0.4);
  box-shadow: 0 0 40px rgba(255,45,45,0.3);
  animation: spin 8s linear infinite;
}

/* ========== GLOW LINE ========== */
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,45,45,0.3), transparent);
}

/* ========== NAV ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(10,5,5,0.9), transparent);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-pills {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background-color: rgba(255,45,45,0.1);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255,45,45,0.3);
}

@media (min-width: 768px) {
  .nav-pills {
    display: flex;
  }
}

.nav-pill {
  padding: 0.5rem 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  border-radius: 9999px;
  transition: all 0.15s ease;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-pill:hover {
  color: #FF2D2D;
  background-color: rgba(255,45,45,0.1);
}

/* ========== HERO CARD ========== */
.hero-card {
  background: linear-gradient(to bottom right, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,45,45,0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,45,45,0.15);
}

@media (min-width: 768px) {
  .hero-card {
    padding: 2rem;
  }
}

/* ========== PARTNER CARD ========== */
.partner-card {
  position: relative;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,45,45,0.2);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
}

.partner-card:hover {
  border-color: rgba(255,45,45,0.6);
  box-shadow: 0 0 30px rgba(255,45,45,0.25);
  transform: scale(1.05);
}

/* ========== CONTACT CARD ========== */
.contact-card {
  background: linear-gradient(to bottom right, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,45,45,0.2);
  transition: all 0.15s ease;
}

.contact-card:hover {
  border-color: rgba(255,45,45,0.4);
}

/* ========== FORM CARD ========== */
.form-card {
  background: linear-gradient(to bottom right, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,45,45,0.2);
  transition: all 0.15s ease;
}

.form-card:hover {
  border-color: rgba(255,45,45,0.4);
}

/* ========== SERVICE OPTION ========== */
.service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.15s ease;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.service-option:hover {
  border-color: rgba(255,45,45,0.3);
  color: #ffffff;
}

.service-option.active {
  background: linear-gradient(to right, #FF2D2D, #FF4D4D);
  color: #ffffff;
  border-color: rgba(255,45,45,0.5);
  box-shadow: 0 0 15px rgba(255,45,45,0.4);
}

/* ========== SOCIAL CARD ========== */
.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.15s ease;
}

.social-card:hover {
  border-color: rgba(255,45,45,0.5);
  background-color: rgba(255,45,45,0.1);
}

/* ========== TESTIMONIAL NAV ========== */
.testimonial-nav {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,45,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s ease;
  background: none;
  cursor: pointer;
}

.testimonial-nav:hover {
  border-color: #FF2D2D;
  color: #FF2D2D;
}

/* ========== DOT INDICATOR ========== */
.dot-indicator {
  height: 0.5rem;
  border-radius: 9999px;
  transition: all 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.dot-indicator.active {
  width: 2.5rem;
  background: linear-gradient(to right, #FF2D2D, #FF4D4D);
}

.dot-indicator:not(.active) {
  width: 0.5rem;
  background-color: rgba(255,255,255,0.3);
}

/* ========== BENEFIT ITEM ========== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.15s ease;
}

.benefit-item:hover {
  border-color: rgba(255,45,45,0.3);
}

/* ========== STAT ITEM ========== */
.stat-item {
  text-align: center;
  cursor: pointer;
}

/* ========== Z-INDEX HELPERS ========== */
.-z-10 {
  z-index: -10;
}

.z-10 {
  z-index: 10;
}

/* ========== PRINT ========== */
@media print {
  .whatsapp-btn,
  .main-nav,
  .spinning-flyer {
    display: none !important;
  }
}
