body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

.font-display {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #FF5722 0%, #FF3D00 50%, #FFD600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #FF5722 0%, #FF3D00 100%);
}

.fire-glow {
    box-shadow: 0 0 40px rgba(255, 87, 34, 0.4), 0 0 80px rgba(255, 61, 0, 0.2);
}

.glass-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-container {
    position: relative;
    overflow: visible;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255,87,34,0.4) 0%, rgba(255,61,0,0) 70%);
    z-index: -1;
    animation: pulse-fire 3s ease-in-out infinite;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.price-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 87, 34, 0.25);
}

.price-card.featured {
    border: 2px solid #FF5722;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.price-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, #FF5722 0%, #FF3D00 100%);
    color: white;
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
}

.logo-img {
    filter: drop-shadow(0 0 14px rgba(255, 87, 34, 0.35));
}

@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse-fire {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.energy-ring {
    position: absolute;
    border: 2px solid rgba(255, 87, 34, 0.2);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
}

.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF5722 0%, #FF3D00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(255, 87, 34, 0.6);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 50%;
    animation: pulse-fire 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(255, 87, 34, 0.8);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #FF5722;
    border-radius: 4px;
}

.text-shadow-glow {
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.5);
}

.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-hover:hover {
    transform: scale(1.05) rotate(-2deg);
}
