/* ===================================================
     SECCIONES
  =================================================== */
  section {
    height: 100vh;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    scroll-snap-align: start;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* #follow .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    height: 100%; 
  } */

  @media (max-width: 768px) {
    #follow {
      padding-bottom: 40px;
    }}
  
  section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  
  }
  .section-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }