/* QR Descuento Page Styles */
.hero-image-section {
    margin-top: 80px; /* Ajuste para el navbar fijo */
}

.hero-image-container {
    height: 400px;
    background: linear-gradient(135deg, #007BFF 0%, #00C853 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #007BFF 0%, #00C853 100%);
}

/* Para cuando reemplaces con tu imagen */
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#component-social,.main-content-section{
    background-color: #FAFAFA !important;
}

/* Main Content Section */
.main-content-section {
    min-height: 500px;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 1rem;
}

.benefits-title {
    color: #007BFF;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.benefit-item {
    margin-bottom: 1.5rem;
}

.benefit-text {
    color: #424242;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefit-text strong {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Discount Form Section */
.discount-form-section {
    padding: 2rem 1rem;
}

.discount-title {
    color: #007BFF;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid #e3f2fd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-weight: 500;
}

.whatsapp-info {
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.btn-discount {
    background-color: #00C853;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-discount:hover {
    background-color: #00a041;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.disclaimer {
    color: #999;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-title,
    .discount-title {
        font-size: 1.5rem;
    }
    
    .benefits-section,
    .discount-form-section {
        padding: 1rem 0.5rem;
    }
}
