/*#region GENERAL */
@font-face {
    /* font-family: Georgia;
    src: url('../css/fonts/Georgia.ttf'); */
    font-family: FutuBk;
    src: url('./fonts/FutuBk.ttf');
}

* {
    /* font-family: Georgia, 'Times New Roman', Times, serif; */
    font-family: FutuBk;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* min-height: 100vh; */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* section {
    min-height: 100vh;
} */

/*#endregion GENERAL */

/*#region COLORES */
:root {
    --bg-nav: transparent;
    --bg-nav-scroll: #fff;

    --cl-nav-logo: #000;
    --cl-nav-links: #000;
    --cl-nav-links-h: #95A0D0;

    --sz-nav-logo: 18px;
    --sz-nav-links: 14px;
    /* TAMAÑO POR DEFECTO 16PX */

    --bg-slide-bar: #c1c1c136;
    --bg-slide-bar-act: #373E73;

    --bg-about-card: #a4a4a4;

    /* --cl-form-tx: #5757577e; */
    --cl-form-tx: #000;


    --bg-foot-cont: #95A0D0;
    --cl-foot-text: #fff;

    --cl-foot-text-links-h: #000;

    --cl-foot-lasmsoft: #2c17e7;

}

/*#endregion COLORES */

/*#region NAV */

header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent;
}

.pre__nav{
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 14px;
    .pre__nav-cont{
        width: 90%;
        gap: 20px;
        justify-content: end;
        align-items: center;
        display: flex;
        
        & a{
            text-align: center;
            color: #000;
            text-decoration: none;
    
        }
    }

}

.pre__nav .scroll {
    background-color: var(--bg-nav-scroll);
}

nav {
    background-color: var(--bg-nav);
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 10px 0;
    transition: all .55s;
}

.scroll {
    background-color: var(--bg-nav-scroll);
    -webkit-box-shadow: 0px 17px 24px -3px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0px 17px 24px -3px rgba(0, 0, 0, .75);
    box-shadow: 0px 17px 24px -3px rgba(0, 0, 0, .75);
}

.nav__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--cl-nav-logo);
    font-size: var(--sz-nav-logo);
}

.nav__logo-img {
    width: 80px;
    height: 70px;
}

.nav__logo-img img {
    display: block;
    width: 100%;
    height: 100%;
}


.nav {
    display: flex;
    width: 90%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav__links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__links ul {
    list-style: none;
    display: flex;
    height: 60px;
    gap: 20px;

}

.nav__links ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.nav__links ul li a {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cl-nav-links);
    font-size: var(--sz-nav-links);
    font-weight: bold;
    transition: all .4s;
}

.nav__links ul li a:hover,
.nav__links ul li a.active {
    color: var(--cl-nav-links-h);
}

.links__nav{
    display: inline-flex;
    gap: 10px;

    & a{
        transition: all 1.5s;
        &:hover{
            color: #95A0D0;
        }
    }
}

/*#region SELECT */
.selectbox {
    width: 35px;
    height: 15px;
    position: relative;
}

.select__icon {
    width: 10px;
}

.select__cont {
    width: 100%;
    height: 100%;
}

.select__img {
    display: block;
    width: 100%;
    height: 100%;
}

.select {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    transition: .2s ease all;
    margin-bottom: 10px;
    position: relative;
    z-index: 200;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, .16);
}

.options {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .16);
    transition: .2s ease all;
    z-index: 100;
    display: none;
}

.options.active {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.options__cont img {
    cursor: pointer;
}

.nav__label,
.nav__input {
    display: none;
}

/*#endregion SELECT */

/*#endregion NAV */

/*#region HOME */

#home {
    /* background-color: #5d785d; */
    /* min-height: calc(100vh - 80px); */
    margin-top: -95px;
    /* background-color: #0DA7E7; */
}


.slide-contenedor {
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background-color: linear-gradient(rgba(255,255,255,.50),rgba(255,255,255,.50)); */

    .capa{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .5s;
        background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));
        z-index: 80;
    }
}

.miSlider {
    transition: 2s;
    min-height: 100vh;
}

.miSlider img {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    /* margin-top: 80px; */
    vertical-align: top;
    transition: 2s;
    /* display: block; */
}

.direcciones {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 0 20px;
    z-index: 90;
}

.direcciones a {
    color: #fff;
    display: inline-block;
    padding: 20px;
    text-decoration: none;
}

.direcciones a:hover {
    background: rgba(0, 0, 0, .5);
    transition: .5s;
}

.barras {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    z-index: 90;
}

.barra {
    cursor: pointer;
    height: 3.5px;
    width: 25px;
    margin: 0 2px;
    background-color: var(--ber-color);
    display: inline-block;
    margin-left: 10px;
    background-color: var(--bg-slide-bar);
}

.barra.active {
    background-color: var(--bg-slide-bar-act);
}

.fade {
    animation: fade 1.5s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}


/*#endregion HOME */

/*#region ABOUT */


#about {

    position: relative;
    /* width: 100%;
    min-height: 100vh; */

    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
    min-height: 100vh;

    /* background-image: linear-gradient(rgba(255, 255, 255, 0.705),rgba(0, 0, 0, 0.171)), url(https://audaces.com/wp-content/uploads/2020/03/imagen_blog_AUDACES_1.jpg); */
    /* background-image: rgba(187, 22, 22, 0.596), url(https://audaces.com/wp-content/uploads/2020/03/imagen_blog_AUDACES_1.jpg); */
    background-image: linear-gradient(rgba(255, 255, 255, 0.877),rgba(255, 255, 255, 0.877)), url('../img/fondos/about (2).webp');
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    & video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* display: block; */
    }

    .about__capa {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .5s;
        background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));
        /* background: #1c1c1d15; */
        /* mix-blend-mode: overlay; */
    }

    .aboutus__title {
        text-transform: uppercase;
        font-weight: 800;
        font-size: 3em;
        z-index: 1;
        /* background-color: #3866f2; */

        & h2 {
            text-align: center;
            color: #000;
        }
    }

    .aboutus {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 20%;

        & p {
            color: #000;
            text-align: justify;
        }
    }

    
    
}

.arrow__down, .arrow__up{
    /* background-color: #373E73; */
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    & a{
        text-decoration: none;
        color: #000;
        font-size: 2em;

    }
}

#mvv{
    display: flex;
    min-height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.51),rgba(255, 255, 255, 0.51)), url(../img/fondos/mvv.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* padding-top: 100px; */
    
    .about__img{
        width: 50%;
        
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    
    .aboutus__cont {
        width: 50%;
        display: flex;
        flex-direction: column;
        padding: 120px 5%;
        gap: 20px;
        
        .about__card {
            /* background-color: var(--bg-about-card); */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            gap: 10px;
            border-radius: 15px;
            background: rgba(255, 255, 255, .3);
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            border: 1.5px solid rgba(209, 213, 219, 0.3);

            /* background: rgba(255, 255, 255, .30);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37);
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, .18); */

            .about__card-img {
                width: 30px;
                height: 30px;

                font-size: 2em;

                /* & img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    filter: invert(1);
                } */
            }

            .about__card-title {
                text-align: center;
                text-transform: uppercase;

                & h3 {
                    color: #000;
                }
            }

            .about__card-descrip {
                margin-top: 10px;
                text-align: justify;

                & p {
                    color: #000;
                }
            }
        }
    }
}

/*#endregion ABOUT */

/*#region PRODUCT */

#product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
    gap: 20px;
    min-height: 100vh;


    .product__title {
        text-transform: uppercase;
        font-weight: 800;
        font-size: 3em;
    }

    .product__descrip {
        display: none;
        text-align: center;
    }

    .product__select{
        width: 100%;
        /* background-color: #373E73; */
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        
        .catalogue{
            width: 25%;

            & a{
                text-decoration: none;

                .catalogue__cont{

                    & img{
                        width: 100%;
                        height: 100%;
                        display: block;
                    }
                }

                .catalogue__descrip{
                    text-align: center;
                    text-transform: capitalize;
                    font-size: 1.5em;
                    color: #000;
                }
            }
        }
    }
}

.product__slider {
    position: relative;
    padding: 0 10%;


    .product__slider-buttons {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        border-bottom: 1px solid #000;

        & p {
            & span {
                font-size: 40px;
                margin: 0 5px;
                cursor: pointer;
                color: #555;
                width: 30px;
                height: 30px;
                display: inline-block;
                line-height: 19px;
                text-align: center;
                border-radius: 3px;

                &:hover {
                    background-color: #222;
                    color: #fff;
                }
            }
        }

    }

    .product__slider-cont {
        width: 100%;
        height: 600px;
        margin: auto;
        display: flex;
        align-items: center;
        overflow-x: auto;


        &::-webkit-scrollbar {
            display: none;
        }

        .product__card {
            min-width: 24%;
            /* height: 75%; */
            /* height: 90%; */
            background-color: whitesmoke;
            margin: 0 20px 0 0;
            border-radius: 20px;
            position: relative;
            left: 0;
            transition: .5s;

            & picture {
                width: 100%;
                height: 80%;
                /* height: 70%; */
                padding: 20px;
                display: flex;
                overflow: hidden;
                margin-bottom: 20px;

                & img {
                    width: 100%;
                }
            }

            .product__card-details {
                width: 90%;
                margin: auto;
                padding: 5px;
                display: none;
                justify-content: space-between;
                align-items: center;
                height: 50px;
                font-size: 20px;
                color: #444;

                & small {
                    color: #555;
                }
            }

            .descrip{
                display: none;
            }
        }
    }
}

.products__catalogue{
    min-height: 100vh;
}

.product__show{
    width: 100%;
    /* min-height: 100vh; */
    height: 100%;
    /* background-color: #555; */
    display: flex;
    padding: 40px 20%;
    gap: 20px;
    .product{
        width: 50%;
        height: 700px;
        /* height: calc(100% - ); */
        overflow: hidden;
        & img{
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            cursor: zoom-in;
        }
    }

    .product__descrip{
        width: 50%;
        display: flex;
        flex-direction: column-reverse;

        .descrip{
            height: calc(100% - 200px);
            padding: 10% 0;
        }

        .subImgs{
            width: 100%;
            height: 200px;
            display: flex;

            & img{
                width: 100%;
                height: 100%;
                display: block;
                /* border: none;
                outline: none; */

                &:hover{
                    cursor: pointer;
                }
            }
        }
    }
}

.product__card .subImgCat {
    display: none;
}

/* Estilos CSS para el efecto de zoom */
/* Estilos CSS para la imagen principal */
/* #imgPrincipal {
    position: relative;
    transition: transform 0.3s ease;
    transform-origin: top left;
  } */

/*#endregion PRODUCT */

/*#region PROCESSES */

#processes{
    padding: 100px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    gap: 20px;
    min-height: 100vh;
    .processes__title{
        font-size: 3em;
        text-transform: uppercase;
        font-weight: 800;

        & h2{

        }
    }

    .processes__descrip{
        text-align: center;
    }

    .processes__cont{
        /* .content{
            & p{
                text-align: center;
            }
        } */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: start;
        gap: 20px;
        width: 100%;

        .processes__card{
            width: calc(100% / 4);

            padding: 10px;
            .processes__icon{
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 10% 0;

                & i{
                    width: 80px;
                    height: 80px;
                    text-align: center;
                    font-size: 3em;
                    border: 1px solid #000;
                    border-radius: 50%;
                    padding: 5%;
                }
            }

            .processes__description{
                display: flex;
                flex-direction: column;
                gap: 10px;
                & h3{
                    text-align: center;

                }
            }
        }
    }

    .processes__video{
        text-align: center;

        & a{
            text-decoration: none;
            & i{
                font-size: 2em;
                color: #ff0000;
            }
            
            & p{
                color: #000;
            }
            & :hover{
                transform: scale(2.5em);
            }
        }
    }
}

/*#endregion PROCESSES */

/*#region CONTACT */

#contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.521), rgba(255, 255, 255, 0.521)), url('../img/fondos/contact.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 100px 10%;
    min-height: 100vh;



    .contact__title {
        text-transform: uppercase;
        font-weight: 800;
        font-size: 3em;

        & h2 {
            color: #fff;
        }
    }

    .contact__descrip {
        text-align: center;
        color: #fff;
    }

    .contact__cont {
        width: 100%;
        padding: 50px 20%;
        /* background-image: linear-gradient(#0da6e7c0,#0da6e7c0); */
        border-radius: 20px;

        .contact__form-cont {
            border-radius: 20px;
            /* border-radius: 20px;
            background: rgba(255, 255, 255, .3);
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            border: 1.5px solid rgba(209, 213, 219, 0.3); */
            background: rgba(255, 255, 255, .30);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37);
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, .18);

            & form {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 30px;

                .contact__form-group {
                    position: relative;
                    color: var(--cl-form-tx);

                    .form__input {
                        width: 100%;
                        background: none;
                        color: #706c6c;
                        font-size: 1rem;
                        padding: .6em .3em;
                        border: none;
                        outline: none;
                        border-bottom: 1px solid var(--cl-form-tx);

                        &:not(:placeholder-shown) {
                            color: #4d4646;
                        }

                        &:focus+.form__label,
                        &:not(:placeholder-shown)+.form__label {
                            transform: translateY(-12px) scale(.7);
                            transform-origin: left top;
                            color: #95A0D0;
                        }

                        &:focus~.form__line,
                        &:not(:placeholder-shown)~.form__line {
                            transform: scale(1);
                        }
                    }

                    .form__label {
                        color: var(--cl-form-tx);
                        cursor: pointer;
                        position: absolute;
                        top: 0;
                        left: 5px;
                        transform: translateY(10px);
                        transition: transform .5s, color .3s;
                        text-transform: capitalize;
                    }

                    .form__line {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 1px;
                        background-color: #95A0D0;
                        transform: scale(0);
                        transform: left bottom;
                        transition: transform .4s;
                    }

                }

                .form__submit {
                    background: #95A0D0;
                    color: #fff;
                    font-weight: 300;
                    font-size: 1rem;
                    padding: .8em 0;
                    border: none;
                    border-radius: .5em;
                    cursor: pointer;
                }
            }
        }
    }
}

/* @media (max-width:425px){
    
} */


/*#endregion CONTACT  */

/*#region FOOTER */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--bg-foot-cont);
    padding: 50px 5%;
    gap: 10px;


    .foot__cont {
        width: 100%;
        display: flex;
        gap: 30px;

        .foot__cont-div {
            width: calc(100% / 3);
            display: flex;
            gap: 8px;
            flex-direction: column;

            .div-row {
                display: flex;
                gap: 8px;

                /* .foot__cont-div-img{
                    
                } */
                .foot__cont-div-text {
                    width: 100%;
                    /* height: 100%; */

                    & p {
                        color: var(--cl-foot-text);
                    }

                    .link__redes {
                        width: 100%;
                        display: flex;
                        gap: 10px;
                        & a {
                            display: inline-flex;
                            gap: 8px;
                            text-decoration: none;
                            color: var(--cl-foot-text);
                            transition: all .3s;


                            &:hover {
                                cursor: pointer;
                                /* color: var(--cl-foot-text-links-h); */
                                filter: invert(1)
                            }
                        }

                        &:last-child {
                            margin-top: 5px;
                        }
                    }
                }
            }
        }
    }

    .copyright {
        width: 100%;
        display: flex;
        flex-direction: column;


        .copyright__cont {
            & p {
                text-align: center;
                color: var(--cl-foot-text);

                & a {
                    color: var(--cl-foot-text);
                    text-decoration: none;
                    transition: all .3s;

                    &:hover {
                        color: var(--cl-foot-lasmsoft);
                    }
                }
            }

        }
    }
}

.line {
    width: 100%;
    height: 1px;
    background-color: var(--cl-foot-text);
    margin: 5px 0;
}

.cont-img {
    width: 16px;
    height: 16px;
    color: #fff;
}



/*#endregion FOOTER */




/*#region VIDEO */
#show-video-btn {
    /* padding: 10px 20px; */
    /* font-size: 16px; */
    /* background-color: #3498db; */
    /* color: #fff; */
    /* border: none; */
    /* cursor: pointer; */
    /* margin-bottom: 20px; */
  }
  
  #overlay {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* margin-top: 100px; */
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 800;
  }
  
  #video-container {
    position: relative;
    width: 80%;
    height: 60%;
    margin: auto;
  }
  
  #video-player {
    width: 100%;
    height: 100%;
  }
  
  #close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 16px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 800;

  }

  @media (max-width: 768px) {
    #video-container {
      width: 90%;
      height: 50%;
    }
  }

/*#endregion VIDEO */



