body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.red-glow {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.bg-gradient-dark {
    background: radial-gradient(circle at center, #1a0505 0%, #000 70%);
}

.btn-primary {
    background-color: #ef4444;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.card-dark {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.grid-pattern {
    background-image: radial-gradient(rgba(239, 68, 68, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Estilos para a nova seção de estatísticas */
.card-container {
    perspective: 1500px;
}

.main-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid #331111;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
}

.new-stat-card {
    background: #050505;
    border: 1px solid #222;
    transition: border-color 0.3s ease;
}

.new-stat-card:hover {
    border-color: #e3262e;
}

.red-glow-text {
    color: #e3262e;
    text-shadow: 0 0 15px rgba(227, 38, 46, 0.4);
}

/* Estilos para o card de depoimentos */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.glass-image {
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transition-all-custom {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.active-thumb {
    border: 2px solid #ef4444;
}

/* Estilos para o modal de pagamento */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #111;
    margin: 5% auto;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.copy-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.copy-button.copied {
    background-color: #10b981;
}

/* Estilos para o loader */
.loader {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 4px solid #ef4444;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estilos para o status de polling */
.polling-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 16px;
}

.polling-dot {
    width: 8px;
    height: 8px;
    background-color: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Firefly Background */
#firefly-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.site-content {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    height: 100%;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.combo-highlight {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15), 0 0 60px rgba(239, 68, 68, 0.05);
}

.combo-highlight:hover {
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.25), 0 0 80px rgba(239, 68, 68, 0.1);
}

.pricing-grid {
    align-items: stretch;
}

.pricing-grid .pricing-card > div {
    height: 100%;
}
