.copyright-bar {
    background-color: #212529;
    margin: 0;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.copyright-bar p {
    margin: 0;
}

.copyright-bar p:nth-child(2) {
    display: inline-block; 
    transition: transform 0.3s ease; 
    cursor: pointer; 
}

.copyright-bar p:nth-child(2):hover {
    transform: scale(1.2); 
}

.copyright-bar p:nth-child(2) a {
    text-decoration: none;
    color: inherit; 
}


.copyright-bar p:nth-child(2) .link-rojo {
    color: #ff4d4d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-bar p:nth-child(2) .link-rojo:hover {
    color: #ff4d4d; 
}

.copyright-bar p:nth-child(2) .link-rojo:active,
.copyright-bar p:nth-child(2) .link-rojo:visited {
    text-decoration: none;
}




/* IMAGE DIVIDER WITH INFORMATION */
.informative-image-section {
  width: 100%;
    height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000; /* opcional */
}

.informative-image-section picture,
.informative-image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ← 🔥 muestra TODA la imagen */
  object-position: center; /* ← la centra */
  display: block;
}

/* CLASSES FOR TEXTS */
.font23px {
    font-size: 23px !important;
}

.font35px {
    font-size: 35px !important;
}