/* Estilo General de la Sección */
#resultados-maraton {
    text-align: center;
    background: #f4f4f4;
    padding: 0 20px;
}

#resultados-maraton h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2c6700;
    margin-bottom: 30px;
}

/* Sección de Video */
.video-section {
    margin-bottom: 40px;
}

.video-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.video-container {
    background: #648d00;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 80%;
    height: 300px;
    background: white;
    border-radius: 5px;
}

/* Sección de Resultados */
.resultados-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.resultados-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.resultados-section p {
    font-size: 1.1rem;
    color: #444;
}

/* Botón de Resultados */
.btn-resultado {
    display: inline-block;
    background: #2c6700;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
}

.btn-resultado:hover {
    background: #1f4c00;
}

@media (max-width: 480px) {
    .video-section h3 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 15px;
    }
}