/* assets/css/landing.css */

:root {
    --color-primary: #0056b3;
    /* Royal Blue fallback */
    --color-royal-blue: #4169E1;
    --color-neon-purple: #00eee8;
    --color-graphite: #121212;
    --color-dark-bg: #0a0a0a;
    --color-text-light: #e0e0e0;
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: white;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-royal-blue), var(--color-neon-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.2);
    border-color: rgba(65, 105, 225, 0.3);
}

/* Buttons */
.btn-neon {
    background: linear-gradient(90deg, var(--color-royal-blue), var(--color-neon-purple));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.5);
    text-decoration: none;
    display: inline-block;
}

.btn-neon:hover {
    box-shadow: 0 0 25px rgba(0, 238, 232, 0.7);
    transform: scale(1.05);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero-bg {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(65, 105, 225, 0.15) 0%, transparent 70%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=') repeat;
    opacity: 0.5;
    z-index: -1;
    animation: moveBackground 100s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}



/* Showcase Animation - Girar Produto Slow Motion */
.container-produto {
  perspective: 1000px; /* Cria um ambiente 3D */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px; /* Reduzido para maximizar a imagem no mobile */
}

@media (min-width: 768px) {
  .container-produto {
    padding: 50px;
  }
}

.produto-giro {
  animation: girarProduto 10s ease-in-out infinite alternate;
  transform-style: preserve-3d;
  will-change: transform;
}

@media (min-width: 768px) {
  .produto-giro {
    animation: girarProdutoDesktop 10s ease-in-out infinite alternate;
  }
}

/* Define o movimento */
@keyframes girarProduto {
  0% {
    transform: scale(1.25) rotateY(-30deg);
  }
  50% {
    transform: scale(1.25) rotateY(0deg);
  }
  100% {
    transform: scale(1.25) rotateY(30deg);
  }
}

@keyframes girarProdutoDesktop {
  0% {
    transform: scale(1) rotateY(-30deg);
  }
  50% {
    transform: scale(1) rotateY(0deg);
  }
  100% {
    transform: scale(1) rotateY(30deg);
  }
}

