/* Estilos específicos para promociones.html */

.nav-promo {
    background: var(--dark-gray);
    padding: 1rem 0;
    text-align: center;
}

.nav-promo h1 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-promo {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-orange) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.oferta-badge {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    }
}

.title-promo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle-promo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fef3c7;
}

.price-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.price-old {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-old .price-label {
    font-size: 1.2rem;
}

.price-old .price-amount {
    font-size: 2rem;
    text-decoration: line-through;
    color: #fca5a5;
    font-weight: 600;
}

.price-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-new .price-label {
    font-size: 1.2rem;
    color: #fef3c7;
}

.price-new .price-amount {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.savings {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    background: rgba(34, 197, 94, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
}

.countdown-section {
    margin: 3rem 0;
}

.countdown-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fef3c7;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-unit .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.time-unit .label {
    font-size: 0.9rem;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cupos-section {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cupos-info {
    text-align: center;
    margin-bottom: 1rem;
}

.cupos-text {
    font-size: 1.2rem;
    color: #e5e7eb;
}

.cupos-number {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    margin: 0 0.5rem;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: progress-fill 2s ease-in-out infinite alternate;
}

@keyframes progress-fill {
    0% {
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    }
}

.cta-section {
    margin: 4rem 0;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366, #16a34a);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.urgency-text {
    color: #e5e7eb;
    font-size: 1.1rem;
    text-align: center;
}

.beneficios-promo {
    padding: 4rem 0;
    background: var(--light-gray);
}

.beneficios-promo h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.benefit-item p {
    color: #64748b;
}

.testimonios-promo {
    padding: 4rem 0;
    background: white;
}

.testimonios-promo h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.testimonios-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 150px;
}

.testimonio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 0 2rem;
}

.testimonio.active {
    opacity: 1;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonio p {
    font-size: 1.2rem;
    font-style: italic;
    color: #64748b;
    margin-bottom: 1rem;
}

.testimonio strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.urgencia-final {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
}

.urgencia-final h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.urgencia-final .urgency-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fee2e2;
}

.btn-whatsapp-final {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-green);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    margin-bottom: 2rem;
    animation: final-pulse 2s infinite;
}

@keyframes final-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-whatsapp-final:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
}

.final-note {
    font-size: 1.1rem;
    color: #fee2e2;
    font-weight: 600;
}

.footer-promo {
    background: var(--dark-gray);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-promo p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.whatsapp-float-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive para promociones */
@media (max-width: 768px) {
    .title-promo {
        font-size: 2.5rem;
    }
    
    .subtitle-promo {
        font-size: 1.5rem;
    }
    
    .price-section {
        padding: 1.5rem;
    }
    
    .price-new .price-amount {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }
    
    .time-unit .number {
        font-size: 2rem;
    }
    
    .cupos-number {
        font-size: 2.5rem;
    }
    
    .btn-whatsapp-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonio {
        padding: 0 1rem;
    }
    
    .testimonio p {
        font-size: 1rem;
    }
    
    .urgencia-final h2 {
        font-size: 2rem;
    }
    
    .btn-whatsapp-final {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .title-promo {
        font-size: 2rem;
    }
    
    .subtitle-promo {
        font-size: 1.2rem;
    }
    
    .price-new .price-amount {
        font-size: 2rem;
    }
    
    .cupos-number {
        font-size: 2rem;
    }
    
    .time-unit .number {
        font-size: 1.5rem;
    }
    
    .time-unit .label {
        font-size: 0.8rem;
    }
    
    .btn-whatsapp-large,
    .btn-whatsapp-final {
        width: 100%;
        max-width: 300px;
    }
}