 .fic-hero {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
  }

  .fic-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
/* From https://css.glass */
background: rgba(0, 0, 0, 0.44);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
  }

  .fic-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    min-height: 100vh;
    padding: 2rem;
  }

section {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding: 2rem;
    box-sizing: border-box;
  }

  .fic-content p {
    max-width: 800px;
  }

.tit-acerca {
	font-size: 1.5em; line-height: 1.2em;
}

/* 4K Monitores (muy grandes) */
@media (min-width: 1920px) {
  section {
    font-size: 1.3rem;
  }
}

/* Desktop HD (pantallas grandes) */
@media (min-width: 1440px) and (max-width: 1919px) {
  section {
    font-size: 1.2rem;
  }
}

/* Desktop normales */
@media (min-width: 1280px) and (max-width: 1439px) {
  section {
    font-size: 1.1rem;
  }
}

/* Laptops y tablets horizontales */
@media (min-width: 1025px) and (max-width: 1279px) {
  section {
    font-size: 1rem;
  }
}

/* Tablets (verticales) */
@media (min-width: 769px) and (max-width: 1024px) {
  section {
    font-size: .9rem;
  }
}

/* Teléfonos grandes */
@media (min-width: 641px) and (max-width: 768px) {
  section {
    font-size: .9rem;
  }
}

/* Teléfonos medianos */
@media (min-width: 481px) and (max-width: 640px) {
  section {
    font-size: .8rem;
  }
}

/* Teléfonos pequeños */
@media (max-width: 480px) {
  section {
    font-size: .8rem;
  }
}