.sigue-explorando-section {
    padding-top: 80px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 80px;
    background-color: #ebebeb; /* Fondo general oscuro */
}

.sigue-explorando-content {
    display: flex; /* Activa el modo de distribución en fila */
    align-items: center; /* Centra verticalmente los elementos */
    justify-content: space-between; /* Espaciado entre los elementos */
    gap: 30px; /* Espaciado entre los textos */
}

.sigue-explorando-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#ebebeb;
  padding:20px;
  border-top:1px solid rgba(0,0,0,.5);
  transition:margin-top .3s ease;
}
.sigue-explorando-item:last-child{
  border-bottom:1px solid rgba(0,0,0,.5);
}

/* efecto hover: que suban un poquito todas salvo la primera */
.sigue-explorando-item:not(:first-child):hover{
  margin-top:-20px;          /* o el desplazamiento que quieras */
}

.sigue-explorando-item:hover{
  cursor:pointer;
}

.sigue-explorando-subtitle {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.sigue-explorando-title {
    font-size: 7rem; /* Tamaño grande para el título */
    font-weight: bold;
    margin: 0;
    color: rgb(42, 42, 42); /* Texto blanco */
    white-space: nowrap;
}

.sigue-explorando-1:hover {
    cursor: pointer;
}
.sigue-explorando-2:hover {
    margin-top: -20px;
    cursor: pointer;
}
.sigue-explorando-3:hover {
    margin-top: -30px;
    cursor: pointer;
}


/* Media query para pantallas más pequeñas */
@media (max-width: 1100px) {
    .sigue-explorando-section {
        padding-left: 60px;
        padding-right: 60px;
    }
    .sigue-explorando-content {
        flex-direction: column; /* Cambia a diseño en columna */
        justify-content: center;
        align-items: center; /* Centra los elementos en columna */
        text-align: center; /* Alinea el texto al centro */
        width: 100%;
    }
    .sigue-explorando-1 {
        text-align: center;
    }
    .sigue-explorando-2 {
        text-align: center;
    }
    .sigue-explorando-2:hover {
        margin-top: -10px;
    }
    .sigue-explorando-3 {
        text-align: center;
    }
    .sigue-explorando-3:hover {
        margin-top: -20px;
    }
    .sigue-explorando-subtitle {
        text-align: center;
    }
    
    .sigue-explorando-title {
      font-size: 2rem; /* Reduce el tamaño del título */
    }

}