* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body{
    background-image: url(../img/backgound.png);
    background-position: center;
    background-size: cover;
}

:root{
    --colorPrincipal: #202a44;
    --colorSecundario: #324776;
    --colorWhite: rgb(255,255,255);
    --colorBlack: rgb(0,0,0);
    --spaceSections: 5px;
    --border: 10px;
    --fontTitles: "Bruno Ace SC", sans-serif;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Start */
.contStart{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
    padding: 2px;
}

.start{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.principalStart{
    width: 70%;
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.topPrincipal{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: var(--colorBlack);
    border-radius: var(--border);
    position: relative;

    opacity: 0;
    transform: translate(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.contTextPrincipal{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-left: 2%;
    gap: 20px;

    opacity: 0;
    transform: translate(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.textPrincipal{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textPrincipal small{
    font-size: clamp(0.59375rem, 0.4856rem + 0.4808vw, 1.0625rem);
    font-weight: bold;
    color: var(--colorWhite);
    font-family: var(--fontTitles);
    margin-bottom: 5px;
}

.textPrincipal h1{
    font-size: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    line-height: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    font-family: var(--fontTitles);
    color: var(--colorWhite);
}

.textPrincipal p{
    width: 60%;
    font-size: clamp(0.8125rem, 0.7692rem + 0.1923vw, 1rem);
    font-weight: 500;
    color: var(--colorWhite);
    margin-top: 10px;
}

.btnPrincipal{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .6s;
}

.btnPrincipal:hover{
    transform: translate(15px);
}

.btnPrincipal a{
    text-decoration: none;
}

.btnPrincipal a:nth-child(1){
    width: 400px;
    height: 55px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background-color: transparent;
    border: 3px solid var(--colorWhite);
    font-size: clamp(0.8125rem, 0.7115rem + 0.4487vw, 1.25rem);
    font-weight: 800;
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.btnPrincipal a:nth-child(2){
    width: 55px;
    height: 55px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid var(--colorWhite);
    transition: .6s;
}

.btnPrincipal:hover a:nth-child(1){
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.4);
}

.btnPrincipal:hover a:nth-child(2){
    transform: rotate(360deg);
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.4);
}

.btnPrincipal a i{
    font-size: clamp(0.875rem, 0.7452rem + 0.5769vw, 1.4375rem);
    color: var(--colorWhite);
}

.logo3dStart{
    width: 55%;
    height: 100%;
    right: 0;
    position: absolute;
    padding: 2% 0;

    opacity: 0;
    transform: translateX(2%);
    transition: all .6s;

    --transform: translate(0);
}

.reltv3d{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#logoSpline{
    width: 100%;
    height: 100%;
    display: block;
}

.hiddenStart{
    opacity: 0;
    pointer-events: none;
}

.visibleStart{
    opacity: 1;
}

.bottomPrincipal{
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.contVideoStart{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.svgStart{
    position: absolute;
    z-index: -1;
}

.videoStart{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    clip-path: url('#customClip');
}

.videoStart video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.masVendidos{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border);
    background-color: var(--colorBlack);
    gap: 25px;

    opacity: 0;
    transform: translateY(10%);
    transition: all .6s;

    --transform: translate(0);
}

.titleSale{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titleSale h2{
    font-size: clamp(1.75rem, 1.5048rem + 1.0897vw, 2.8125rem);
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.contTagetSale{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.targetSale{
    width: 31%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 15px;
    padding: 0 1%;
    cursor: pointer;
    transition: .6s;
    position: relative;
}

.targetSale::after{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: url("../img/fondo-ruido-diseño.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--border);
    opacity: .03;
    z-index: 0;
    transition: .6s;
}

.targetSale:hover{
    scale: 1.03;
}

.targetSale:hover::after {
    opacity: 0.15;
}

.imgSale{
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.imgSale img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.textSale{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.textSale h3{
    font-size: clamp(0.78125rem, 0.7019rem + 0.3526vw, 1.125rem);
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.secundaryStart{
    width: 30%;
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.secundaryTop{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1% 3%;
    gap: 15px;
    background-color: var(--colorBlack);
    border-radius: var(--border);

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.textSecundaryTop{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.textSecundaryTop h2{
    font-size: clamp(1.375rem, 1.2163rem + 0.7051vw, 2.0625rem);
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.textSecundaryTop p{
    font-size: clamp(0.75rem, 0.6779rem + 0.3205vw, 1.0625rem);
    color: var(--colorWhite);
}

/* Slider */
.sliderSecundaryTop{
    width: 100%;
    height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slideExtraOne{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.slideImgEx{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 25px;
    will-change: transform;
}

.navSlider{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.navSlider button{
    width: 15px;
    height: 15px;
    border: 2px solid var(--colorWhite);
    background-color: transparent;
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s ease;
}

.navSlider button:hover{
    transform: scale(1.05);
}

.navSlider button.active{
    background-color: var(--colorWhite);
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
/* Slider */

.secundaryBottom{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1% 3%;
    gap: 15px;
    background-color: var(--colorBlack);
    border-radius: var(--border);

    opacity: 0;
    transform: translateY(10%);
    transition: all .6s;

    --transform: translate(0);
}

.model3dStart{
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#dogRobot{
    width: 100%;
    height: 100%;
    display: block;
}

.textSecundaryBottom{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.secundaryBottom h2{
    font-size: clamp(1.375rem, 1.2163rem + 0.7051vw, 2.0625rem);
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.secundaryBottom p{
    font-size: clamp(0.75rem, 0.6779rem + 0.3205vw, 1.0625rem);
    color: var(--colorWhite);
}

.efect{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1850px){
    .contTextPrincipal{
        width: 98%;
    }
    .btnPrincipal a:nth-child(1){
        width: 380px;
        height: 50px;
    }
    .btnPrincipal a:nth-child(2){
        width: 50px;
        height: 50px;
    }
    .navSlider button{
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 1700px){
    .logo3dStart{
        width: 50%;
    }
    .navSlider button{
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 1560px){
    .btnPrincipal a:nth-child(1){
        width: 350px;
        height: 45px;
    }
    .btnPrincipal a:nth-child(2){
        width: 45px;
        height: 45px;
    }
    .navSlider button{
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 1400px){
    .start{
        flex-direction: column;
    }
    .principalStart{
        width: 100%;
        height: 135vh;
    }
    .topPrincipal{
        height: 60%;
    }
    .bottomPrincipal{
        height: 40%;
    }
    .secundaryStart{
        width: 100%;
        height: 60vh;
        flex-direction: row;
    }
    .secundaryTop,
    .secundaryBottom{
        height: 100%;
    }
}

/* Altura */
@media (max-height: 780px){
    .principalStart{
        height: 145vh;
    }
    .secundaryStart{
        height: 65vh;
    }
}
/* Altura */

@media (max-width: 1220px){
    .contTextPrincipal{
        gap: 15px;
    }
    .textPrincipal p{
        margin-top: 5px;
    }
    .btnPrincipal a:nth-child(1){
        width: 330px;
        height: 40px;
    }
    .btnPrincipal a:nth-child(2){
        width: 40px;
        height: 40px;
    }
    .masVendidos{
        gap: 20px;
    }
}

@media (max-width: 950px){
    .principalStart{
        height: 100vh;
    }
    .topPrincipal{
        height: 60%;
    }
    .bottomPrincipal{
        height: 40%;
    }
    .secundaryStart{
        height: 50vh;
    }
}

@media (max-width: 900px){
    .principalStart{
        height: auto;
    }
    .topPrincipal{
        height: auto;
        flex-direction: column;
        padding: 5% 1%;
        gap: 30px;
    }
    .contTextPrincipal{
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-left: 0%;
    }
    .textPrincipal{
        align-items: center;
    }
    .textPrincipal p{
        width: 95%;
    }
    .logo3dStart{
        width: 90%;
        position: static;
        padding: 0;
        order: -1;
    }
    .bottomPrincipal{
        height: 30vh;
    }
    .masVendidos{
        gap: 15px;
    }
    .secundaryStart{
        height: 30vh;
    }
    .secundaryTop,
    .secundaryBottom{
        gap: 10px;
    }
}

@media (max-width: 750px){
    .btnPrincipal a:nth-child(1){
        width: 320px;
        height: 35px;
        border-width: 2.5px;
    }
    .btnPrincipal a:nth-child(2){
        width: 35px;
        height: 35px;
        border-width: 2.5px;
    }
    .targetSale{
        gap: 5px;
    }
}

@media (max-width: 700px){
    .contStart{
        margin-top: 80px;
    }
}

@media (max-width: 650px){
    .bottomPrincipal{
        height: 80vh;
        flex-direction: column;
    }
    .contVideoStart{
        width: 100%;
        height: 50%;
        order: 1;
    }
    .masVendidos{
        width: 100%;
        height: 50%;
    }
    .secundaryStart{
        height: auto;
        flex-direction: column;
    }
    .secundaryTop{
        height: 45vh;
        padding: 3%;
    }
    .sliderSecundaryTop{
        height: 70%;
    }
    .navSlider button{
        width: 10px;
        height: 10px;
    }
    .secundaryBottom{
        padding: 5% 3%;
        height: auto;
    }
    .model3dStart{
        height: auto;
    }
}

@media (max-width: 580px){
    .contStart{
        margin-top: 70px;
    }
}

@media (max-width: 500px){
    .topPrincipal{
        padding: 8% 0;
    }
    .contTextPrincipal{
        padding: 0 3%;
    }
    .btnPrincipal a:nth-child(1){
        width: 280px;
        height: 30px;
        border-width: 2px;
    }
    .btnPrincipal a:nth-child(2){
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    .logo3dStart{
        width: 100%;
    }
    .textPrincipal p{
        width: 100%;
    }
}

@media (max-width: 440px){
    .btnPrincipal a:nth-child(1){
        width: 260px;
    }
    .bottomPrincipal{
        height: 55vh;
    }
}

/* Altura */
@media (max-height: 844px){
    .bottomPrincipal{
        height: 70vh;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* About Us */
.contAboutUs{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2px;
}

.aboutUs{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--colorBlack);
    border-radius: var(--border);
}

.contentAbousUs{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    z-index: 2;
}

.diseñoUnico{
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 2;

    opacity: 0;
    transform: translate(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.diseñoUnico h2{
    font-size: clamp(2rem, 1.524rem + 2.1154vw, 4.0625rem);
    font-family: var(--fontTitles);
    color: var(--colorWhite);
}

.diseñoUnico p{
    width: 80%;
    font-size: clamp(0.75rem, 0.6045rem + 0.3817vw, 1.0625rem);
    font-weight: 500;
    color: var(--colorWhite);
}

.diseñoUnico a{
    text-decoration: none;
    margin-top: 15px;
}

.diseñoUnico a{
    width: 400px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 45px;
    font-size: clamp(0.8125rem, 0.7115rem + 0.4487vw, 1.25rem);
    font-weight: 700;
    gap: 10px;
    color: var(--colorWhite);
    font-family: var(--fontTitles);
    border: 2.5px solid var(--colorWhite);
    background-color: transparent;
    transition: .6s;
}

.diseñoUnico a:hover{
    transform: translate(10px);
}

.diseñoUnico a i{
    font-size: clamp(0.875rem, 0.7452rem + 0.5769vw, 1.4375rem);
    color: var(--colorWhite);
    transition: .6s;
}

.diseñoUnico a:hover i{
    transform: rotate(350deg);
}

.contReactStark{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 1;
}

.reactStark{
    width: 50%;
    height: 70%;
    display: block;
    justify-content: center;
    align-items: center;
}

.codigoAboutUs{
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 25px;

    opacity: 0;
    transform: translateX(2%);
    transition: all .6s;

    --transform: translate(0);
}

.codeTextAbout{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    text-align: end;
    gap: 5px;
}

.codeTextAbout h2{
    font-size: clamp(2rem, 1.524rem + 2.1154vw, 4.0625rem);
    font-family: var(--fontTitles);
    color: var(--colorWhite);
}

.codeTextAbout p{
    width: 80%;
    font-size: clamp(0.75rem, 0.6045rem + 0.3817vw, 1.0625rem);
    font-weight: 500;
    color: var(--colorWhite);
}

.codeImgAbout{
    width: 80%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.codeImgAbout img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.textBackAboutUs{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;

    opacity: 0;
    transform: translateY(10%);
    transition: all .6s;

    --transform: translate(0);
}

.textBackAboutUs p{
    font-size: clamp(3.125rem, 0.5288rem + 11.5385vw, 14.375rem);
    font-family: var(--fontTitles);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 0.2px rgb(255, 255, 255, .2);
}

.visible{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1850px){
    .contAboutUs{
        height: 70vh;
    }
    .reactStark{
        height: 60%;
    }
    .diseñoUnico a{
        height: 50px;
    }
}

@media (max-width: 1700px){
    .diseñoUnico a{
        height: 45px;
        border-width: 2.5px;
    }
}

@media (max-width: 1450px){
    .diseñoUnico p,
    .codeTextAbout p{
        width: 85%;
    }
    .diseñoUnico a{
        margin-top: 10px;
    }
    .diseñoUnico a{
        width: 370px;
        height: 40px;
    }
    .codigoAboutUs{
        gap: 20px;
    }
}

@media (max-width: 1300px){
    .contAboutUs{
        height: 80vh;
    }
}

@media (max-width: 1230px){
    .contAboutUs{
        height: auto;
    }
    .contReactStark{
        height: 50vh;
        position: static;
    }
    .reactStark{
        width: 100%;
        height: 100%;
    }
    .contentAbousUs{
        flex-direction: column;
        padding: 4% 3%;
        gap: 25px;
    }
    .diseñoUnico,
    .codigoAboutUs,
    .codeTextAbout{
        width: 100%;
    }
    .diseñoUnico p,
    .codeTextAbout p{
        width: 50%;
    }
    .diseñoUnico a{
        width: 350px;
        height: 35px;
    }
    .codeImgAbout{
        width: 70%;
        height: 25vh;
    }
    .textBackAboutUs{
        position: absolute;
        inset: 0;
        margin: auto;
    }
}

@media (max-width: 950px){
    .contReactStark{
        height: 40vh;
    }
    .diseñoUnico p,
    .codeTextAbout p{
        width: 60%;
    }
    .codeImgAbout{
        height: 20vh;
    }
}

@media (max-width: 850px){
    .contReactStark{
        height: 35vh;
    }
    .diseñoUnico p,
    .codeTextAbout p{
        width: 65%;
    }
    .diseñoUnico a{
        width: 300px;
        height: 33px;
        border-width: 2px;
    }
    .codeImgAbout{
        width: 80%;
        height: 15vh;
    }
}

@media (max-width: 750px){
    .codigoAboutUs{
        gap: 15px;
    }
    .diseñoUnico p,
    .codeTextAbout p{
        width: 85%;
    }
    .codeImgAbout{
        width: 85%;
        height: 13vh;
    }
}

@media (max-width: 610px){
    .codeTextAbout h2{
        width: 95%;
    }
    .diseñoUnico p,
    .codeTextAbout p{
        width: 95%;
    }
    .diseñoUnico a{
        width: 280px;
    }
    .codeImgAbout{
        width: 95%;
        height: 15vh;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contServices{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    position: relative;
}

.services{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgb(0,0,0, .1) 0%, rgb(0,0,0, .3) 40%, rgb(0,0,0, .5) 60%, rgb(0,0,0, .7) 85%);
    border-radius: var(--border);
    padding: 3% 2%;
    gap: 30px;
    position: relative;
}

.svgServices{
    position: absolute;
    z-index: -1;
}

/* ----------Styles Menu Serv---------- */
.menuServ{
    width: 75px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    overflow: hidden;
    top: 1%;
    right: 1%;
    border-radius: 25px;
    z-index: 5;
}

.menuServ button{
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: .3s ease-in-out;
    position: relative;
}

.menuServ button::before{
    width: 100%;
    height: 100%;
    inset: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: rgb(0, 0, 0, .2);
    backdrop-filter: blur(7px);
    color: var(--colorWhite);
    font-size: 11px;
    font-weight: 700;
    opacity: 1;
    transition: .6s;
}

.menuServ button i{
    font-size: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.875rem);
    color: var(--colorWhite);
    transition: .6s;
    margin: 20px;
}

.menuServ button:hover i{
    transform: scale(1.15);
}

.menuServ .btnMenuServ:not([data-services="menuBtnServ"]){
    opacity: 0;
    max-height: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.menuServ.open .btnMenuServ:not([data-services="menuBtnServ"]){
    opacity: 1;
    max-height: 60px;
    pointer-events: auto;
    transform: translateY(0);
}

.menuServ button[data-services="Diseño Web"]::before{
    content: "Diseño Web";
}

.menuServ button[data-services="Modelado 3D"]::before{
    content: "Modelado 3D";
}

.menuServ button[data-services="Diseño Gráfico"]::before{
    content: "Diseño Gráfico";
}

.menuServ button[data-services="Marketing"]::before{
    content: "Marketing";
}

.menuServ button[data-services="Fotografía"]::before{
    content: "Fotografía";
}

.menuServ button[data-services="Extras"]::before{
    content: "Extras";
}
/* ----------Styles Menu Serv---------- */

.titleServices{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.titleServices h2{
    font-size: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    line-height: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    font-family: var(--fontTitles);
    color: var(--colorWhite);
}

.contTarget{
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 675px;
    gap: 20px;
    padding: 0 1%;
}

.targetServ{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 7%;
    overflow: hidden;
    transition: .6s;
    position: relative;
    clip-path: url(#customClip2);
    background-color: rgb(20, 20, 20, .5);

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.targetServ:hover{
    transform: scale(1.03);
}

.titleTargetServ{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.titleTargetServ h3{
    font-size: clamp(1.125rem, 1.0102rem + 0.4651vw, 1.5625rem);
    color: var(--colorWhite);
    font-weight: 800;
}

.titleTargetServ p{
    font-size: clamp(1.625rem, 1.3953rem + 0.9302vw, 2.5rem);
    color: var(--colorWhite);
    font-weight: 900;
}

.btnTargetServ{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.btnTargetServ a{
    width: 100%;
    height: 55px;
    border: none;
    cursor: pointer;
    font-size: clamp(0.90625rem, 0.816rem + 0.3654vw, 1.25rem);
    font-weight: 800;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 8px;
    text-decoration: none;
}

.btnTargetServ a i{
    font-size: clamp(0.875rem, 0.7766rem + 0.3987vw, 1.25rem);
    transform: rotate(-30deg);
}

.btnTargetServ a:hover i{
    animation: rotate 1.5s;
}

@keyframes rotate{
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
    100% {
        transform: translate(400px);
    }
}

.btnTargetServ a:nth-child(1){
    background-color: var(--colorWhite);
    color: var(--colorBlack);
}

.btnTargetServ a:nth-child(2){
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.60);
    color: var(--colorWhite);
}

.btnTargetServ a:nth-child(2) i{
    color: var(--colorWhite);
}

.descriptTargetServ{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.descriptTargetServ ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.descriptTargetServ ul li{
    display: flex;
    font-size: clamp(0.75rem, 0.7008rem + 0.1993vw, 0.9375rem);
    font-weight: 600;
    color: var(--colorWhite);
    gap: 8px;
}

.descriptTargetServ ul li i{
    font-size: clamp(0.75rem, 0.7008rem + 0.1993vw, 0.9375rem);
    color: var(--colorWhite);
}

.verMas{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.verMas a{
    width: auto;
    height: auto;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    background-color: transparent;
    color: var(--colorWhite);
    font-size: clamp(0.6875rem, 0.6383rem + 0.1993vw, 0.875rem);
    font-weight: 800;
    gap: 8px;
}

.verMas i{
    font-size: clamp(0.6875rem, 0.6383rem + 0.1993vw, 0.875rem);
    color: var(--colorWhite);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.highlight{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1850px){
    .contTarget{
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 650px;
    }
}

@media (max-width: 1559px){
    .menuServ{
        width: 65px;
        top: 1%;
        right: 1%;
    }
    .menuServ button::before{
        font-size: 10px;
    }
}

@media (max-width: 1400px){
    .contTarget{
        grid-auto-rows: 640px;
    }
    .btnTargetServ a{
        height: 50px;
    }
}

@media (max-width: 1280px){
    .btnTargetServ a{
        height: 45px;
    }
    .menuServ button::before{
        font-size: 9px;
    }
}

@media (max-width: 1150px){
    .btnTargetServ a{
        height: 43px;
    }
    .contTarget{
        grid-auto-rows: 620px;
    }
    .titleServices{
        text-align: center;
    }
    .menuServ{
        top: .5%;
        right: 2%;
    }
}

@media (max-width: 1100px){
    .contTarget{
        width: 85%;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 600px;
    }
}

@media (max-width: 1000px){
    .contTarget{
        width: 95%;
        grid-auto-rows: 580px;
    }
}

@media (max-width: 950px){
    .btnTargetServ{
        gap: 10px;
    }
    .btnTargetServ a{
        height: 40px;
    }
    .contTarget{
        grid-auto-rows: 565px;
    }
    .titleTargetServ{
        margin-bottom: 15px;
    }
    .descriptTargetServ{
        margin-top: 15px;
    }
}

@media (max-width: 850px){
    .titleServices{
        text-align: center;
    }
}

@media (max-width: 768px){
    .services{
        padding: 8% 3%;
    }
    .contTarget{
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 550px;
    }
    .menuServ{
        top: .2%;
        right: 2%;
    }
}

@media (max-width: 580px){
    .btnTargetServ a{
        height: 35px;
    }
    .contTarget{
        grid-auto-rows: 525px;
    }
}

@media (max-width: 480px){
    .contTarget{
        grid-auto-rows: 535px;
    }
}

@media (max-width: 405px){
    .contTarget{
        grid-auto-rows: 545px;
    }
}

@media (max-width: 395px){
    .contTarget{
        grid-auto-rows: 535px;
    }
}

@media (max-width: 360px){
    .contTarget{
        grid-auto-rows: 540px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* FAQ */
.contFaq{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2px;
}

.faq{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--colorBlack);
    border-radius: var(--border);
    gap: 35px;
    padding: 3% 2%;
}

.svgFaq{
    position: absolute;
    z-index: -1;
}

.titleFaq{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.titleFaq h2{
    font-size: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    line-height: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.contTagetFaq{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 500px;
    gap: 20px;
}

.targetFaq{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: hidden;
    position: relative;
    clip-path: url(#customClip3);
    background-color: rgb(20, 20, 20, .5);
    backdrop-filter: blur(10px);
    transition: .6s;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.targetFaq:hover{
    transform: translateY(-15px);
}

.imgFaq{
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgFaq img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textFaq{
    width: 100%;
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0 3%;
}

.textFaq h3{
    font-size: clamp(1.25rem, 1.149rem + 0.4487vw, 1.6875rem);
    color: var(--colorWhite);
}

.textFaq p{
    font-size: clamp(0.75rem, 0.47rem + 0.3896vw, 0.9375rem);
    color: var(--colorWhite);
}

.animating{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1850px){
    .faq{
        gap: 35px;
    }
}

@media (max-width: 1559px){
    .contTagetFaq{
        grid-auto-rows: 470px;
        gap: 15px;
    }
}

@media (max-width: 1150px){
    .titleFaq{
        text-align: center;
    }
    .contTagetFaq{
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 450px;
    }
}

@media (max-width: 950px){
    .faq{
        padding: 8% 3%;
    }
    .contTagetFaq{
        width: 100%;
    }
    .contTagetFaq{
        gap: 10px;
    }
}

@media (max-width: 750px){
    .faq{
        gap: 30px;
    }
    .contTagetFaq{
        place-items: center;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px){
    .contTagetFaq{
        grid-auto-rows: 440px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Visual Rest */
.contVisual{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2px;
}

.visual{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border);
    position: relative;
    padding: 3%;
    background-image: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../img/fondo-visual-rest.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.textVisual{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 2;

    opacity: 0;
    transform: translate(-10%);
    transition: all .6s;

    --transform: translate(0);
}

.textVisual h2{
    font-size: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    line-height: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    color: var(--colorWhite);
}

.btnVisual{
    width: 470px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .6s;
}

.btnVisual:hover{
    transform: translate(15px);
}

.btnVisual a{
    text-decoration: none;
}

.btnVisual a:nth-child(1){
    width: 400px;
    height: 55px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background-color: transparent;
    border: 4px solid var(--colorWhite);
    font-size: clamp(0.8125rem, 0.7115rem + 0.4487vw, 1.25rem);
    font-weight: 800;
    color: var(--colorWhite);
    font-family: var(--fontTitles);
}

.btnVisual a:nth-child(2){
    width: 55px;
    height: 55px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid var(--colorWhite);
    transition: .6s;
}

.btnVisual:hover a:nth-child(1){
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.4);
}

.btnVisual:hover a:nth-child(2){
    transform: rotate(360deg);
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.4);
}

.btnVisual a i{
    font-size: clamp(0.875rem, 0.7452rem + 0.5769vw, 1.4375rem);
    color: var(--colorWhite);
}

.imgVisual{
    width: 45%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 3%;

    opacity: 0;
    transform: translateX(2%);
    transition: all .6s;

    --transform: translate(0);
}

.imgVisual img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.crash{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1450px){
    .textVisual{
        gap: 15px;
    }
    .btnVisual a:nth-child(1){
        width: 370px;
        height: 50px;
        border: 3px solid var(--colorWhite);
    }
    .btnVisual a:nth-child(2){
        width: 50px;
        height: 50px;
        border: 3px solid var(--colorWhite);
    }
}

@media (max-width: 1350px){
    .btnVisual a:nth-child(1){
        width: 350px;
        height: 45px;
    }
    .btnVisual a:nth-child(2){
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 1200px){
    .btnVisual a:nth-child(1){
        width: 330px;
        height: 40px;
    }
    .btnVisual a:nth-child(2){
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 950px){
    .contVisual{
        height: auto;
    }
    .visual{
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 5% 3%;
    }
    .textVisual{
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .textVisual h2{
        width: 95%;
    }
    .btnVisual{
        justify-content: center;
    }
    .btnVisual a:nth-child(1){
        width: 300px;
    }
    .imgVisual{
        width: 100%;
        height: 60%;
        position: static;
    }
}

@media (max-width: 850px){
    .textVisual h2{
        width: 100%;
    }
}

@media (max-width: 750px){
    .btnVisual{
        gap: 10px;
    }
    .btnVisual a:nth-child(1){
        width: 280px;
        height: 35px;
        border: 2.5px solid var(--colorWhite);
    }
    .btnVisual a:nth-child(2){
        width: 35px;
        height: 35px;
        border: 2.5px solid var(--colorWhite);
    }
    .visual{
        padding: 7% 3%;
    }
}

@media (max-width: 500px){
    .btnVisual a:nth-child(1){
        width: 250px;
        height: 33px;
    }
    .btnVisual a:nth-child(2){
        width: 33px;
        height: 33px;
    }
}

@media (max-width: 450px){
    .btnVisual a:nth-child(1){
        width: 230px;
        border: 2px solid var(--colorWhite);
    }
    .btnVisual a:nth-child(2){
        border: 2px solid var(--colorWhite);
    }
}

@media (max-width: 360px){
    .btnVisual a:nth-child(1){
        height: 30px;
    }
    .btnVisual a:nth-child(2){
        width: 30px;
        height: 30px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Galery */
.contGalery{
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    padding: 0 2px;

    opacity: 0;
    transform: translate(-10%);
    transition: all .6s;

    --transform: translate(0);    
}

.sliderGalery .itemSliderGalery{
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: .6s;
    border-radius: var(--border);
}

.sliderGalery .itemSliderGalery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border);
}

.sliderGalery .itemSliderGalery::after{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgb(0,0,0, .7) 10%, transparent);
}

.textSliderGalery{
    width: 40%;
    position: absolute;
    left: 5%;
    top: 10%;
    z-index: 1;
}

.textSliderGalery h3{
    font-size: clamp(2.5rem, 1.6346rem + 3.8462vw, 6.25rem);
    margin: 0;
    color: var(--colorWhite);
    font-family: var(--fontTitles);
    line-height: 1;
}

.textSliderGalery p:nth-child(2){
    font-size: clamp(0.6875rem, 0.5577rem + 0.5769vw, 1.25rem);
    text-transform: uppercase;
    color: var(--colorWhite);
    margin-top: 10px;
}

.itemSliderGalery.active{
    opacity: 1;
    z-index: 5;
}

@keyframes showImg {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.itemSliderGalery.active h2,
.itemSliderGalery.active p:nth-child(2){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showImg .5s .7s ease-in-out forwards;
}

.itemSliderGalery.active h3{
    animation-delay: 1s;
}

.itemSliderGalery.active p:nth-child(2){
    animation-delay: 1.3s;
}

.btnGalery{
    position: absolute;
    display: flex;
    top: 10%;
    right: 50px;
    z-index: 5;
    gap: 10px;

    opacity: 0;
    transform: translateX(2%);
    transition: all .6s;

    --transform: translate(0);
}

.btnGalery button{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    background-color: rgba(238, 238, 238, 0.33);
    transition: .6s;
    cursor: pointer;
}

.btnGalery button i{
    font-size: clamp(1rem, 0.8295rem + 0.4545vw, 1.375rem);
    color: var(--colorWhite);
}

.btnGalery button:hover{
    color: var(--colorBlack);
    background-color: var(--colorWhite);
}

.btnGalery button:hover i{
    color: var(--colorBlack);
}

.contImgSmall{
    width: 100%;
    height: 25%;
    position: absolute;
    bottom: 5%;
    z-index: 5;
    display: flex;
    gap: 10px;
    padding: 0 2%;
    box-sizing: border-box;
    overflow: auto;
    justify-content: start;

    opacity: 0;
    transform: translateY(10%);
    transition: all .6s;

    --transform: translate(0);
}

.contImgSmall::-webkit-scrollbar{
    width: 0;
}

.contImgSmall .itemSliderGalery{
    width: 20%;
    height: 100%;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    border-radius: 20px;
}

.contImgSmall .itemSliderGalery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contImgSmall .itemSliderGalery.active{
    filter: brightness(1.5);
    border: 1px solid var(--colorWhite);
    border-radius: 20px;
}

.flow{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1559px){
    .btnGalery button{
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 950px){
    .contGalery{
        height: 80vh;
    }
    .contImgSmall{
        height: 20%;
        bottom: 4%;
    }
    .contImgSmall .itemSliderGalery{
        width: 35%;
    }
}

@media (max-width: 850px){
    .contGalery{
        height: 70vh;
    }
    .btnGalery button{
        width: 33px;
        height: 33px;
    }
}

@media (max-width: 600px){
    .btnGalery button{
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 500px){
    .contGalery{
        height: 65vh;
    }
    .contImgSmall{
        height: 15%;
    }
    .contImgSmall .itemSliderGalery{
        width: 40%;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Models 3D */
.contModel3d{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 2px;

    opacity: 0;
    transform: translate(-10%);
    transition: all .6s;

    --transform: translate(0); 
}

.models3d{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border);
    background-image: url(../img/fondo-animacion-y-modelaje3d.png);
    background-position: center;
    background-repeat: none;
    background-size: cover;
}

.sliderModels3d{
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    transition: .6s;
    border-radius: var(--border);
    z-index: 2;
    pointer-events: none;
}

.itemSliderModel3d{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    border-radius: var(--border);
}

.sliderModels3d img{
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: var(--border);
    cursor: pointer;
    pointer-events: auto;
}

.btnModels3d{
    width: 100%;
    height: auto;
    position: absolute;
    margin: auto;
    inset: 0;
    padding: 0 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0); 
}

.btnModels3d button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, .15);
    backdrop-filter: blur(20px);
    border: 2px solid var(--colorWhite);
    transition: .6s;
    pointer-events: all;
    z-index: 2;
}

.btnModels3d button:hover{
    box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.4);
}

.btnModels3d button i{
    font-size: clamp(0.9375rem, 0.7955rem + 0.3788vw, 1.25rem);
    color: var(--colorWhite);
    transition: .6s;
}

.btnModels3d button:hover i{
    transform: rotate(360deg);
}

.cash{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1700px){
    .btnModels3d button{
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 1000px){
    .btnModels3d button{
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 950px){
    .contModel3d{
        height: 80vh;
    }
}

@media (max-width: 850px){
    .contModel3d{
        height: 60vh;
    }
}

@media (max-width: 600px){
    .btnModels3d button{
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 500px){
    .contModel3d{
        height: 55vh;
    }
}

/* Altura */
@media (min-height: 750px) and (max-height: 900px){
    .contModel3d{
        height: 50vh;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Proyects Web */
.contPagWeb{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 2px 2px 2px;
}

.pagWeb{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--colorBlack);
    border-radius: var(--border);
    padding: 5% 0;
}

.paginas{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.titlePag{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0); 
}

.titlePag h2{
    font-size: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    line-height: clamp(2.375rem, 1.9135rem + 2.0513vw, 4.375rem);
    font-family: var(--fontTitles);
    color: var(--colorWhite);
}

.contItemPag{
    width: 95%;
    height: auto;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 450px;
    gap: 20px;
}

.itemPag{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .6s ease-out;
    gap: 15px;
    border-radius: var(--border);

    opacity: 0;
    transform: translateY(-10%);
    transition: all .6s;

    --transform: translate(0); 
}

.itemPag:hover{
    transform: scale(1.05);
}

.contItemPag .itemPag:nth-child(1),
.contItemPag .itemPag:nth-child(2),
.contItemPag .itemPag:nth-child(3){
    cursor: pointer;
}

.imgPag{
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.imgPag img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .contItemPag .itemPag:nth-child(2) .imgPag img{
    filter: blur(8px);
} */

.process{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    gap: 10px;
    z-index: 2;
}

.process i{
    font-size: clamp(2.5rem, 2.4279rem + 0.3205vw, 2.8125rem);
    object-fit: contain;
    color: var(--colorWhite);
    animation: rotar 3s linear infinite;
}

@keyframes rotar{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.process p{
    font-size: clamp(1.5625rem, 1.4904rem + 0.3205vw, 1.875rem);
    font-weight: 550;
    color: var(--colorWhite);
}

.textPag{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.txtPagItem{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.txtPagItem h3{
    font-size: clamp(1.5625rem, 1.4904rem + 0.3205vw, 1.875rem);
    color: var(--colorWhite);
}

.txtPagItem p{
    font-size: clamp(0.9375rem, 0.8942rem + 0.1923vw, 1.125rem);
    font-weight: 350;
    color: var(--colorWhite);
}

.lenguaje{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lenguaje img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: .6s;
    cursor: pointer;
}

.lenguaje img:hover{
    transform: scale(1.3);
}

.teck{
    opacity: 1;
    transform: var(--transform);
}

/* Responsive */

@media (max-width: 1600px){
    .lenguaje img{
        width: 36px;
        height: 36px;
    }
    .paginas{
        width: 100%;
        gap: 30px;
    }
    .contItemPag{
        width: 98%;
    }
    .textPag{
        gap: 13px;
    }
    .lenguaje{
        gap: 7px;
    }
}

@media (max-width: 1300px){
    .imgPag{
        height: 65%;
    }
    .textPag{
        height: 35%;
    }
    .contItemPag{
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 470px;
        gap: 20px;
    }
}

@media (max-width: 950px){
    .paginas{
        gap: 25px;
    }
}

@media (max-width: 900px){
    .contItemPag{
        width: 75%;
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 450px;
        gap: 10px;
    }
}

@media (max-width: 550px){
    .contItemPag{
        width: 85%;
        grid-auto-rows: 440px;
    }
}

@media (max-width: 500px){
    .txtPagItem{
        gap: 3px;
    }
    .contItemPag{
        width: 98%;
    }
}

@media (max-width: 435px){
    .lenguaje img{
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 414px){
    .lenguaje img{
        width: 33px;
        height: 33px;
    }
}

@media (max-width: 380px){
    .lenguaje img{
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 360px){
    .lenguaje img{
        width: 30px;
        height: 30px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* PopUp */
.contPopup{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    margin: auto;
    z-index: 10;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    pointer-events: none;
    opacity: 0;
    transition: .6s;
}

.contPopup.active{
    opacity: 1;
    pointer-events: all;
}

.popupUnv{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    animation: popupIn 0.4s ease forwards;
}

.popupUnv.closing{
    animation: popupOut 0.3s ease forwards;
}

.popupContent{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.popupContent video,
.popupContent img{
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.btnClose{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0%;
    left: 5%;
    background-color: var(--colorBlack);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: .6s;
    z-index: 10;
}

.btnClose:hover{
    background-color: var(--colorBlack);
    box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.btnClose i{
    font-size: clamp(0.875rem, 0.808rem + 0.2143vw, 1.0625rem);
    color: var(--colorWhite);
    transition: .6s;
}

.btnClose:hover i{
    transform: rotate(360deg);
    color: var(--colorWhite);
}

@keyframes popupIn{
    from{
        transform: scale(0.85); opacity: 0;
    }
    to{
        transform: scale(1); opacity: 1;
    }
}

@keyframes popupOut{
    from{
        transform: scale(1); opacity: 1;
    }
    to{
        transform: scale(0.85); opacity: 0;
    }
}

@media (max-width: 1600px){
    .btnClose{
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1150px){
    .btnClose{
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 500px){
    .btnClose{
        width: 30px;
        height: 30px;
    }
}