/* Estilos específicos para página de promoção */
.promotion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.promotion-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promotion-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.promotion-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.promotion-image {
    text-align: center;
    margin-bottom: 2rem;
}

.promotion-image img {
    max-width: 100%;
    border-radius: 10px;
    max-height: 400px;
    object-fit: contain;
}

.promotion-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.promotion-description h2,
.promotion-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.promotion-description p {
    margin-bottom: 1rem;
}

.rules-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.rules-section h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li i {
    color: #3498db;
    margin-top: 0.2rem;
}

.rules-list li strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.rules-list li p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.promotion-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.promotion-dates {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #6c757d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #5a6268;
    transform: translateX(-5px);
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-visit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .promotion-header {
        padding: 2rem 0;
    }
    
    .promotion-header h1 {
        font-size: 1.8rem;
    }
    
    .promotion-header p {
        font-size: 1rem;
    }
    
    .promotion-content {
        padding: 1rem;
    }
    
    .rules-section {
        padding: 1rem;
    }
    
    .promotion-meta {
        flex-direction: column;
        text-align: center;
    }
}
