@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0F1729;
    color: #E2E8F0;
}

.texto-cor-vermelho {
    color: #dc2626;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/api/placeholder/1200/600");
    background-position: center;
    background-size: cover;
}

.glow-text {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.cyber-grid {
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
}

.timer-container {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #3B82F6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.estilo-botao {
    background-color: rgb(220, 38, 38);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
    transition: 0.2s ease-in-out;
}

.fade-in {
    animation: fadeIn 2s forwards;
    /* Adjust duration as needed */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blur-fotos-avatar {
    filter: blur(2px);
}

.card .icon {
    filter: drop-shadow(0 0 4px red);
    transform: scale(1.05);
}

.card-abaixo-preco {
    margin-top: 12px;
    background-color: #1b1f29;
    color: #f1f1f1;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
}