@import url(index.css);
.containerTipsParaempezar {
    font-family: 'Outfit', sans-serif;
    position: relative;
    max-width: 1140px;
    min-height: 350px;
    display: flex;
    width: 85%;
    margin: 20px auto;
    flex-direction: column;
    border-radius: 20px;
    height: 280px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(../images/BannerExplorer.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    position: relative; /* Necesario para posicionar el ::before */
}

.containerTipsParaempezar::before {
    content: ''; /* Necesario para generar el pseudoelemento */
    position: absolute; /* Posicionarlo encima del contenedor */
    top: 0;
    left: 0;
    right: 0;
    border-radius: 20px;
    bottom: 0;
    background: var(--color-gradientsecondary);
    opacity: 0.8;
    z-index: 1; /* Asegura que el pseudo-elemento esté encima */
}


.contenidotipsempezar{
    border: 2px solid transparent;
    width: 80%;
    margin: 0px auto;
    z-index: 2;
    color: white;
}
.titleTipsEmpezar{
    width: 75%;
    font-weight: bold;
    color: var(--color-whiteforwhite);
}
.switchtemempezar{
    width: 56%;
    font-size: 18px;
    color: var(--color-whiteforwhite);
    line-height: 1.6;
    word-wrap: break-word;
}

@media(max-width:1024px){
    .titleTipsEmpezar{
        text-align: center;
    }
    .contenidotipsempezar{
        justify-items: center;
    }
}

@media(max-width:940px){
    .titleTipsEmpezar{
      text-align: center;
    }
    .contenidotipsempezar{
       justify-items: center;
    }
    .switchtemempezar{
       text-align: center;
       width: 80%;
    }
    .containerTipsParaempezar{
        margin-top: 8rem;
    }
}

@media(max-width:750px){
    .contenidotipsempezar{
      text-align: center;
    }
    .titleTipsEmpezar{
        width: 80%;
    }
}

@media(max-width:550px){
    .contenidotipsempezar{
      text-align: center;
    }
    .titleTipsEmpezar{
        width: 100%;
        font-size: 25px;
    }
    .switchtemempezar{
        width: 100%;
    }
}

@media(min-width:320px) and (max-width:550px){
    .containerTipsParaempezar{
        width: 90% !important;

    }

    .contenidolecturasredirecciongeneal{
        padding:10px;
    }
    .temapopularredireccionlecturas {
        margin-top: 2%;
        border: none;
        background: var(--color-orangeterciary);
        border-radius: 15px;
        padding: 4px 18px;
        font-size: 14px;
    }
    .temapopularesredireccionlecturas {
        width: 100%;
        margin: 0px auto;
    }
}