/* Nuevos estilos para las tarjetas modernas */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

.winner-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: left;
    margin-bottom: 50px;
    margin-top: 0;
}

.section-title h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.celebration-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
}

.winner-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
    font-family: 'Poppins', sans-serif;
}

.winner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.winner-card .card-header {
    border-bottom: none;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.winner-card .card-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    z-index: 1;
}

.winner-card .card-header h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
    font-weight: 600;
}

.winner-card .card-header h4 {
    position: relative;
    z-index: 2;
    opacity: 0.9;
    font-weight: 300;
}

.winner-card .card-body {
    padding: 25px;
}

.winner-card .card-body p {
    margin-bottom: 10px;
    font-size: 1.8rem;
    position: relative;
    padding-left: 25px;
}

.winner-card .card-body p:before {
    content: '\f005';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.first-place .card-header {
    background: linear-gradient(135deg, var(--success-color), #27ae60);
}

.second-place .card-header {
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
}

.third-place .card-header {
    background: linear-gradient(135deg, var(--danger-color), #c0392b);
}

.prize-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: gold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 3;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
    .winner-card {
        margin-bottom: 20px;
    }
}

.winner-name {
    font-size: 1.5em;
    color: #333; 
    margin-bottom: 10px;
}

.navbar {
    margin-bottom: 0;
}