/* Noticias */

.noticias {
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
    margin-top: 90px;
}

.titulo-seccion h2 {
    display: inline-block;
    background: #e53434;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 40px;
}


/* Nota de prensa */

.nota-prensa {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    text-align: left;
}

.nota-prensa img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.nota-tag {
    display: inline-block;
    background: #e53434;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.nota-prensa-texto h2 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 10px;
    line-height: 1.3;
}
.nota-prensa-texto h3 {
    font-family: 'Oswald', sans-serif;
    color: #222;
    font-size: 22px;
    margin: 0 0 10px;
    line-height: 1.3;
}

.nota-prensa-texto p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 18px;
}

.nota-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e53434;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nota-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229,52,52,0.35);
}


/* Vídeo */

.video-noticias {
    max-width: 820px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Responsive */

@media (max-width: 768px) {
    .nota-prensa {
        flex-direction: column;
    }

    .nota-prensa img {
        width: 100%;
        height: 180px;
    }
}