*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color: #dddddd;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.bottom-menu{
    background-color: #d5d5d5;
    position: absolute;
    width: 100%;
    height: 70px;
    bottom: 0px;
    left: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    text-align: center;
    border-top: 1px solid #c9c9c9;
    z-index: 1;
}

.bottom-menu svg{
    fill: #000000;
    width: 25px;
    height: 25px;
}

.bottom-menu p{
    color: #000000;
    font-weight: bold;
    font-size: 10px;
}

.music-cont p{
    color: #858585;
}

.container{
    background-color: transparent;
    width: 65%;
    height: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    place-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.iIcon path{
    fill: #000000;
}

.mIcon path{
    fill: #858585;
}

.container-cont{
    width: 100%;
    left: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .3s ease;
    overflow: scroll;
}

.headerMenu{
    background-color: #dddddd;
    width: 100%;
    height: 60px;
    padding: 10px;
    display: grid;
    place-content: center;
    grid-template-columns: 11fr 1fr;
    gap: 10px;
    border-bottom: 1px solid #cfcfcf;
    z-index: 1;
}

.brand{
    width: 40px;
    height: 40px;
    align-self: center;
   
}

.brandName{
    align-self: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 20px;
    
}

.menuIcon{
    width: 40px;
    height: 40px;
    fill: #eeae00 !important;
    align-self: center;
    display: none;
}

.msg-vacio{
    position: relative;
    top: -15%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #7e756a;
}

.caraSvg{
    fill: #7e756a !important;
    width: 40px;
    height: 40px;
}

.container-msg{
    background: #d5d5d5;
    padding: 10px;
    font-size: 12px;
    color: #717171;
    border-radius: 10px;
    text-align: center;
}

h1{
    margin-top: 20px;
    color: #3f2707;
    font-size: 23px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input-link{
    position: relative;
    width: 100%;
}

.pasteLink{
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translate(0%, -50%);
}

.pasteLink path{
    fill: #595959;
}

input{
    padding: 15px 55px 15px 15px;
    width: 100%;
    border: 1px solid #eeae00;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input:focus {
    outline: none !important;
  }

button {
    padding: 15px 15px;
    background-color: #eeae00;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.video-container{
    position: relative;
    width: 45%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.shadow{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 15px;
    overflow: hidden;
    display: none;
}

.imgData{
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

video{
    display: block;
    width: 100%;
    border-radius: 15px;
}

.dwnVideo{
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    padding: 10px 20px;
    background-color: #eeae00;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 80%;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-decoration: none;
    transform: translate(-50%, -60px);
    z-index: 1;
    gap: 10px;
}

svg{
    fill: #ffffff !important;
}

.dataInfo{
    position: absolute;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
    color: #fff;
    top: 20px;
}

.avatar{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #eeae00;
    display: none;
}

.info{
    position: relative;
    width: 100%;
}

.descripcion{
    display: -webkit-box;
    overflow: auto;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #d7d7d7;
    text-align: center;
}
  
#error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.appPS{
    width: 50%;
    border-radius: 15px;
    background-color: #d5d5d5;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.appPS img{
    width: 200px;
    cursor: pointer;
}

.dataApp{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.dataApp .title{
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #3f2707;
}

.dataApp .dataAppInfos{
    color: #7e756a;
    text-align: center;
}

.dataUse{
    background: linear-gradient(#eeae00, #b57334);
    width: 40%;
    height: auto;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 10px;
}

.dataUse .title{
    text-align: center;
}

.dataUse .op{
    margin-top: 20px;
    font-size: 20px;
}

.dataUse .dataAppUse{
    color: #dddddd;
}

.cont{
    display: grid;
    grid-template-columns: 1fr 5fr;
    place-items: center;
    text-align: center;
}

.cont svg{
    width: 25px;
    height: 25px;
}

.footer{
    background: linear-gradient(#b57334, #b57334);
    width: 100%;
    height: auto;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ddd;
    font-weight: bold;
    margin-top: 20px;
}

.footer p{
    cursor: pointer;
}

.footer .copy{
    margin-top: 10px;
    color: #fff;
}

.modalTerminos{
    position: fixed;
    top: 50%;
    left: 200%;
    background-color: #fff;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    border: 2px solid #eeae00;
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.modalTerminos h1{
    color: #3f2707;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    display: block;
}

.modalTerminos svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 2;
}

.containerterminos{
    width: 100%;
    height: 100%;
    color: #7e756a;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    overflow: scroll;
}

.modalTerminos .containerterminos p:last-child{
    margin-bottom: 20px;
}

.modalPoliticas{
    position: fixed;
    top: 50%;
    left: 200%;
    background-color: #fff;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    border: 2px solid #eeae00;
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.modalPoliticas h1{
    color: #3f2707;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    display: block;
}

.modalPoliticas svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 2;
}

.modalPoliticas .containerterminos p:last-child{
    margin-bottom: 20px;
}

.modalContact{
    position: fixed;
    top: 50%;
    left: 200%;
    background-color: #fff;
    width: 90%;
    height: auto;
    border-radius: 20px;
    border: 2px solid #eeae00;
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.modalContact h2{
    color: #3f2707;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modalContact p{
    margin-bottom: 20px;
}

.modalContact svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 2;
}

.lateralMenu{
    position: fixed;
    background-color: #ddd;
    width: 50%;
    height: 100%;
    top: 0;
    right: -100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.54);
    -webkit-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.54);
    -moz-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.54);
    z-index: 2;
    transition: all .3s ease;
}

.lateralMenu svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 3;
}

.lateralMenu h3{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

a{
    text-decoration: none;
    color: inherit;
}

.appLogo{
    width: 100px;
}

@media (max-width: 500px) {
  *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color: #dddddd;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.bottom-menu{
    background-color: #d5d5d5;
    position: absolute;
    width: 100%;
    height: 70px;
    bottom: 0px;
    left: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    text-align: center;
    border-top: 1px solid #c9c9c9;
    z-index: 1;
}

.bottom-menu svg{
    fill: #000000;
    width: 25px;
    height: 25px;
}

.bottom-menu p{
    color: #000000;
    font-weight: bold;
    font-size: 10px;
}

.music-cont p{
    color: #858585;
}

.container{
    background-color: transparent;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    place-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.iIcon path{
    fill: #000000;
}

.mIcon path{
    fill: #858585;
}

.container-cont{
    left: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .3s ease;
    overflow: scroll;
}

.headerMenu{
    background-color: #dddddd;
    width: 100%;
    height: 60px;
    padding: 10px;
    display: grid;
    place-content: center;
    grid-template-columns: 1fr 10fr 1fr;
    gap: 10px;
    border-bottom: 1px solid #cfcfcf;
    z-index: 1;
}

.brand{
    width: 40px;
    height: 40px;
    align-self: center;
   
}

.brandName{
    align-self: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 20px;
    
}

.menuIcon{
    width: 40px;
    height: 40px;
    fill: #eeae00 !important;
    align-self: center;
}

.msg-vacio{
    position: relative;
    top: -15%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #7e756a;
}

.caraSvg{
    fill: #7e756a !important;
    width: 40px;
    height: 40px;
}

.container-msg{
    background: #d5d5d5;
    width: 90%;
    padding: 10px;
    font-size: 12px;
    color: #717171;
    border-radius: 10px;
    text-align: center;
}

h1{
    width: 70%;
    margin-top: 20px;
    color: #3f2707;
    font-size: 19px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.input-link{
    position: relative;
    width: 100%;
}

.pasteLink{
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translate(0%, -50%);
}

.pasteLink path{
    fill: #595959;
}

input{
    padding: 15px 55px 15px 15px;
    width: 100%;
    border: 1px solid #eeae00;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input:focus {
    outline: none !important;
  }

button {
    padding: 15px 15px;
    background-color: #eeae00;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.video-container{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.shadow{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 15px;
    overflow: hidden;
    display: none;
}

.imgData{
    display: none;
    width: 100%;
    border-radius: 15px;
}

video{
    display: block;
    width: 100%;
    border-radius: 15px;
}

.dwnVideo{
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    padding: 10px 20px;
    background-color: #eeae00;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 80%;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-decoration: none;
    transform: translate(-50%, -60px);
    z-index: 1;
    gap: 10px;
}

svg{
    fill: #ffffff !important;
}

.dataInfo{
    position: absolute;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
    color: #fff;
    top: 20px;
}

.avatar{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #eeae00;
    display: none;
}

.info{
    position: relative;
}

.descripcion{
    width: 220px;
    display: -webkit-box;
    overflow: auto;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #d7d7d7;
    text-align: center;
}
  
#error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.appPS{
    width: 90%;
    background-color: #d5d5d5;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.appPS img{
    width: 200px;
    cursor: pointer;
}

.dataApp{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.dataApp .title{
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #3f2707;
}

.dataApp .dataAppInfos{
    color: #7e756a;
    text-align: center;
}

.dataUse{
    background: linear-gradient(#eeae00, #b57334);
    width: 90%;
    height: auto;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 10px;
}

.dataUse .title{
    text-align: center;
}

.dataUse .op{
    margin-top: 20px;
    font-size: 20px;
}

.dataUse .dataAppUse{
    color: #dddddd;
}

.cont{
    display: grid;
    grid-template-columns: 1fr 5fr;
    place-items: center;
    text-align: left;
}

.cont svg{
    width: 25px;
    height: 25px;
}

.footer{
    background: linear-gradient(#b57334, #b57334);
    width: 100%;
    height: auto;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ddd;
    font-weight: bold;
    margin-top: 20px;
}

.footer p{
    cursor: pointer;
}

.footer .copy{
    margin-top: 10px;
    color: #fff;
}

.modalTerminos{
    position: fixed;
    top: 50%;
    left: 200%;
    background-color: #fff;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    border: 2px solid #eeae00;
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.modalTerminos h1{
    color: #3f2707;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    display: block;
}

.modalTerminos svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 2;
}

.containerterminos{
    width: 100%;
    height: 100%;
    color: #7e756a;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    overflow: scroll;
}

.modalTerminos .containerterminos p:last-child{
    margin-bottom: 20px;
}

.modalPoliticas{
    position: fixed;
    top: 50%;
    left: 200%;
    background-color: #fff;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    border: 2px solid #eeae00;
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.modalPoliticas h1{
    color: #3f2707;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    display: block;
}

.modalPoliticas svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 2;
}

.modalPoliticas .containerterminos p:last-child{
    margin-bottom: 20px;
}

.modalContact{
    position: fixed;
    top: 50%;
    left: 200%;
    background-color: #fff;
    width: 90%;
    height: auto;
    border-radius: 20px;
    border: 2px solid #eeae00;
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.modalContact h2{
    color: #3f2707;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modalContact p{
    margin-bottom: 20px;
}

.modalContact svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 2;
}

.lateralMenu{
    position: fixed;
    background-color: #ddd;
    width: 50%;
    height: 100%;
    top: 0;
    right: -100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.54);
    -webkit-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.54);
    -moz-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.54);
    z-index: 2;
    transition: all .3s ease;
}

.lateralMenu svg{
    position: absolute;
    top: 10px;
    right: 10px;
    fill: #3f2707 !important;
    z-index: 3;
}

.lateralMenu h3{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

a{
    text-decoration: none;
    color: inherit;
}

.appLogo{
    width: 100px;
}
}