@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Cores Base */
    --background: #000000;
    --surface-1: #0a0a0a;
    --surface-2: #121212;
    --surface-3: #1a1a1a;
    --navbar-height: 64px;

    /* Cores Neon */
    --primary: #ff1493;        /* Hot Pink */
    --primary-glow: #ff69b4;
    --secondary: #00d4ff;      /* Cyan */
    --accent: #ff6b35;         /* Orange */
    --neon-purple: #9945ff;
    --gold: #ffd700;
    --muted-foreground: #888888;
    --card: #0a0a0a;
    --border: rgba(255, 255, 255, 0.1);
    --radius: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    /* Tipografia */
    --font-sans: 'Outfit', system-ui, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Outros */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(255, 20, 147, 0.3);
}

/* Reset Básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    background-color: var(--background);
    color: #fafafa;
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.1;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    html { font-size: 15px; }
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 4rem 0;
}

@media (min-width: 769px) {
    .hero + .section {
        padding-top: 0.75rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #888888;
}

.gradient-text {
    background: linear-gradient(135deg, #ff1493 0%, #9945ff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
}

.glass-premium {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled, nav.navbar-scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img, .logo img {
    height: 40px;
    width: auto;
}

.navbar-menu, .nav-links {
    display: none;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .navbar-menu, .nav-links {
        display: flex;
    }
    .navbar-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    .navbar-logo { justify-self: start; }
    .navbar-menu { justify-self: center; }
    .navbar-container > div:last-child { justify-self: end; }
}

.navbar-link, .nav-link {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #e6e6e6;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.navbar-link::after, .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff1493, #9945ff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-link:hover, .navbar-link.active,
.nav-link:hover, .nav-link.active {
    color: #fafafa;
}

.navbar-link:hover::after, .navbar-link.active::after,
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Burger Menu */
.burger {
    display: block;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}
@media (min-width: 1024px) { .burger, .lg-hide { display: none; } }

.desktop-only { display: none; }
@media (min-width: 1024px) { .desktop-only { display: inline-flex; } }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link { font-size: 1.5rem; color: rgba(255,255,255,0.7); }
.mobile-menu .nav-link.active { color: #fff; }
@media (max-width: 768px) {
  .mobile-menu .nav-link { font-size: 1.25rem; }
}

/* Mobile Navbar Spacing */
@media (max-width: 768px) {
  .navbar-logo { 
    padding-top: 0.75rem; 
    display: inline-flex; 
    align-items: center;
  }
  .navbar-container { 
    padding-top: 0.5rem; 
  }
  .navbar .container > div:last-child { 
    padding-top: 0.75rem; 
  }
}

/* Mobile Menu Close Button */
.mobile-close {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}
.mobile-close:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.12);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.2);
}
.mobile-close i {
    width: 22px;
    height: 22px;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.navbar-actions a { color: #fff; }

@media (min-width: 1024px) {
  .navbar.scrolled .navbar-link, .navbar.scrolled .nav-link,
  nav.navbar-scrolled .navbar-link, nav.navbar-scrolled .nav-link {
    color: #eaeaea;
  }
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-glow {
    background: linear-gradient(135deg, #ff1493 0%, #9945ff 100%);
    color: white;
    box-shadow: 
        0 4px 20px rgba(255, 20, 147, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 40px rgba(255, 20, 147, 0.5),
        0 0 60px rgba(255, 20, 147, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fafafa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.2);
}

.hero-cta .btn-outline {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.hero-cta .btn-outline:hover {
    background: rgba(255, 20, 147, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: calc(88vh - var(--navbar-height));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
    margin-top: var(--navbar-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-banner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
.hero-banner picture, .hero-banner img {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-banner img {
    object-fit: contain;
}
@media (max-width: 768px) {
    :root { --navbar-height: 88px; }
    .hero { padding: 8px; }
    .hero-slide { border-radius: 4px; }
    .hero-banner { padding: 8px; }
    .hero-banner img {
        object-fit: cover;
        border-radius: 4px;
    }
    .scroll-indicator {
        color: #fff;
        opacity: 0.95;
        filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
    }
}
.hero-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 3;
    pointer-events: none;
}
.hero-arrow {
    pointer-events: auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
    opacity: 0.85;
}
.hero-arrow:hover { background: rgba(255,255,255,0.16); transform: scale(1.05); opacity: 1; }
.hero-arrow svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .hero-arrow { width: 28px; height: 28px; } }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slides ~ .hero-content {
    margin-top: 4rem;
}

@media (max-width: 768px) {
  .hero-content { bottom: 8px; }
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    filter: none;
}

.hero p {
    font-size: clamp(0.9375rem, 1.7vw, 1.125rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}
.hero-cta { margin-top: 0; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.hero-logo-float { animation: float 6s ease-in-out infinite; }


/* ============================================
   CARDS 3D
   ============================================ */
.card-3d, .menu-card {
    position: relative;
    background: linear-gradient(145deg, #121212 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.75rem;
}

.card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 55%, transparent 60%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.card-3d:hover, .menu-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(255, 20, 147, 0.1);
}

.card-3d:hover::before { transform: translateX(100%); }


/* Menu Card Specifics */
.menu-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 0.5625rem;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 0.84375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.menu-card-description {
    font-size: 0.65625rem;
    color: #888888;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-premium {
    font-family: var(--font-display);
    font-size: 0.84375rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-neon {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ff1493 0%, #9945ff 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 20, 147, 0.6); }
}

.menu-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
}

/* Grids */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.9375rem;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .menu-card {
        padding: 0.5rem;
    }
    .menu-card-image {
        aspect-ratio: 1;
        margin-bottom: 0.5rem;
    }
    .menu-card-title {
        font-size: 0.78125rem;
    }
    .menu-card-description {
        font-size: 0.625rem;
        line-clamp: 2;
        -webkit-line-clamp: 2;
    }
    .price-premium {
        font-size: 0.78125rem;
    }
}

/* Featured (smaller cards) */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
.featured-grid .menu-card {
    padding: 0.5rem;
}
.featured-grid .menu-card-image {
    aspect-ratio: 1;
    margin-bottom: 0.5rem;
}
.featured-grid .menu-card-title {
    font-size: 0.78125rem;
}
.featured-grid .menu-card-description {
    font-size: 0.625rem;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}
.featured-grid .price-premium {
    font-size: 0.78125rem;
}

/* ============================================
   GALERIA
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.gallery-item-overlay h3 { color: #fff; }
.gallery-item-overlay span { font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.gallery-item-overlay p { font-size: 0.75rem; color: rgba(255,255,255,0.9); margin-top: 0.25rem; }
.gallery-badge {
    background: rgba(0,0,0,0.6);
    padding: 4px 12px;
    border-radius: 99px;
    backdrop-filter: blur(4px);
    font-size: 0.7rem;
    color: #fff;
    margin-bottom: 0.5rem;
    display: inline-block;
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(1.75rem, 6.5vw, 2.25rem); }
  .hero p { font-size: 0.875rem; }
  .hero-cta { margin-top: 0; }
  .section { padding: 2.25rem 0; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.9375rem; }
  .btn-outline, .btn-glow { padding: 0.5rem 1rem; font-size: 0.9375rem; }
  .gallery-grid { gap: 0.75rem; }
  .gallery-item-title { font-size: 0.8125rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 42px;
    margin-bottom: 1rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #eaeaea;
}

.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: #888888;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #ff1493; }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #888888;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #ff1493;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.875rem;
}
.footer-map {
    width: 100%;
    max-width: 280px;
    height: 160px;
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.footer-map:hover { filter: grayscale(0%); }
@media (max-width: 768px) {
    .footer { padding: 0.25rem 0; }
    .footer-content {
        grid-template-columns: auto auto;
        gap: 1rem;
        justify-content: center;
        justify-items: center;
        align-items: center;
        text-align: center;
    }
    .footer-content img[alt="El Terreno"] { height: 26px !important; margin-bottom: 0.25rem !important; }
    .footer-content > div:nth-child(2) { display: none; }
    .footer-content > div:first-child p,
    .footer-content > div:first-child .footer-title { display: none; }
    .footer-content > div:last-child { display: none; }
    .footer-social { gap: 0.5rem; }
    .footer-social a { width: 1.25rem; height: 1.25rem; }
    .footer-bottom { display: none; }
}

/* Category Nav (Sticky) */
.category-nav-sticky {
    position: sticky;
    top: 64px;
    z-index: 900;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    margin-bottom: 3rem;
}

.category-nav-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    padding: 0.25rem;
}
.category-nav-list::-webkit-scrollbar { display: none; }

.cat-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.6rem 1.4rem;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    white-space: nowrap;
}
.cat-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.cat-btn.active {
    background: linear-gradient(135deg, #ff1493, #9945ff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(255, 33, 140, 0.4);
}

@media (max-width: 768px) {
    .category-nav-sticky {
        padding: 0.5rem 0;
        margin-bottom: 1.5rem;
    }
    .category-nav-list {
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0.25rem 0.25rem;
    }
    .cat-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.6875rem;
    }
}
        .glow-seq { position: relative; z-index: 0; border-radius: 10px; }
        .glow-seq::before {
            content: '';
            position: absolute; inset: 0;
            padding: 2px;
            border-radius: inherit;
            background: linear-gradient(45deg,
              #ff1493 0%,
              #9945ff 16.67%,
              #00d4ff 33.33%,
              #ff1493 50%,
              #9945ff 66.67%,
              #00d4ff 83.33%,
              #ff1493 100%
            );
            background-size: 600% 600%;
            filter: blur(6px);
            z-index: -1;
            opacity: 0;
            transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            animation: glowing 20s linear infinite;
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }
        .glow-active.glow-seq::before { opacity: 1; }
        @keyframes glowing {
            0% { background-position: 0 0; }
            50% { background-position: 400% 0; }
            100% { background-position: 0 0; }
        }
        
        .scroll-indicator {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            opacity: 0.7;
            transition: opacity .2s ease;
            z-index: 10;
            margin-top: 1.25rem;
            animation: floatScroll 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
.scroll-indicator:hover { opacity: 0.95; }
.scroll-indicator svg { stroke-width: 1.25; display: block; }
.scroll-indicator i[data-lucide="mouse"] { width: 20px; height: 20px; }
.scroll-indicator .arrow { width: 12px; height: 12px; }
@keyframes floatScroll {
    0% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(5px); opacity: 0.92; }
    100% { transform: translateY(0); opacity: 0.7; }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero-cta { margin-bottom: 0.25rem; }
  .scroll-indicator { 
    margin-top: 0.25rem; 
    color: #fff; 
    opacity: 0.95; 
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.35)); 
  }
}
.section-actions { text-align: center; margin-top: 3rem; margin-bottom: 3rem; }
.hero-page { min-height: 50vh; padding: 8rem 0 4rem; }
.hero .container { text-align: center; position: relative; z-index: 10; }

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2010;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: min(96vw, 1400px);
    max-height: 85vh;
    border-radius: var(--radius-lg);
}

:root {
    --hsl-background: 0 0% 0%;
    --hsl-foreground: 0 0% 98%;
    --hsl-surface-1: 0 0% 4%;
    --hsl-surface-2: 0 0% 7%;
    --hsl-surface-3: 0 0% 10%;
    --hsl-card: 0 0% 5%;
    --hsl-primary: 330 100% 60%;
    --hsl-primary-foreground: 0 0% 100%;
    --hsl-primary-muted: 330 70% 40%;
    --hsl-primary-glow: 330 100% 70%;
    --hsl-neon-pink: 330 100% 60%;
    --hsl-secondary: 185 100% 50%;
    --hsl-neon-cyan: 185 100% 50%;
    --hsl-neon-purple: 280 80% 55%;
    --hsl-neon-orange: 25 100% 55%;
    --hsl-accent: 25 100% 55%;
    --hsl-gold: 45 100% 55%;
    --hsl-gold-muted: 45 60% 40%;
    --hsl-muted: 0 0% 12%;
    --hsl-muted-foreground: 0 0% 50%;
    --hsl-border: 0 0% 15%;
    --hsl-input: 0 0% 10%;
    --hsl-ring: 330 100% 60%;
    --hsl-shine: 0 0% 100%;
    --hsl-shine-subtle: 0 0% 100%;
}

.glossy-black {
    position: relative;
    background: linear-gradient(135deg, hsl(var(--hsl-surface-2)) 0%, hsl(0 0% 2%) 50%, hsl(var(--hsl-surface-1)) 100%);
}
.glossy-black::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, hsl(0 0% 100% / 0.03) 30%, transparent 50%, hsl(0 0% 100% / 0.02) 80%, transparent 100%);
}

.shine-reflection {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(115deg, transparent 0%, transparent 40%, hsl(0 0% 100% / 0.05) 45%, hsl(0 0% 100% / 0.08) 50%, hsl(0 0% 100% / 0.05) 55%, transparent 60%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.group:hover .shine-reflection { transform: translateX(100%); }

.glass-premium {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(0 0% 100% / 0.06) 0%, hsl(0 0% 100% / 0.02) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid hsl(0 0% 100% / 0.08);
    box-shadow: 0 8px 32px hsl(0 0% 0% / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.1);
}
.glass-subtle {
    position: relative;
    overflow: hidden;
    background: hsl(0 0% 100% / 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(0 0% 100% / 0.05);
}

.ambient-glow {
    position: absolute;
    inset: -4px;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
    background: radial-gradient(ellipse at center, hsl(330 100% 60% / 0.15) 0%, transparent 70%);
    filter: blur(20px);
}
.group:hover .ambient-glow { opacity: 1; }

.card-3d {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(145deg, hsl(var(--hsl-surface-2)) 0%, hsl(var(--hsl-surface-1)) 100%);
    border: 1px solid hsl(var(--hsl-border) / 0.5);
    box-shadow: 0 4px 24px hsl(0 0% 0% / 0.3), 0 1px 3px hsl(0 0% 0% / 0.2);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-3d:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 60px hsl(0 0% 0% / 0.5), 0 10px 30px hsl(330 100% 60% / 0.1), 0 1px 3px hsl(0 0% 0% / 0.2);
    border-color: hsl(330 100% 60% / 0.3);
}

.card-float {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: hsl(var(--hsl-card));
    border: 1px solid hsl(var(--hsl-border) / 0.3);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px hsl(0 0% 0% / 0.5), 0 0 60px hsl(330 100% 60% / 0.15);
    border-color: hsl(330 100% 60% / 0.4);
}

.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    font-weight: 500;
    background: linear-gradient(135deg, hsl(330 100% 60%) 0%, hsl(280 80% 55%) 100%);
    box-shadow: 0 4px 20px hsl(330 100% 60% / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(280 80% 55%) 0%, hsl(185 100% 50%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px hsl(330 100% 60% / 0.5), 0 0 60px hsl(330 100% 60% / 0.3), inset 0 1px 0 hsl(0 0% 100% / 0.3);
}
.btn-glow:hover::before { opacity: 1; }
.btn-glow > * { position: relative; z-index: 10; }

.btn-outline-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    background: transparent;
    border: 1px solid hsl(var(--hsl-border));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    opacity: 0;
    background: linear-gradient(135deg, hsl(330 100% 60% / 0.1) 0%, hsl(280 80% 55% / 0.05) 100%);
    transition: opacity 0.4s ease;
}
.btn-outline-glow:hover {
    border-color: hsl(330 100% 60% / 0.5);
    box-shadow: 0 0 30px hsl(330 100% 60% / 0.2), inset 0 0 20px hsl(330 100% 60% / 0.05);
}
.btn-outline-glow:hover::before { opacity: 1; }

.badge-neon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, hsl(330 100% 60%) 0%, hsl(280 80% 55%) 100%);
    color: #fff;
    box-shadow: 0 0 20px hsl(330 100% 60% / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.2);
    animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 20px hsl(330 100% 60% / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.2); }
    50% { box-shadow: 0 0 30px hsl(330 100% 60% / 0.6), inset 0 1px 0 hsl(0 0% 100% / 0.3); }
}
.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: hsl(0 0% 100% / 0.06);
    border: 1px solid hsl(0 0% 100% / 0.1);
    backdrop-filter: blur(8px);
    color: hsl(var(--hsl-muted-foreground));
}

.price-premium {
    font-weight: 600;
    background: linear-gradient(135deg, hsl(45 100% 55%) 0%, hsl(25 100% 55%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px hsl(45 100% 55% / 0.3);
}

.gradient-text-primary {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, hsl(330 100% 60%) 0%, hsl(280 80% 55%) 50%, hsl(185 100% 50%) 100%);
}
.gradient-text-warm {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, hsl(25 100% 55%) 0%, hsl(330 100% 60%) 50%, hsl(280 80% 55%) 100%);
}

.divider-glow {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, hsl(330 100% 60% / 0.5) 20%, hsl(330 100% 60%) 50%, hsl(330 100% 60% / 0.5) 80%, transparent 100%);
    box-shadow: 0 0 20px hsl(330 100% 60% / 0.5);
}
.divider-subtle {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, hsl(var(--hsl-border)) 50%, transparent 100%);
}

.section-compact {
    padding-top: 0;
    padding-bottom: 0;
}

.border-top-gradient-primary {
    position: relative;
}
.border-top-gradient-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(45deg,
      #ff1493 0%,
      #9945ff 16.67%,
      #00d4ff 33.33%,
      #ff1493 50%,
      #9945ff 66.67%,
      #00d4ff 83.33%,
      #ff1493 100%
    );
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.35);
    background-size: 600% 600%;
    will-change: background-position;
    animation: glowing var(--border-top-speed-s, 20s) linear infinite;
}

.border-top-gradient-warm {
    position: relative;
}
.border-top-gradient-warm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(45deg,
      #ff1493 0%,
      #9945ff 16.67%,
      #00d4ff 33.33%,
      #ff1493 50%,
      #9945ff 66.67%,
      #00d4ff 83.33%,
      #ff1493 100%
    );
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.35);
    background-size: 600% 600%;
    will-change: background-position;
    animation: glowing var(--border-top-speed-s, 20s) linear infinite;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .border-top-gradient-primary::before,
  .border-top-gradient-warm::before {
    animation: none;
  }
}
@media (min-width: 1024px) {
  .border-top-gradient-primary::before,
  .border-top-gradient-warm::before {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
  }
}

.bg-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.008;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.bg-mesh-gradient {
    background:
      radial-gradient(ellipse 100% 60% at 20% 40%, hsl(330 100% 60% / 0.03) 0%, transparent 60%),
      radial-gradient(ellipse 80% 50% at 80% 20%, hsl(280 80% 55% / 0.02) 0%, transparent 60%),
      radial-gradient(ellipse 70% 60% at 50% 80%, hsl(185 100% 50% / 0.015) 0%, transparent 60%);
}
.bg-grid {
    background-image:
      linear-gradient(hsl(var(--hsl-border) / 0.08) 1px, transparent 1px),
      linear-gradient(90deg, hsl(var(--hsl-border) / 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.orb { position: absolute; border-radius: 9999px; animation: float 6s ease-in-out infinite; filter: blur(100px); opacity: 0.15; }
.orb-primary { background: radial-gradient(circle, hsl(330 100% 60%) 0%, transparent 60%); }
.orb-secondary { background: radial-gradient(circle, hsl(280 80% 55%) 0%, transparent 60%); }
.orb-accent { background: radial-gradient(circle, hsl(185 100% 50%) 0%, transparent 60%); }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

.link-magnetic {
    position: relative;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.link-magnetic::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: linear-gradient(90deg, hsl(330 100% 60%), hsl(280 80% 55%));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.link-magnetic:hover::after { transform: scaleX(1); transform-origin: left; }

@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes scale-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px hsl(330 100% 60% / 0.3); transform: scale(1); }
    50% { box-shadow: 0 0 40px hsl(330 100% 60% / 0.5); transform: scale(1.02); }
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes borderDrift {
    0%   { background-position:   0% 0; }
    20%  { background-position:  12% 0; }
    40%  { background-position:   6% 0; }
    60%  { background-position:  18% 0; }
    80%  { background-position:  10% 0; }
    100% { background-position:  14% 0; }
}

.animate-fade-up { animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in { animation: fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }

.img-reveal { overflow: hidden; }
.img-reveal img { transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.img-reveal:hover img { transform: scale(1.1); filter: brightness(1.1); }

/* Reveal Once (Blur-In) */
.reveal-blur {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(8px);
    transition:
      filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: filter, opacity, transform;
}
.reveal-active {
    opacity: 1;
    filter: blur(0);
    transform: none;
}
/* Side reveal variations */
.reveal-side {
    opacity: 0;
    filter: blur(10px);
    transition:
      filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: filter, opacity, transform;
}
.reveal-side-left { transform: translateX(22px); }
.reveal-side-right { transform: translateX(-22px); }
.reveal-active-bounce { animation: revealBounce 900ms cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes revealBounce {
  0%   { transform: scale(0.99); }
  40%  { transform: scale(1.015); }
  70%  { transform: scale(1.002); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-blur, .reveal-active {
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .reveal-side, .reveal-side-left, .reveal-side-right,
  .reveal-active-bounce { transition: none !important; animation: none !important; transform: none !important; opacity: 1 !important; filter: none !important; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: hsl(var(--hsl-background)); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, hsl(330 100% 60% / 0.5) 0%, hsl(280 80% 55% / 0.5) 100%);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, hsl(330 100% 60%) 0%, hsl(280 80% 55%) 100%);
}

.perspective-1000 { perspective: 1000px; }
.preserve-3d { transform-style: preserve-3d; }
@media (min-width: 1024px) {
  .hero-content { bottom: 8px; }
  .hero-cta { margin-top: calc(3.5rem + 2px); margin-bottom: 1rem; }
  .scroll-indicator { margin-top: calc(1rem + 2px); }
}
/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.35), 0 0 30px rgba(34, 197, 94, 0.25);
    z-index: 1100;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, opacity 0.2s ease;
    opacity: 0.95;
    animation: fabFloat 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0,0,0,0.45), 0 0 40px rgba(34, 197, 94, 0.35);
    opacity: 1;
}
.whatsapp-fab i { width: 26px; height: 26px; }
@keyframes fabFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@media (max-width: 768px) {
  .whatsapp-fab { width: 44px; height: 44px; bottom: 14px; right: 14px; }
  .whatsapp-fab i { width: 22px; height: 22px; }
}
