/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Barra de urgencia */
.urgency-bar {
    background-color: #ffc107;
    color: #212529;
}

.countdown {
    font-size: 1.2rem;
}

.urgency-text {
    font-weight: 500;
}

/* Títulos */
.main-title {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #6c757d;
}

/* Sección de oferta */
.offer-section {
    background-color: white;
    border-left: 5px solid #0d6efd;
}

.price-container {
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.new-price {
    color: #198754;
    font-size: 2rem;
    font-weight: bold;
}

.offer-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.coupon-badge {
    display: inline-block;
    background-color: #198754;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Formulario de pago */
.payment-form {
    background-color: white;
}

.form-title {
    color: #0d6efd;
}

.payment-logo {
    height: 30px;
    margin-left: 10px;
}

/* Botón de compra */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
}

/* Testimonios */
.testimonial {
    background-color: #f8f9fa;
    border-left: 3px solid #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .new-price {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 0.8rem;
    }
}
