:root{
	--main-color-naranja:#F29100;
	--main-color-verde:#43B183;
    --main-color-verde-claro:#64b997;
    --main-color-azul-oscuro:#24195D;
    --blanco:white;
    --negro:black;
}

.noticias-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .noticias-header h1 {
    margin-top: 0;
    font-size: 4rem;
    color: var(--main-color-azul-oscuro);
    text-align: center;
  }

  .noticias-header p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
  }

  .noticia-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
  }

  .noticia-imagen {
    width: 60%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .noticia-contenido {
    width: 38%;
    color: #444;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
  }

  .noticia-subtitulo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
  }

  .noticia-fecha {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 15px;
  }

  .noticia-contenido p {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .volver {
    display: block;
    margin-top: 20px;
    text-align: left;
    text-decoration: none;
    color: var(--main-color-naranja);
    font-weight: bold;
    transition: color 0.3s ease;
  }

  .volver:hover {
    color: var(--main-color-naranja);
    text-decoration: underline;
  }

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

    .noticia-imagen,
    .noticia-contenido {
      width: 100%;
    }

    .noticia-contenido {
      text-align: center;
      align-items: center;
    }
  }
/* ESTILO BOTON VISUALIZAR PDF  */
  .boton-pdf {
    display: inline-block;
    background-color: var(--main-color-verde);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-align: center;
  }
  
  .boton-pdf i {
    margin-right: 8px;
  }
  
  .boton-pdf:hover {
    background-color: var(--main-color-verde-claro);
    color: var(--blanco);

  }
  
