/* RESET E CONFIGURAÇÕES BÁSICAS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* PARTICLES BACKGROUND */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particles-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* FLOATING ELEMENTS */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    animation: floatUpDown 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.floating-element:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-element:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

/* LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: none;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo .animated-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 2s ease-in-out infinite, textPulse 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInOut 2s ease-in-out infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    animation: progressLoad 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes subtleGoldenGlow {
    0%, 100% { 
        text-shadow: 
            0 0 3px rgba(255, 215, 0, 0.3),
            0 0 6px rgba(255, 215, 0, 0.2),
            0 0 9px rgba(255, 215, 0, 0.1),
            1px 1px 2px rgba(255, 215, 0, 0.2);
    }
    50% { 
        text-shadow: 
            0 0 5px rgba(255, 215, 0, 0.4),
            0 0 8px rgba(255, 215, 0, 0.3),
            0 0 12px rgba(255, 215, 0, 0.2),
            2px 2px 3px rgba(255, 215, 0, 0.3);
    }
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    overflow: hidden;
    white-space: nowrap;
}

.logo-text .letter {
    display: inline-block;
    opacity: 0;
    animation: letterDrop 0.8s ease-out forwards;
}

.logo-text .letter:nth-child(1) { animation-delay: 0.1s; }
.logo-text .letter:nth-child(2) { animation-delay: 0.2s; }
.logo-text .letter:nth-child(3) { animation-delay: 0.3s; }
.logo-text .letter:nth-child(4) { animation-delay: 0.4s; }
.logo-text .letter:nth-child(5) { animation-delay: 0.5s; }
.logo-text .letter:nth-child(6) { animation-delay: 0.6s; }
.logo-text .letter:nth-child(7) { animation-delay: 0.7s; }
.logo-text .letter:nth-child(8) { animation-delay: 0.8s; }
.logo-text .letter:nth-child(9) { animation-delay: 0.9s; }
.logo-text .letter:nth-child(10) { animation-delay: 1.0s; }
.logo-text .letter:nth-child(11) { animation-delay: 1.1s; }

@keyframes logoRepeat {
    0% { 
        opacity: 0;
        transform: translateY(-20px) rotateX(90deg);
    }
    10% { 
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
    90% { 
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
    100% { 
        opacity: 0;
        transform: translateY(-20px) rotateX(90deg);
    }
}
@keyframes letterDrop {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotateX(90deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(5px) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.logo-text .letter {
    animation: letterDrop 0.8s ease-out forwards, logoRepeat 4s infinite;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #FFA500;
    display: block;
    margin-top: -5px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    animation: slideSubtitle 8s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes slideSubtitle {
    0%, 30% {
        transform: translateX(100%);
        opacity: 0;
    }
    40%, 60% {
        transform: translateX(0);
        opacity: 1;
    }
    70%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes subtitleGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFD700;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line {
    opacity: 0;
}

.menu-toggle.active .close-icon {
    opacity: 1;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/1571449/pexels-photo-1571449.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 95vh;
    padding-bottom: 20px;
}


.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 4px rgba(255, 215, 0, 0.5);
}

.hero-title .letter {
    opacity: 0;
    display: inline-block;
    animation: letterAppear 0.1s ease-in-out forwards;
}

.hero-title .cursor {
    display: inline-block;
    background: #FFD700;
    width: 3px;
    height: 1em;
    margin-left: 2px;
    animation: cursorBlink 1s infinite;
}

.hero-title.falling {
    animation: titleFallDown 3s ease-in-out forwards;
}

@keyframes letterAppear {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes titleFallDown {
    0% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
        visibility: visible;
    }
    50% {
        opacity: 0.7;
        transform: translateY(200px);
        filter: blur(2px);
        visibility: visible;
    }
    100% {
        opacity: 0;
        transform: translateY(500px);
        filter: blur(5px);
        visibility: hidden;
        display: none;
    }
}

/* ANIMAÇÕES DO JOGO DA VELHA */
.animated-image-item {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

.animated-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ANIMAÇÕES DE ENTRADA */
.animate-from-top {
    animation: slideFromTop 4s ease-out forwards;
}

.animate-from-bottom {
    animation: slideFromBottom 4s ease-out forwards;
}

.animate-from-left {
    animation: slideFromLeft 4s ease-out forwards;
}

.animate-from-right {
    animation: slideFromRight 4s ease-out forwards;
}

.animate-diagonal-tl {
    animation: slideDiagonalTL 4s ease-out forwards;
}

.animate-diagonal-tr {
    animation: slideDiagonalTR 4s ease-out forwards;
}

.animate-spiral-in {
    animation: spiralIn 4s ease-out forwards;
}

.animate-spiral-out {
    animation: spiralOut 4s ease-out forwards;
}

.animate-bounce-crazy {
    animation: bounceCrazy 4s ease-out forwards;
}

.animate-zigzag {
    animation: zigzagMotion 4s ease-out forwards;
}

.animate-wave-motion {
    animation: waveMotion 4s ease-out forwards;
}

.animate-explosion {
    animation: explosionEffect 4s ease-out forwards;
}

/* ANIMAÇÕES EXTRAS */
.animate-tornado {
    animation: animate-tornado 4s ease-out forwards;
}

.animate-matrix-rain {
    animation: animate-matrix-rain 4s ease-out forwards;
}

.animate-pulse-wave {
    animation: animate-pulse-wave 4s ease-out forwards;
}

.animate-orbit-spin {
    animation: animate-orbit-spin 4s ease-out forwards;
}

.animate-elastic-bounce {
    animation: animate-elastic-bounce 4s ease-out forwards;
}

.animate-glitch-effect {
    animation: animate-glitch-effect 4s ease-out forwards;
}

.animate-rainbow-trail {
    animation: animate-rainbow-trail 4s ease-out forwards;
}

.animate-magnetic-pull {
    animation: animate-magnetic-pull 4s ease-out forwards;
}

.animate-quantum-jump {
    animation: animate-quantum-jump 4s ease-out forwards;
}

.animate-vortex-spin {
    animation: animate-vortex-spin 4s ease-out forwards;
}

.animate-lightning-strike {
    animation: animate-lightning-strike 4s ease-out forwards;
}

.animate-cosmic-drift {
    animation: animate-cosmic-drift 4s ease-out forwards;
}

@keyframes slideFromTop {
    0% {
        transform: translateY(-100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(0) rotate(180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(0) rotate(-180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(-360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100vw) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateX(0) rotate(180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes slideFromRight {
    0% {
        transform: translateX(100vw) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateX(0) rotate(-180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateX(-100vw) rotate(-360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes slideDiagonalTL {
    0% {
        transform: translate(-100vw, -100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) rotate(180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, 100vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes slideDiagonalTR {
    0% {
        transform: translate(100vw, -100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) rotate(-180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(-100vw, 100vh) rotate(-360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes spiralIn {
    0% {
        transform: translate(-50vw, -50vh) rotate(0deg) scale(0.2);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) rotate(720deg) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(50vw, 50vh) rotate(1440deg) scale(0.2);
        opacity: 0;
    }
}

@keyframes spiralOut {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.5);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) rotate(-720deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-100vw, 100vh) rotate(-1440deg) scale(0.1);
        opacity: 0;
    }
}

@keyframes bounceCrazy {
    0% { transform: translateY(-100vh) scale(0.5) rotate(0deg); opacity: 0; }
    25% { transform: translateY(20px) scale(1.2) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-30px) scale(0.8) rotate(180deg); opacity: 1; }
    75% { transform: translateY(10px) scale(1.1) rotate(270deg); opacity: 1; }
    100% { transform: translateY(100vh) scale(0.3) rotate(360deg); opacity: 0; }
}

@keyframes zigzagMotion {
    0% { transform: translate(-100vw, -50vh) rotate(0deg); opacity: 0; }
    20% { transform: translate(-20vw, 0vh) rotate(72deg); opacity: 1; }
    40% { transform: translate(20vw, -30vh) rotate(144deg); opacity: 1; }
    60% { transform: translate(-10vw, 30vh) rotate(216deg); opacity: 1; }
    80% { transform: translate(30vw, 0vh) rotate(288deg); opacity: 1; }
    100% { transform: translate(100vw, 50vh) rotate(360deg); opacity: 0; }
}

@keyframes waveMotion {
    0% { transform: translateX(-100vw) translateY(0px) rotate(0deg); opacity: 0; }
    25% { transform: translateX(-25vw) translateY(-50px) rotate(90deg); opacity: 1; }
    50% { transform: translateX(25vw) translateY(50px) rotate(180deg); opacity: 1; }
    75% { transform: translateX(75vw) translateY(-25px) rotate(270deg); opacity: 1; }
    100% { transform: translateX(100vw) translateY(0px) rotate(360deg); opacity: 0; }
}

@keyframes explosionEffect {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(2) rotate(180deg); opacity: 1; }
    100% { transform: scale(0.1) rotate(360deg); opacity: 0; }
}

/* ANIMAÇÕES EXTRAS AVANÇADAS */
@keyframes animate-tornado {
    0% {
        transform: translate(-50vw, 100vh) rotate(0deg) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) rotate(1080deg) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translate(50vw, -100vh) rotate(2160deg) scale(0.2);
        opacity: 0;
    }
}

@keyframes animate-matrix-rain {
    0% { transform: translateY(-100vh) translateX(0) scale(1); opacity: 0; }
    25% { transform: translateY(-25vh) translateX(-10vw) scale(0.8); opacity: 1; }
    50% { transform: translateY(25vh) translateX(10vw) scale(1.2); opacity: 1; }
    75% { transform: translateY(75vh) translateX(-5vw) scale(0.9); opacity: 1; }
    100% { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
}

@keyframes animate-pulse-wave {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    25% { transform: scale(2) rotate(90deg); opacity: 0.8; }
    50% { transform: scale(0.5) rotate(180deg); opacity: 1; }
    75% { transform: scale(1.5) rotate(270deg); opacity: 0.8; }
    100% { transform: scale(0.1) rotate(360deg); opacity: 0; }
}

@keyframes animate-orbit-spin {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    25% {
        transform: translate(50vw, -25vh) rotate(90deg) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(0, -50vh) rotate(180deg) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translate(-50vw, -25vh) rotate(270deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes animate-elastic-bounce {
    0% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
    30% { transform: translateY(20px) scale(1.4); opacity: 1; }
    50% { transform: translateY(-40px) scale(0.9); opacity: 1; }
    70% { transform: translateY(10px) scale(1.2); opacity: 1; }
    85% { transform: translateY(-20px) scale(1.05); opacity: 1; }
    100% { transform: translateY(100vh) scale(0.4); opacity: 0; }
}

@keyframes animate-glitch-effect {
    0% { transform: translateX(0) skew(0deg); opacity: 1; }
    10% { transform: translateX(-5px) skew(5deg); opacity: 0.8; }
    20% { transform: translateX(5px) skew(-5deg); opacity: 1; }
    30% { transform: translateX(-3px) skew(3deg); opacity: 0.9; }
    40% { transform: translateX(3px) skew(-3deg); opacity: 1; }
    50% { transform: translateX(0) skew(0deg); opacity: 1; }
    100% { transform: translateX(0) skew(0deg); opacity: 0; }
}

@keyframes animate-rainbow-trail {
    0% {
        transform: translateX(-100vw) rotate(0deg);
        filter: hue-rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateX(0) rotate(180deg);
        filter: hue-rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) rotate(360deg);
        filter: hue-rotate(360deg);
        opacity: 0;
    }
}

@keyframes animate-magnetic-pull {
    0% {
        transform: translate(-100vw, -100vh) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, 100vh) scale(0.3);
        opacity: 0;
    }
}

@keyframes animate-quantum-jump {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    20% { transform: translate(-50vw, -25vh) scale(0.5); opacity: 1; }
    40% { transform: translate(50vw, 25vh) scale(1.5); opacity: 1; }
    60% { transform: translate(-25vw, 50vh) scale(0.8); opacity: 1; }
    80% { transform: translate(25vw, -50vh) scale(1.2); opacity: 1; }
    100% { transform: translate(0, 0) scale(0.3); opacity: 0; }
}

@keyframes animate-vortex-spin {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    25% {
        transform: translate(25vw, 25vh) rotate(180deg) scale(0.7);
        opacity: 1;
    }
    50% {
        transform: translate(-25vw, -25vh) rotate(360deg) scale(1.3);
        opacity: 1;
    }
    75% {
        transform: translate(25vw, -25vh) rotate(540deg) scale(0.9);
        opacity: 1;
    }
    100% {
        transform: translate(-25vw, 25vh) rotate(720deg) scale(0.4);
        opacity: 0;
    }
}

@keyframes animate-lightning-strike {
    0% { transform: translateY(-100vh) scaleY(0.1); opacity: 0; }
    10% { transform: translateY(0) scaleY(3); opacity: 1; }
    20% { transform: translateY(0) scaleY(0.5); opacity: 0.8; }
    30% { transform: translateY(0) scaleY(2); opacity: 1; }
    40% { transform: translateY(0) scaleY(1); opacity: 0.9; }
    100% { transform: translateY(100vh) scaleY(0.1); opacity: 0; }
}

@keyframes animate-cosmic-drift {
    0% {
        transform: translate(-100vw, 0) rotate(0deg) scale(0.5);
        opacity: 0;
        filter: blur(5px);
    }
    50% {
        transform: translate(0, 0) rotate(180deg) scale(1.2);
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        transform: translate(100vw, 0) rotate(360deg) scale(0.3);
        opacity: 0;
        filter: blur(5px);
    }
}

/* STATS SECTION */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grainMove 20s linear infinite;
}

@keyframes grainMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 15px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* CATÁLOGO SECTION */
.catalogo {
    padding: 100px 0;
    background: white;
    position: relative;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.catalogo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.catalogo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalogo-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(255, 215, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.catalogo-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.catalogo-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* PRODUTOS EM DESTAQUE */
.produtos-destaque {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.produto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.produto-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.produto-info {
    padding: 25px;
}

.produto-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.produto-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.produto-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
}

.produto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.produto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* SHOW MORE BUTTONS */
.show-more-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: showMorePulse 3s ease-in-out infinite;
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@keyframes showMorePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* SOBRE SECTION */
.sobre {
    padding: 100px 0;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text h2 {
    margin-bottom: 30px;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.info-icon {
    font-size: 2rem;
    color: #FFD700;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.info-content p {
    color: #666;
    margin: 0;
}

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: -120px;
}

.sobre-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sobre-image:hover img {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        width: 200px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .catalogo-grid,
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .animated-image-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .animated-image-item {
        width: 80px;
        height: 80px;
    }
}