/*
 * @author ( Joan Anglés i Gómez )
 * el roig
*/

/*
  Propietats personalitzades de CSS.
*/

/* ************************************************************ */
/* EN PROVES */
/* ********* */




/* ************** */
/* FI - EN PROVES */
/* ************************************************************ */

/*
 * PÀGINES
 */
/* Pàgina - Legalitat i Transparència */
.legal-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  color: #595c70;
  background-color: #f9f9f9;
  border-radius: 8px;    
}

.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #45485a; /* un gris más oscuro */
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-section .legal-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.legal-section .legal-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.legal-section .legal-list li a {
  text-decoration: none;
  color: #595c70;
  transition: color 0.3s;
}

.legal-section .legal-list li a:hover {
  color: #838a9e;
  text-decoration: underline;
}

/* Responsive: en pantallas muy pequeñas ajustar tamaño de fuente y padding */
@media (max-width: 400px) {
  .legal-section {
    font-size: 14px;
    padding: 0px 0px;
    margin: 0;
  }
  
  .legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  }
}


/* Pàgina - Avís legal */
/* Pàgina - Llicència */
/* Pàgina - Política de dades */
/* Pàgina - Política de galetes */
/* Pàgina - Política de privacitat */
.aviso-legal {
  border: 1px solid #ccc;
  border-radius: 8px;
  border-left: 6px solid #2ecc71;
  background: #f9f9f9;
  padding: 16px;
  margin: 16px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.aviso-legal h2 {
  margin-top: 0;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #e63946;
}

.aviso-legal h3 {
  font-weight: bold;
  font-size: 16px;
  color: #e63946;
}

.aviso-legal p {
  margin-bottom: 0;
}

.aviso-legal ul {
  padding-left: 20px;
}

.aviso-legal a {
  color: inherit;
  box-shadow: none;
}

.aviso-legal a:hover {
  text-decoration: underline;
}

/* Separador visual */
.separador-visual {
  border: none;
  border-top: 2px dashed #ccc;
  margin: 32px 0;
}

/* Badge llicencia Creative Commons */
.badge-cc {
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 6px solid hsl(0, 83.1%, 34.9%);
  border-right: 6px solid hsl(0, 83.1%, 34.9%);
  margin-top: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  text-align: center;
}

.badge-cc:hover {
  background: #e0e0e0;
}

.badge-cc a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #333;
  box-shadow: none;
  width: 100%;
  height: 100%;
}

.badge-cc a:hover {
 box-shadow: none;
}

.badge-cc a:focus,
.badge-cc a:active {
  outline: none;
  box-shadow: none;
}

.badge-cc img {
  max-width: 88px;
  height: auto;
  flex-shrink: 0;
  margin-right: 8px;
}

.badge-cc span {
  max-width: 100%;
  text-align: center;
}

/* Evitar que parte del texto se corte en varias líneas */
.badge-cc .nowrap {
  white-space: nowrap;
}

/* Responsive: en pantallas muy pequeñas ajustar tamaño de fuente y padding */
@media (max-width: 400px) {
  .aviso-legal, .badge-cc {
    font-size: 12px;
    padding: 10px 12px;
  }

  .badge-cc img {
    max-width: 70px;
    margin-right: 6px;    
  }
}
