/** Agregamos la fuente que vamos a utilizar en la pagina  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';    
}


html{
    scroll-behavior: smooth;
}

/** #inicio {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('https://new.express.adobe.com/id/urn:aaid:sc:US:23094ad3-64b5-5666-a3d8-c59cda6fb093?invite=true&promoid=Z2G1FQKR&mv=other');
    background-size: cover;
    background-position: center center;
    height: 100vh;
} */

#inicio-v{
    height: 100vh;
    background-size: cover;
    background-position: center center;
}

.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Coloca el video detrás del contenido */
}

.video-fondo video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra todo el contenedor */
}

.video-pequena {
    display: none; /* Oculta el video pequeño por defecto */
}

@media screen and (max-width: 600px) {
    .video-grande {
        display: none; /* Oculta el video grande en pantallas pequeñas */
    }

    .video-pequena {
        display: block; /* Muestra el video pequeño en pantallas pequeñas */
        width: 90%; /* Asegúrate de que se ajuste al contenedor */
        height: auto; /* Mantiene la proporción del video */
    }
}

@media screen and (min-width: 601px) {
    .video-grande {
        display: block; /* Muestra el video grande en pantallas grandes */
        width: 100%; /* Asegúrate de que se ajuste al contenedor */
        height: auto; /* Mantiene la proporción del video */
    }

    .video-pequena {
        display: none; /* Oculta el video pequeño en pantallas grandes */
    }
}

/* Resto del CSS */


#inicio .contenido header{
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
}

#inicio .contenido header .contenido-header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #0b048f;
}

#inicio .contenido header .contenido-header h1{
    text-align: center;
    color: #2E49F5;
}

#inicio .contenido header .contenido-header nav ul{
    list-style: none;
    display: flex;
    align-items: center;

}

#inicio .contenido header .contenido-header nav ul li a{
    text-decoration: none;
    color: #fff;
    margin: 0 12px;
    font-weight: 400;
    transition: .5s;
}

#inicio .contenido header .contenido-header nav ul a:hover{
    color: #2E49F5;
}

#inicio .contenido header .contenido-header .redes a{
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-left: 10px;
    transition: .5s;
}

#inicio .contenido header .contenido-header .redes a:hover{
    color: #2E49F5;
}

#inicio .contenido .presentacion{
    max-width: 1100px;
    height: 100vh;
    margin: auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#inicio .contenido .presentacion .bienvenida{
    font-size: 26px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

#inicio .contenido .presentacion h2{
    font-size: 55px;
    margin-bottom: 25px;
    text-align: center;
}

#inicio .contenido .presentacion h2 span{
    font-size: 55px;
    color: #2E49F5;    
}

#inicio .contenido .presentacion .descripcion{
    max-width: 800px;
    margin: 25px auto;
    font-size: 18px;
    text-align: center;

}

#inicio .contenido .presentacion a{
    text-decoration: none;
    display: inline-block;
    margin: 25px;
    padding: 20px 25px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: .5s;
}

#inicio .contenido .presentacion a:hover{
    background-color: #0d03cf;
    color: #0a00be;
}

#icon-nav{
    color: #052ee6;
    display: none;

}

#linkedin{
    color: #0b048f;
    display: none;
}

/** seccion  sobre mi estilos */ 

#sobremi{
    max-width: 1100px;
    margin: auto;
    padding: 100px 15px;
    color: #111135;
    display: flex;
}

#sobremi .contenedor-foto{
    max-width: 500px;
    margin-right: 300px;
    margin-top: 10%;

}

#sobremi .contenedor-foto img{
    padding: 20%;
    width: 250%;
    border-radius: 25px;
    background-color: #fff;
}

#sobremi .sobremi{
    margin: 0 4px;
}

#sobremi .sobremi .titulo-seccion{
    font-size: 22px;
    text-transform: uppercase;
    color: #111135;
    text-decoration: underline;
    text-decoration-color: #2E49F5;
    text-decoration-thickness: 5px;

}

#sobremi .sobremi h2{
    font-size: 35px;
    font-weight: bold;
    margin: 20px 0;
    letter-spacing: 2px;
}

#sobremi .sobremi h2 span{
    color: #2E49F5;
}


#sobremi .sobremi h3{
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;

}

#sobremi .sobremi p{
    font-size: 14px;
    line-height: 25px;
    color: #565656;
    margin-bottom: 12px;
}

#sobremi .sobremi a{
    display: inline-block;
    text-decoration: none;
    color: #000;
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid #000;
    margin-top: 30px;
    transition: .5s;
}

#sobremi .sobremi a:hover{
    background-color: #2E49F5;
    color: #fff;
}

/* estilos de servivios y fila */
/* SECCION SERVICIOS */

#servicios{
    padding: 100px 15px;
    text-align: center;
    /*background-color: #BDCDD6;*/
    background: linear-gradient(#4e64f8, rgba(9,8,1,.3)), url("https://plus.unsplash.com/premium_photo-1661715955019-89f39802cd4d?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
    text-align: center;
}

#servicios .titulo-seccion{
    font-size: 22px;
    text-transform: uppercase;
    color: #111135;
    text-decoration: underline;
    text-decoration-color: #111135;
    text-decoration-thickness: 5px;
}

#servicios .fila{
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 30px auto;

}

#servicios .fila .servicio {
    max-width: 350px;
    background-color: #fff;
    padding: 30px;
    margin: 0 5px;
    border-radius: 5px;
    transition: .05s;
}

#servicios .fila .servicio:hover{
    box-shadow: 5px 5px 10px #565656, -5px -5px 10px #8a8a8a;
}

#servicios .fila .servicio h4 {
    font-size: 22px;
    margin-bottom: 25px;
}

#servicios .fila .servicio .icono{
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #3a30ed;
    padding: 20px;
    margin-bottom: 25px;
}
#servicios .fila .servicio hr{
    width: 30%;
    margin: auto;
    color: #000;
    margin-bottom: 25px;
}

#servicios .fila .servicio ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#servicios .fila .servicio p{
    font-size: 14px;
    line-height: 22px;
}

/** seccion skill habilidades blandas*/

.contenedor-skills{
    background: linear-gradient(#6764a4, rgba(33,16,16,.8)), url("https://images.pexels.com/photos/614117/pexels-photo-614117.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
    text-align: center;
}



/* SECCION FrontEnd */
#portafolio{
    background: linear-gradient(#4e64f8, rgba(9,8,1,.3)), url("https://images.unsplash.com/photo-1607706189992-eae578626c86?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
    text-align: center;
       
    
}

#portafolio .titulo-seccion{
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    color: #111135;
    text-decoration: underline;
    text-decoration-color: #111135;
    text-decoration-thickness: 5px;
}

#portafolio .fila{
    display: flex;
    justify-content: space-between;
    margin: 30px 0;

}

#portafolio .fila .proyecto{
    max-width: 450px;
    border: 1px solid #000;
    margin: 0 10px;
    position: relative;
    overflow: hidden;

}

#portafolio .fila .proyecto img{
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    object-fit: cover;
    transition: .5s;
}

#portafolio .fila .proyecto:hover img{
    filter: grayscale(0);
}

#portafolio .fila .proyecto .info{
    position: absolute;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    color: #574fec;
    width: 100%;
    padding: 10px;
    opacity: 0;
    bottom: -40px;
    transition: .5s;
}

#portafolio .fila .proyecto:hover .info{
    opacity: 1;
    bottom: 0;
}
/* termina portafolio */


/* seccion estilos contactos */

#contacto {
    padding: 100px 15px;
}

#contacto .titulo-seccion {
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    color: #111135;
    text-decoration: underline;
    text-decoration-color: #171090;
    text-decoration-thickness: 5px;
}

#contacto .contenedor-form {
    max-width: 1100px;
    margin: auto;
}

#contacto .contenedor-form .fila {
    margin-bottom: 15px;
}

#contacto .contenedor-form .mitad{
    display: flex;
    justify-content: space-between;
}

#contacto .contenedor-form input,
#contacto .contenedor-form textarea {
    padding: 20px;
    border-radius: 20px;
    border: none;
    border: 1px solid #0b048f;
}
#contacto .contenedor-form .mitad input{
    width: 48%;
}

#contacto .contenedor-form .input-full {
    width: 100%;
}

#contacto .btn-enviar {
    display: block;
    margin: auto;
    cursor: pointer;
    transition: .5s;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
}

#contacto .btn-enviar:hover{
    background-color: #3d34e5;
    color: #fff;
}

/* seccio footer */

footer{
    background-color: #000;
    color: #0d04bb;
    text-align: center;
    padding: 30px 0;
}

footer a{
    text-decoration: none;
    color: #3228ef;
    display: inline-block;
    margin: 5px;
    font-size: 26px;

}

/* seccion responsive */

@media screen and (max-width:800px){
    .redes{
        display: none;
    }
    nav {
        display: none;
    }
    nav.responsive{
        display: block;
        background-color: #0a00be; 
        width: 100%;
        position: absolute;
        top: 48px;
        left: 0;
        padding: 10px 0;
        
    }
    nav.responsive ul{
        display: block !important;
        text-align: center;
        
    }
    nav.responsive ul li{
        margin: 5px 0;
    }
    #icon-nav{
        display:flex;
        
    }
    .blanco{
        color: #0d01f8;
    }
    
    .linkedin{
        color: #0a00be;
        display: block;
    }
    
    #sobremi{
        padding: 50px;
        display: block;
        
    }
    #sobremi .contenedor-foto{
        max-width: 130px;
        margin: 5px;
    }
    #sobremi .contenedor-foto img{
        padding: 8px;

    }
    #sobremi .sobremi .titulo-seccion {
        text-align: center;
    }
    #sobremi .sobremi h2 {
        font-size: 25px;
        text-align: center;
    }
    #sobremi .sobremi h3 {
        margin-left: 25px;
        text-align: center;
    }
    #sobremi .sobremi p {
        margin-left: 25px;
        text-align: center;
    }
    #sobremi .sobremi a{
        margin-left: 30%;
        text-align: center;
    }

    #servcios {
        padding: 50px 15px;
    }
    #servicios .fila{
        display: block;
    }
    #servicios .fila .servicio{
        margin: 10px auto;
    }
    .contenedor-skills{
        padding: 50px 20px;
    }
    #portafolio{
        padding: 50px 0;
    }
    #portafolio .fila{
        display: block;
    }
    #portafolio .fila .proyecto{
        margin: 10px auto;
    }
    #contacto{
        padding: 50px 15px;
    }
    #contacto .contenedor-form .mitad{
        margin-bottom: 15px;
        display: block;
    }
    #contacto .contenedor-form .mitad input{
        width: 100%;
        margin-bottom: 15px;
    }
}


















