*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* primera parte */
#tituloYMenu{
    width: 100%;
    height: 55vh;
    text-align: center;
    display: flex;
    justify-content: end;
    padding-bottom: 85px;
    align-items: center;
    flex-direction: column;
    background-image: url("./custom1.webp");
    background-position: center center;
    background-size: cover;
}
#tituloYMenu h1{
    font-family: "Bungee", sans-serif;
    margin-bottom: 55px;
    color: #FF3F7C;
    font-size: 43px;
    font-weight: 40000;
}
/* #tituloYMenu a{
    text-decoration: none;
    margin-bottom: 30px;
    background-color: #fefefe;
    color: #FF3F7C;
    padding: 10px 15px;
    border-radius: 10px;
} */
#botonPremiumTituloYMenu{
    display: none;
}
#tituloYMenu a h3{
    font-family: "Bungee", sans-serif;
    font-size: 15px;
}
#tituloYMenu div{
    padding: 0 50px; 
    gap: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#tituloYMenu div h2 a{
    text-decoration: none;
    background-color: transparent;
    color: #ff578d;
    font-weight: 600;
    font-size: 20px;
    font-family: "Bungee", sans-serif;
}
.componentesMenu a{
    padding: 0 !important;
    margin: 0 !important;
}

/* carrusel */
#carrusel{
    position: relative; /* necesario para el video en posición absoluta */
    width: 100%;
    height: 80vh;
    background-color: #FF3F7C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}
#imagenCarrusel{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    color: white;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
#imagenCarrusel video{
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
#imagenCarrusel h3{
    font-size: 30px;
    margin-bottom: 5px;
}
#imagenCarrusel div{
    margin-top: 30px;
    text-align: center;
}
#imagenCarrusel hr{
    margin: 15px 0 25px 0;
}
#imagenCarrusel div img{
        width: 110px;
        border-radius: 5px;
        background-color: #FF3F7C;
        padding: 0 10px;
}
#imagenCarrusel div p{
    margin-bottom: 5px;
    font-size: 13px;
    font-family: "Bungee", sans-serif;
}
#imagenCarrusel div a{
    text-decoration: none;
}
#suscribeButtonCarrusel{
    position: absolute;
    top: 35px;
    right: 10px;
    left: 10px;
    background-color: #FF3F7C;
    color: #fefefe;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Bungee';
}

/* videos */
#videos{
    width: 100%;
    height: fit-content;
    background-color: black;
    text-align: center;
    padding: 35px 10px 75px 10px;
}
#videos h3{
    color: #FF3F7C;
    font-size: 25px;
    margin-bottom: -10px;
}
#videos h3 i{
    font-family: "Bungee", sans-serif;
}
#contenedorVideos hr{
    width: 95%;
    margin: 0 auto;
    margin-top: 25px;
    background-color: #fefefe;
}
.miniaturas{
    margin-top: 50px;
}
.miniaturas img{
    width: 85%;
    height: 25vh;
    object-fit: cover;
    cursor: pointer;
}
.miniaturas video{
    cursor: pointer;
}
.miniaturas div img{
    width: 85%;
    height: auto;
}
.miniaturas h4{
    color: #fefefe;
    font-size: 22px;
    margin: 5px 0;
    font-weight: 400;
}
.miniaturas h4 i{
    font-size: 17px;
}
.miniaturas h5{
    color: #fefefe;
    font-weight: 100;
    font-size: 15px;
    text-align: center;
    margin-bottom: 3px;
    user-select: none;
}
.miniaturas h5:nth-child(2){
    margin-left: 15px;
}
.miniaturas div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    margin-top: 5px;
}

/* custom */
#custom{
    width: 100%;
    height: 55vh;
    background-color: #FF3F7C;
    color: #fefefe;
    padding: 20px 10px 55px 10px;
    text-align: center;
}
#custom h2{
    text-align: center;
    margin-top: 15px;
    font-weight: 1000;
    font-size: 55px;
    margin-bottom: 65px;
}
#custom h2 i{
    font-family: "Bungee", sans-serif;
    font-size: 50px;
}
#custom div img{
    width: 80%;
    height: 18vh;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}
#writeToUsTelegramCustom{
    background-color: #fefefe;
    color: #FF3F7C;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Bungee", sans-serif;
}

/* query */
@media (min-width:850px){
    /* primera parte */
    #tituloYMenu{
        height: 85vh;
    }
    #tituloYMenu h1{
        font-size: 80px;
        margin-bottom: 45px;
    }
    #tituloYMenu a{
        text-decoration: none;
        margin-bottom: 100px;
        background-color: #fefefe;
        color: #FF3F7C;
        padding: 15px 40px;
        border-radius: 10px;
    }
    #tituloYMenu a h3{
        font-family: "Bungee", sans-serif;
        font-size: 20px;
    }
    .componentesMenu a{
        padding: 0 !important;
        margin: 0 !important;
        margin-right: 20px !important;
    }

    /* carrusel */
    #imagenCarrusel{
        width: 75%;
        flex-direction: row;
        justify-content: space-around;
        align-items: end;
        
    }
    #imagenCarrusel h3{
        font-size: 55px;
        font-weight: 1000;
    }
    #imagenCarrusel h4{
        margin-top: 10px;
        font-size: 30px;
        font-weight: 600;
    }
    #imagenCarrusel div img{
        margin-right: 10px;
        width: 120px;
    }
    #suscribeButtonCarrusel{
        left: auto;
        top: 45px;
        right: 55px;
        font-size: 35px;
    }

    /* videos */
    #videos{
        padding: 30px 50px 100px 50px;
        text-align: left;
    }
    #videos h3{
        font-size: 35px;
    }
    .miniaturas img{
        width: 300px;
    }
    #contenedorVideos hr{
        display: none;
    }
    .miniaturas h4{
        width: 300px;
        text-align: left;
        font-weight: 100;
        margin: 5px 0 15px 0
    }
    .miniaturas h4 i{
        font-size: 15px;
    }
    .miniaturas div{
        width: 300px;
    }
    .miniaturas div img{
        width: 85px;
    }
    #contenedorVideos{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .miniaturas video{
        width: 300px !important;
    }

    /* custom */
    #custom{
        padding: 20px 10px 75px 10px;
        height: fit-content;
    }
    #custom div img{
        width: 25%;
        height: 25vh;
        margin-right: 15px;
    }
    #custom h2{
        font-size: 90px;
        margin-top: -80px;
        margin-bottom: 50px;
    }
    #custom h2 i{
        font-size: 75px;
    }
}