@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&display=swap');
html {
    scroll-behavior: smooth; /* Desplazamiento suave para toda la página */
}

body{
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    width: 100%;
    max-width: 100%;
}




/*MAIL*/
/* Contenedor del mensaje */
#confirmationMessage {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #5670FF 24.27%, #479AFF 53.74%, rgba(161, 202, 253, 0.8) 99.86%);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: calc(100% - 60px);
    z-index: 1000;
    display: none;  /* Inicialmente oculto */
    transition: opacity 0.5s ease-out; /* Efecto de desvanecimiento */
}

#confirmationMessage.success {
    background:#4fae53 ;
}

#confirmationMessage.error {
    background: #f36b6b;
}



/* Estilo para el overlay (fondo semi-transparente) */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegurarse de que esté encima de otros elementos */
}

/* Contenedor que contiene el spinner y el mensaje */
.loading-container {
    text-align: center;
    justify-content: center;
    background: aliceblue;
    padding: 44px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* Estilo para el spinner */
.spinner {
    border: 8px solid #f3f3f3; /* Gris claro */
    border-top: 8px solid #5670FF; /* Color de la rueda */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    animation: spin 1s linear infinite; /* Animación para hacer girar el spinner */
}

/* Animación del spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilo para el mensaje */
.loading-message {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
























/*HEADER*/
header{
    background: linear-gradient(180deg, rgba(86, 112, 255, 0.18) 19.37%, rgba(71, 154, 255, 0.18) 66.08%, rgba(161, 202, 253, 0.1062) 91.45%, rgba(251, 251, 251, 0.0324) 99.04%);
    width: 100%;
    height: 835px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

}

.hamburger, .overlay{
    display: none ;
}
#nav{
    width: 1430px;
    height:80px;
    top: 36px;
    padding: 0px 8px 0px 8px;
    gap: 0px;
    border-radius: 100px;
    background: #FFF;
    display: flex;
    align-items: center;
    transition: height 0.3s ease; /* Transición suave */

    position: fixed;
    z-index: 99999999;

}
#nav.glass {
    background-color: hsl(from #fff h s l / 60%);
    backdrop-filter: blur(10px);  /* Desenfoque de fondo */
    box-shadow: 1px 1px 15px #a5a5a538;
}

/* Efecto cuando está normal (por defecto) */
#nav {
    background: #FFF;  /* Fondo sólido */
    backdrop-filter: none;  /* Sin desenfoque */
    box-shadow: none;
}
#nav.fixed{
    --tw-backdrop-blur: blur(12px);
    background-color: hsl(from #fff h s l / 60%);
}

#nav_izq{
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    flex-direction: row;
}
#nav_izq img{
    width: 58px;
    fill: var(--Default-Font, #111827);
    height: 58px;
}
#nav_izq p{
    color: var(--Default-Font, #111827);
    text-align: center;

    /* Title Medium */
    font-family: "Bricolage Grotesque";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
    letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
}


#nav_dcha{
    display: flex;
    padding: 8px;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    flex-direction: row;
}

#nav_dcha nav ul {
    list-style-type: none; /* Eliminar los puntitos */
    padding: 0; /* Eliminar el padding por defecto */
    margin: 0; /* Eliminar el margen por defecto */
    display: flex; /* Colocar los elementos en fila */
    justify-content: flex-end; /* Alineación a la derecha */
}

#nav_dcha nav ul li {
    margin-right: 16px; 
}

#nav_dcha nav ul li:last-child {
    margin-right: 0; 
}

#nav_dcha nav ul li a {
    text-decoration: none;
    color:  #111827;
    font-weight: 500;
    font-size: 14px; 
    position: relative;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 20px;
}

nav a:hover {
    color: #CCC2DC !important;
    background-color: #111827 !important;
    font-weight:bold;
    box-shadow: 0px 0px 10px #CCC2DC;
}


#social{
    display: flex;
    align-items: center;
    gap: 10px;

}
#linkedin{
    background-image: url(../assets/linkedin.png);
    display: flex;
    width:  40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

#email{
    background-image: url(../assets/mail.png);
    display: flex;
    width:  40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}




/*HERO*/

#hero{
    display: flex;
    height: 636px;
    padding: 25px 0px 24px 0px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 1430px;
    margin-top: 80px;
}

#hero_izq{
    display: flex;
    padding: 50px 171px 91px 50px;
    align-items: center;
    border-radius: 28px;
    background: var(--White, #FFF);
    max-height: 80%;
    width: 50%;
}

#hero_izq div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

#hero_izq div h1{
    width: 435px;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
    letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);
    margin: 0;
}

#p_1_hero_izq{
    width: 435px;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Headline-Small-Line-Height, 32px); /* 133.333% */
    margin: 0;
}
#p_2_hero_izq{
    width: 435px;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
    letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
    margin: 0;
}
.icono-ubicacion {
    color:#CCC2DC; /* Color rojo */
    width: 16px;
    height: 20px;
    flex-shrink: 0; /* Tamaño del ícono */
}

#hero_izq div button{
    display: flex;
    height: 48px;
    max-height: 48px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 100px;
    color: var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);;
    border: 1px solid var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}
#hero_izq div button:hover{
    background-color:  #111827;
    color:  #CCC2DC;
    border: 1px solid #CCC2DC;
}

#hero_dcha{
    display: flex;
    width: calc(40%)!important;
    padding: 0px 0px!important;
    padding: 10px 136px 0px 136px;
    justify-content: center;
    align-items: center;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: linear-gradient(179deg, rgba(86, 112, 255, 0.18) 19.37%, rgba(71, 154, 255, 0.18) 66.08%, rgba(161, 202, 253, 0.11) 91.45%, rgba(251, 251, 251, 0.03) 99.04%);
    background: linear-gradient(45deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
    height: 577px;
    
}
#hero_dcha img{
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 28px;
    object-fit: cover;
}


/*PROYECTOS*/

#proyectos{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 50px;
    background: linear-gradient(to bottom, rgba(251, 251, 251, 0.03), #F7F9FC 200px);

}

#titulo_proyectos{
    display: flex;
    width: 670px;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
}
#titulo_proyectos h2{
    margin: 0;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
    letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);
    align-self: stretch;
}

#titulo_proyectos p {
    margin: 0;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 127.273% */
    align-self: stretch;
}


#cards_proyectos{
    display: flex;
    width: 1430px;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}
.proyectos_container{
    height: 580px;
    align-self: stretch;
    border-radius: 28px;
    background: var(--White, #FFF);
    display: flex;
    align-items: center;
    flex-direction: row;
}

.proyect_izq{
    width: calc(50% - 50px);
    height: 530px;
    flex-shrink: 0;
    padding-left: 50px;
    padding-top: 50px;
}

.proyect_izq h4{
    margin: 0;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Display-Small-Line-Height, 44px); /* 122.222% */
    align-self: stretch;
    margin-top: 30px;
}
.proyect_izq p{
    margin: 0;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 22px;
    font-style: normal;
    width: 440px;
    font-weight: 300;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 127.273% */
    align-self: stretch;
    margin-top: 18px;
}

.proyect_izq div{
    display: flex;
    align-items: flex-start;
    gap: 23px;
    margin-top:30px;
}

.btn-caso-estudio{
    display: flex;
    height: 48px;
    max-height: 48px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    color: var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
    letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
    cursor: pointer;
    transition: all 0.3s ease-in-out ;
    background: transparent;
    display: none;
}
.btn-caso-estudio:hover{
    background:#CCC2DC ;
    color: #111827;
    box-shadow: 5px 5px 10px #CCC2DC;
}

.btn-ver-behance{
    border-radius: 100px;
    background: #111827;
    display: flex;
    height: 48px;
    max-height: 48px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    text-align: center;
    border: none;
    /* Title Medium */
    font-family: "Bricolage Grotesque";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
    letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
    cursor: pointer;
    transition: all 0.3s ease-in-out ;
    
}
.btn-ver-behance:hover{
    background:#ccc2dc6e;
    color: #111827;
    box-shadow: 5px 5px 10px #CCC2DC;
}

.proyect_dcha{
    width: 50%;
    height: 580px;
    flex-shrink: 0;
    overflow: hidden; /* Oculta el contenido que excede el contenedor */
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.proyectos_container:nth-child(1) .proyect_dcha {
    background-image: url(../assets/Vector\ 15.png);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden; 
    background-clip: border-box;
}
.proyectos_container:nth-child(2) .proyect_dcha {
    background-image: url(../assets/Vector\ 14.png);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden; 
    background-clip: border-box;
}


.proyectos_container:nth-child(3) .proyect_dcha {
    background-image: url(../assets/vector1.png);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden; 
    background-clip: border-box;
}

.proyectos_container:nth-child(4) .proyect_dcha{
    background-image: url(../assets/vector2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% -10%;
    overflow: hidden; 
    background-clip: border-box;

}

.proyectos_container:nth-child(5) .proyect_dcha {
    background-image: url(../assets/vector3.png);
    background-repeat: no-repeat;
    background-size:contain;
    background-position: 50% -10%;
    overflow: hidden; 
    background-clip: border-box;
}

.proyect_dcha img{
    height: 90%;
    width: auto;
}

.proyectos_container:nth-child(1) .proyect_dcha img{
    height: 70%;
    width: auto;
}

/*HERRAMIENTAS*/


#herramientas{
    display: flex;
    width: 100%;
    height: 564px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #F7F9FC;
}

#div_herramientas{
    width: 1430px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: var(--Default-Background, #F7F9FC);
    height: 415px;
    gap: 190px;
}


#div_herramientas_1{
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

}
#div_herramientas_1 h2{
    margin: 0;
    align-self: stretch;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
    letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);

}
#div_herramientas_1 p{
    align-self: stretch;
    margin: 0;
    color: var(--Default-Font, #111827);
font-family: "Bricolage Grotesque";
font-size: 22px;
font-style: normal;
font-weight: 300;
line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 127.273% */
}

#div_herramientas_2{
    height: 100%;
    width: 50%;
    min-width: 50%;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 29px;

    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, 1fr);
}

#div_herramientas_2 div{ 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}










/*SOBRE MI*/
#sobre_mi{
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(
  179deg,
  #fbfbfb 0px, /* Color #fbfbfb en la parte superior */
  rgba(86, 112, 255, 0.18) 250px, /* Comienza a mezclar después de 150px */
  rgba(71, 154, 255, 0.18) 66.08%,
  rgba(161, 202, 253, 0.11) 91.45%,
  rgba(251, 251, 251, 0.03) 99.04%);
display: flex;
flex-direction: column;
align-items: center;
padding-top: 150px;

}

#sobre_mi1{
    width: 1428px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#sobre_mi1 div{
    width: 50%;

}
#sobre_mi1 h4{
    margin: 0;
    padding: 0;
    font-family: "Bricolage Grotesque";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
    letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);
    background: var(--gradients-blue, linear-gradient(272deg, #4E5891 0%, #1E2B47 101.56%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#sobre_mi1 h4 span{
    -webkit-text-fill-color:#1E2B47;
}
#sobre_mi1 img {
    width: auto;
    height: 240px;
    flex-shrink: b;
    background: linear-gradient(10deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
    border-radius: 50%;
    padding: 0px;
    width: 240px;
    object-fit: contain;
}

#sobre_mi2{
    margin-top: 100px;
    width: 1428px;
    display:flex;
    height: 1000px;
    position: relative;
    justify-content: space-between;
}
#sobre_mi2 > div:nth-child(1){
    display: flex;
    width: 605px;
    height: 550px;
    padding: 50px;
    flex-direction: column;
    justify-content:flex-start;
    align-items:baseline;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: var(--White, #FFF);
    gap: 20px;
    left: 0;
    top: 0;
    position: absolute;

}

#sobre_mi2 h4{
   margin: 0;
   color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
    letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);
    align-self: stretch;
}
#sobre_mi2 p{
   margin: 0;
   color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 127.273% */
    align-self: stretch;
}

#sobre_mi2 button{
    display: flex;
    height: 48px;
    max-height: 48px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
   
    text-align: center;
    
    /* Title Medium */
    font-family: "Bricolage Grotesque";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
    letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background: #111827;
    color: var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
  
    border: none;
    border: 1px solid var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    
}
#sobre_mi2 button:hover{
    border: 1px solid var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    background:#ccc2dc6e;
    color: #111827;
    box-shadow: 5px 5px 10px #CCC2DC;
}


#sobre_mi2 button:hover .download-icon{
    color: #111827;
}


.download-icon {
    font-size: 24px; /* Tamaño del icono */
    color: #CCC2DC;
   
    transition: all 0.3s ease-in-out;
  }


  #sobre_mi2 li{
    margin: 0;
    color: var(--Default-Font, #111827);
     font-family: "Bricolage Grotesque";
     font-size: 22px;
     font-style: normal;
     font-weight: 300;
     line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 127.273% */
     align-self: stretch;
 }


 

#sobre_mi2 > div:nth-child(2){
    display: inline-flex;
    padding: 50px;
    align-items: center;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: var(--White, #FFF);
    gap: 20px;
    width: 605px;
    flex-direction: column;
    justify-content:flex-start;
    align-items:baseline;
    position: absolute;
    right: 0;
    top: 0;
    height: 200px;
}
#sobre_mi2 > div:nth-child(3){
    display: inline-flex;
    padding: 50px;
    align-items: center;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: var(--White, #FFF);
    gap: 20px;
    width: 605px;
    flex-direction: column;
    justify-content:flex-start;
    align-items:baseline;
    position: absolute;
    right: 0;
    top: 322px;
    height: 450px;
}

#sobre_mi2 > div:nth-child(4){
    display: inline-flex;
    padding: 50px;
    align-items: center;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: transparent;
    gap: 20px;
    width: 605px;
    flex-direction: column;
    justify-content:flex-start;
    align-items:baseline;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
}

#sobre_mi3{
    margin-top: 100px;
    width: 1428px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales */
    grid-template-rows: repeat(2, auto);

}

.card_sobre_mi3 {
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: var(--Default-Background, #F7F9FC);
    display: flex;
    padding: 50px;
    width: 605px;
    height: 200px;
    align-items: center;
    flex: 1 0 0;
    flex-direction: row;
    gap: 30px;
}

.card_sobre_mi3 h5{
    margin: 0;
    color: var(--Default-Font, #111827);
    align-self: stretch;
    font-family: "Bricolage Grotesque";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Display-Small-Line-Height, 44px); /* 122.222% */
}
.card_sobre_mi3 p{
    margin: 0;
    align-self: stretch;
    color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
    letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
}


.card_sobre_mi3 img{
    display: flex;
    width: 126px;
    height: 126px;
    padding: 10px var(--Typescale-Title-Medium-Line-Height, 24px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--gradient-Background, linear-gradient(179deg, rgba(86, 112, 255, 0.18) 19.37%, rgba(71, 154, 255, 0.18) 66.08%, rgba(161, 202, 253, 0.11) 91.45%, rgba(251, 251, 251, 0.03) 99.04%));
    }



    /*HABILIDADES*/

    #habilidades{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        padding-top: 150px;
        padding-bottom: 200px;
    }


    #div_habilidades{
        width: 1430px;
        flex-shrink: 0;
        display: flex;
        flex-direction: row;
        border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
       /* background: var(--Default-Background, #F7F9FC);*/
        height: max-content;
        gap: 150px;
        align-items: center;
    }

    
    
    #div_habilidades_1{
        margin-left: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    
    }
    #div_habilidades_1 h2{
        margin: 0;
        align-self: stretch;
        color: var(--Default-Font, #111827);
        font-family: "Bricolage Grotesque";
        font-size: 64px;
        font-style: normal;
        font-weight: 600;
        line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
        letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);
    
    }
    #div_habilidades_1 p{
        align-self: stretch;
        margin: 0;
        color: var(--Default-Font, #111827);
    font-family: "Bricolage Grotesque";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px); 
    }
    




    /*SCROLLER VERTICAL*/

    /*
    #div_habilidades_2 {
        height: 80%;
        width: 50%;
        min-width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px; 
        padding: 20px;
        position: relative;
        overflow: hidden; 
    }
    
    .container_scroll {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
        position: absolute;
        gap: 30px; 

    }
    .start-animation .container_scroll {
        animation: moveUp 20s linear infinite; 
    }
    .label {
        border-radius: 128.652px;
        background: #DFEBFF;
        padding: 5px 40px;
        display: flex;
        height: 51.461px;
        max-height: 61.753px;
        justify-content: center;
        align-items: center;
        gap: 10.292px;
    
        color: var(--Default-Font, #111827);
        text-align: center;
        font-family: "Bricolage Grotesque";
        font-size: 18.011px;
        font-style: normal;
        font-weight: 400;
        line-height: 25.73px; 
        letter-spacing: 0.322px;
        visibility: hidden; 
        opacity: 0;         
        transition: visibility 0s, opacity 0.3s ease; 
        
        
    }
    .start-animation .label {
        visibility: visible; 
        animation: moveUp 20s linear infinite;
        opacity: 1; 
    }

    @keyframes moveUp {
        0% {
            transform: translateY(25%); 
  
        }
        90% {
            opacity: 1;
  
        }

        100% {
            transform: translateY(-100%); 
            opacity: 0; 
        }
    }
    */


   /*ANIMACION ALEATORIA*/

    #div_habilidades_2 {
        height: max-content;
        width: 50%;
        min-width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px; 
        padding: 20px;
        position: relative;
        overflow: hidden; 
    }

    .container_scroll {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        overflow: hidden; 
        gap: 20px; 
    }

    
    .label {
        border-radius: 128.652px;
        background: linear-gradient(45deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
        padding: 5px 15px;
        display: flex;
        height: 30px;
        justify-content: center;
        align-items: center;
        gap: 10.292px;
    
        color: var(--Default-Font, #111827);
        text-align: center;
        font-family: "Bricolage Grotesque";
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 22;
        letter-spacing: 0.322px;
    
        bottom: 0; 
        opacity: 0; 
       
    }
    
    .start-animation .label {
        animation: moveUp 3s ease forwards; 
    }

    @keyframes moveUp {
        0% {
            bottom: -100%; 
            opacity: 0; 
        }
        10% {
            opacity: 1; 
        }
        50% {
            bottom: 0;
            opacity: 1;
        }
        99% {
            opacity: 1; 
        }
        100% {
            bottom: 0; 
            opacity: 1; 
        }
    }
    

    .label.visible {
        opacity: 1 !important; 
    }
    

    #div_habilidades_2 .label:nth-child(1)  { animation-delay: 1.4s; }
    #div_habilidades_2 .label:nth-child(2)  { animation-delay: 4.8s; }
    #div_habilidades_2 .label:nth-child(3)  { animation-delay: 2.1s; }
    #div_habilidades_2 .label:nth-child(4)  { animation-delay: 0.5s; }
    #div_habilidades_2 .label:nth-child(5)  { animation-delay: 3.7s; }
    #div_habilidades_2 .label:nth-child(6)  { animation-delay: 1.8s; }
    #div_habilidades_2 .label:nth-child(7)  { animation-delay: 0.2s; }
    #div_habilidades_2 .label:nth-child(8)  { animation-delay: 3.4s; }
    #div_habilidades_2 .label:nth-child(9)  { animation-delay: 2.7s; }
    #div_habilidades_2 .label:nth-child(10) { animation-delay: 4.5s; }
    #div_habilidades_2 .label:nth-child(11) { animation-delay: 0.9s; }
    #div_habilidades_2 .label:nth-child(12) { animation-delay: 4.0s; }
    #div_habilidades_2 .label:nth-child(13) { animation-delay: 2.4s; }
    #div_habilidades_2 .label:nth-child(14) { animation-delay: 1.2s; }
    #div_habilidades_2 .label:nth-child(15) { animation-delay: 3.0s; }
    #div_habilidades_2 .label:nth-child(16) { animation-delay: 2.9s; }
    #div_habilidades_2 .label:nth-child(17) { animation-delay: 0.8s; }

    

    


   /*FOOTER*/
   
   footer{
    display: flex;
    width: 100%;
    height: 900px;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 204px;
    background: linear-gradient(45deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
}


#div_footer{
    width: 1430px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    border-radius: var(--Typescale-Title-Large-Line-Height, 28px);
    background: var(--Default-Background, #F7F9FC);
    height: 415px;
    gap: 150px;
    align-items: center;
}

#copy{
    margin: 0;
    color: #111827;
    font-family: "Bricolage Grotesque";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px; /* 175% */
    margin-bottom: 50px;
}

#div_footer_1{
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
      
}

#div_footer_1 h2{

font-family: "Bricolage Grotesque";
font-size: 64px;
font-style: normal;
font-weight: 400;
line-height: var(--Typescale-Display-Large-Line-Height, 64px); /* 100% */
letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);

color: #111827;

font-family: "Bricolage Grotesque";
font-size: 64px;
font-style: normal;
font-weight: 400;
line-height: var(--Typescale-Display-Large-Line-Height, 64px);
letter-spacing: var(--Typescale-Display-Large-Letter-Spacing, -0.25px);
margin-top: 0;
}

#div_footer_1 h2 span{
    background: linear-gradient(90deg, #5670FF 24.27%, #479AFF 53.74%, rgba(161, 202, 253, 0.8) 99.86%);
    
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#div_footer_1 div{
    gap: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}
    

#div_footer_1 div a{
    color: #000;
    font-family: "Bricolage Grotesque";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 28px; /* 175% */
    text-decoration: none;
    outline: none;
    border: none;


}
#div_footer_1 div a:hover{
    background: linear-gradient(90deg, #5670FF 24.27%, #479AFF 53.74%, rgba(161, 202, 253, 0.8) 99.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




#div_footer_2{
    height: 100%;
    width: 50%;
    min-width: 50%;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 29px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#div_footer_2 form{
    display: flex;
    width: 520px;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    position: relative;
}


input[type="text"], input[type="email"]{
    display: flex;
    height: 48px;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    align-self: stretch;
    transition: 0.3s;
    padding-left: 10px;
    border-radius: 16px;
    background: linear-gradient(45deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
    border: none;
}

textarea {
    display: flex;
    height: 122px;
    margin: 0;
    padding: 16px;
    align-items: flex-start;
    gap: 10px;
    transition: 0.3s;
    padding-left: 10px;
    resize: none; 
    align-self: stretch;
    border-radius: 16px;
    background: linear-gradient(45deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
    border: none;
}


/* Efecto al hacer foco en los inputs */
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none; 
    border-color: #CCC2DC !important;
    box-shadow: 0 0 8px #CCC2DC !important;
    border: 1px solid #CCC2DC;
}


/* Estilos para el botón submit (sin efectos) */
input[type="submit"] {
    display: flex;
    height: 48px;
    max-height: 48px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    gap: 8px;
    align-self: stretch;
    border-radius: 100px;
    border: 1px solid var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--Schemes-Secondary-Fixed-Dim, #CCC2DC);
text-align: center;

/* Title Medium */
font-family: "Bricolage Grotesque";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: var(--Typescale-Title-Medium-Line-Height, 24px); /* 150% */
letter-spacing: var(--Typescale-Title-Medium-Letter-Spacing, 0.15px);
}

/* Efectos hover solo para el botón de submit */
input[type="submit"]:hover {
    color:#CCC2DC ;
    background: #111827;
    box-shadow: 5px 5px 10px #CCC2DC;
}



/*LOADER*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C3FEEB -0.09%, #EBC3FE 49.91%, #FEEBC3 99.91%);
    display: flex;
    overflow: hidden !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999999999999;
}

/* Estilo para la letra P */
.letter {
    stroke:#111827;
    
    stroke-width: 1;
    animation: draw 3s ease forwards; /* Duración de 4 segundos */
}



/* Animación para dibujar la letra P */
@keyframes draw {
    0% {
        stroke-dasharray: 0, 250; /* Inicia sin trazo */
       

    }
    100% {
        stroke-dasharray: 250, 0; /* Completa el trazo */
 
    }
}

/* Efecto de desintegración */
@keyframes disintegrate {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2); /* Aumenta ligeramente el tamaño */
    }
    100% {
        opacity: 0;
        transform: rotate(360deg); /* Desplaza y rota para dar el efecto de desintegración */
        display: none;
    }
}

/* Desaparecer el loader tras 4 segundos */
.loader {
    animation: disintegrate 1s ease 1.2s forwards; /* Mueve la animación a 4 segundos */
}











/*RESPONSIVES*/

@media (min-width: 1440px) {

    .proyectos_container:nth-child(1) .proyect_dcha img{
        height: 50%;
        width: auto;
    }
    .proyectos_container:nth-child(2) .proyect_dcha img{
        height: 70%;
        width: auto;
    }


    header{
        height: 700px !important;
    }
    #nav {
        width: 1000px !important;
    }

    #hero{
        width: 1000px !important;
        height: 450px !important;
    }

    #hero_izq {
        padding: 50px 0px !important;
        width: calc(50%) !important;
        height: 300px !important;
        max-height: 300px !important;
        justify-content: center;
    }
    #hero_izq div h1 {
        font-size: 48px!important;
        line-height: 48px!important;
    }


    #hero_dcha {
        width: calc(40%)!important;
        padding: 0px 0px!important;
        height: 400px!important;
        max-height: 400px !important;
    }



    #proyectos {
        padding-top: 70px !important;


    }
    #cards_proyectos {

        width: 1000px !important;

    }

    #titulo_proyectos {
        width: 1000px !important;
    }
    #div_herramientas {
        width: 1000px !important;
        gap: 50px !important;

    }
    #div_herramientas_1 {
        margin-left: 0 !important;
        }

    #div_herramientas_2 div p{
        text-align: center !important;
    }

    #div_herramientas_2 div {
        height: 100% !important;
        width: 100% !important;
        justify-content: start !important;
    }


    #sobre_mi1 {
        width: 1000px !important;

    }

    #sobre_mi1_1{
        width: 65% !important;
    }
    #sobre_mi1_2{
        width: 35% !important;
    }


    #sobre_mi2 {
        width: 1000px !important;
    }

    #sobre_mi2 > div:nth-child(1) {
        width: 390px !important;
    }
    #sobre_mi2 > div:nth-child(2) {
        width: 390px !important;
    }

    #sobre_mi2 > div:nth-child(3) {
        width: 390px !important;
    }

    #sobre_mi2 > div:nth-child(4) {
        width: 390px !important;
    }

    #sobre_mi2 h4 {
        line-height: 48px !important;
        font-size: 48px !important;
    }



    #sobre_mi2 p {
        font-size: 22px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 24px) !important;
    }
    #sobre_mi2 li {
        font-size: 22px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 24px) !important;

    }


    #sobre_mi3 {
        width: 1000px !important;
    }

    .card_sobre_mi3 {
        padding: 20px !important;
        width: 450px !important;
        height: 250px !important;
    }


    .card_sobre_mi3 p {

        font-size: 16px;

        line-height: var(--Typescale-Title-Medium-Line-Height, 20px) !important;
    }

    .card_sobre_mi3 img {
   
        width: 100px !important;
        height: 100px !important;
    }

    .card_sobre_mi3 h5 {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    #div_habilidades {
        width: 90% !important;
        gap: 50px !important;
    }

    #div_footer {
        width: 1000px !important;
        gap: 50px !important;
    }

    #div_footer_1 h2 {
        font-size: 48px !important;
        line-height: 48px !important;
    }

    #div_footer_1 {
        width: 50% !important;
        max-width: 50% !important;
        margin-left: 20px !important;
    }
    #div_footer_2{
        width: 50% !important;
    }
    #div_footer_2 form {
        width: 400px !important;
    }
    #div_footer_1 div a {
        font-size: 16px !important;
    }

    #div_footer_1 div {
        gap: 20px !important;
    }
        
}
@media (min-width: 1200px) and (max-width: 1440px) {
    .proyectos_container:nth-child(1) .proyect_dcha img{
        height: 50%;
        width: auto;
    }
    .proyectos_container:nth-child(2) .proyect_dcha img{
        height: 70%;
        width: auto;
    }
    header{
        height: 700px !important;
    }
    #nav {
        width: 1000px !important;
    }

    #hero{
        width: 1000px !important;
        height: 450px !important;
    }

    #hero_izq {
        padding: 50px 0px !important;
        width: calc(50%) !important;
        height: 300px !important;
        max-height: 300px !important;
        justify-content: center;
    }
    #hero_izq div h1 {
        font-size: 48px!important;
        line-height: 48px!important;
    }


    #hero_dcha {
        width: calc(40%)!important;
        padding: 0px 0px!important;
        height: 400px!important;
        max-height: 400px !important;
    }



    #proyectos {
        padding-top: 70px !important;


    }
    #cards_proyectos {

        width: 1000px !important;

    }

    #titulo_proyectos {
        width: 1000px !important;
    }
    #div_herramientas {
        width: 1000px !important;
        gap: 50px !important;

    }
    #div_herramientas_1 {
        margin-left: 0 !important;
        }

    #div_herramientas_2 div p{
        text-align: center !important;
    }

    #div_herramientas_2 div {
        height: 100% !important;
        width: 100% !important;
        justify-content: start !important;
    }


    #sobre_mi1 {
        width: 1000px !important;

    }

    #sobre_mi1_1{
        width: 65% !important;
    }
    #sobre_mi1_2{
        width: 35% !important;
    }


    #sobre_mi2 {
        width: 1000px !important;
    }

    #sobre_mi2 > div:nth-child(1) {
        width: 390px !important;
    }
    #sobre_mi2 > div:nth-child(2) {
        width: 390px !important;
    }

    #sobre_mi2 > div:nth-child(3) {
        width: 390px !important;
    }

    #sobre_mi2 > div:nth-child(4) {
        width: 390px !important;
    }

    #sobre_mi2 h4 {
        line-height: 48px !important;
        font-size: 48px !important;
    }



    #sobre_mi2 p {
        font-size: 22px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 24px) !important;
    }
    #sobre_mi2 li {
        font-size: 22px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 24px) !important;

    }


    #sobre_mi3 {
        width: 1000px !important;
    }

    .card_sobre_mi3 {
        padding: 20px !important;
        width: 450px !important;
        height: 250px !important;
    }


    .card_sobre_mi3 p {

        font-size: 16px;

        line-height: var(--Typescale-Title-Medium-Line-Height, 20px) !important;
    }

    .card_sobre_mi3 img {
   
        width: 100px !important;
        height: 100px !important;
    }

    .card_sobre_mi3 h5 {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    #div_habilidades {
        width: 90% !important;
        gap: 50px !important;
    }

    #div_footer {
        width: 1000px !important;
        gap: 50px !important;
    }

    #div_footer_1 h2 {
        font-size: 48px !important;
        line-height: 48px !important;
    }

    #div_footer_1 {
        width: 50% !important;
        max-width: 50% !important;
        margin-left: 20px !important;
    }
    #div_footer_2{
        width: 50% !important;
    }
    #div_footer_2 form {
        width: 400px !important;
    }
    #div_footer_1 div a {
        font-size: 16px !important;
    }

    #div_footer_1 div {
        gap: 20px !important;
    }
        

}


@media (min-width: 992px) and (max-width: 1199px) {
    header{
        height: 700px !important;
    }
    #nav {
        width: 800px !important;

    }

    #hero{
        width: 800px !important;
        height: 450px !important;
    }

    #hero_izq {
        padding: 50px 0px !important;
        width: calc(50%) !important;
        height: 350px !important;
        max-height: 350px !important;
        justify-content: center;
    }
    #hero_izq div {
        width: 90% !important;
    }   
    #hero_izq div h1 {
        font-size: 40px!important;
        line-height: 40px!important;
        width: 100% !important;
    }
    #p_1_hero_izq {
        width: 100% !important;
    }


    #p_2_hero_izq {
        width: 100% !important;
    }
    #hero_dcha {
        width: calc(40%)!important;
        padding: 0px 0px!important;
        height: 450px!important;
        max-height: 450px !important;
    }


    #proyectos {
        padding-top: 70px !important;


    }
    #cards_proyectos {

        width: 800px !important;

    }

    #titulo_proyectos h2 {
        font-size: 48px !important;
        line-height: 50px !important;

    }

    #titulo_proyectos {
        width: 800px !important;
        gap: 10px !important;
    }

    .proyect_izq {
        padding-left: 20px !important;
        padding-top: 20px !important;
    }
    .proyect_izq p {
        width: 95% !important;
    }

    .proyectos_container .proyect_dcha img{
        height: 70% !important;
    }

    .proyectos_container:nth-child(1) .proyect_dcha img{
        height: 50%;
        width: auto;
    }
    .proyectos_container:nth-child(2) .proyect_dcha img{
        height: 70%;
        width: auto;
    }





    #div_herramientas {
        width: 800px !important;
        gap: 50px !important;

    }
    #div_herramientas_1 {
        margin-left: 0 !important;
        width: 40% !important;
    }
    #div_herramientas_2 {
        width: 60% !important;
    }
    #div_herramientas_1 h2 {
        font-size: 48px !important;
        line-height: 48px !important;
    }
    #div_herramientas_2 div p{
        text-align: center !important;
    }

    #div_herramientas_2 div {
        height: 100% !important;
        width: 100% !important;
        justify-content: start !important;
    }


    #sobre_mi1 {
        width: 800px !important;
        gap: 20px !important;

    }

    #sobre_mi1_1{
        width: 65% !important;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    #sobre_mi1 h4 {
        font-size: 60px !important;
        line-height: 60px !important;
    }
    #sobre_mi1_2{
        width: 35% !important;
    }


    #sobre_mi2 {
        width: 800px !important;
        margin-top: 75px !important;
    }

    #sobre_mi2 > div:nth-child(1) {
        width: 290px !important;
    }
    #sobre_mi2 > div:nth-child(2) {
        width: 290px !important;
    }

    #sobre_mi2 > div:nth-child(3) {
        width: 290px !important;
    }

    #sobre_mi2 > div:nth-child(4) {
        width: 290px !important;
    }

    #sobre_mi2 h4 {
        line-height: 40px !important;
        font-size: 40px !important;
    }



    #sobre_mi2 p {
        font-size: 18px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px) !important;
        margin-bottom: 50px;
    }
    #sobre_mi2 li {
        font-size: 18px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px) !important;

    }


    #sobre_mi3 {
        width: 800px !important;
    }

    .card_sobre_mi3 {
        padding: 20px !important;
        width: 350px !important;
        height: 300px !important;
        flex-direction: column !important; 
    }


    .card_sobre_mi3 p {

        font-size: 16px !important;

        line-height: var(--Typescale-Title-Medium-Line-Height, 20px) !important;
    }

    .card_sobre_mi3 img {
   
        width: 60px !important;
        height: 60px !important;
    }

    .card_sobre_mi3 h5 {
        font-size: 24px !important;
        line-height: 26px !important;
        font-weight: bold !important;
        margin-bottom: 10px !important;
    }


    #div_habilidades {
        width: 90% !important;
        gap: 50px !important;
    }
    .label {
        font-size: 16px;
    }

    #div_habilidades_1 h2 {

        font-size: 48px !important;
        line-height: 48px !important;
    }
    #div_habilidades_1 p {

        font-size: 22px !important;
        line-height: 24px !important;
    }
    #div_habilidades_1 {
        margin-left: 0px !important;
    }

    #div_habilidades_2 {
        width: 60%;
        min-width: 60%;
    }


    #div_footer {
        width: 800px !important;
        gap: 50px !important;
    }

    #div_footer_1 h2 {
        font-size: 48px !important;
        line-height: 48px !important;
    }

    #div_footer_1 {
        width: 50% !important;
        max-width: 50% !important;
        margin-left: 20px !important;
    }
    #div_footer_2{
        width: 50% !important;
    }
    #div_footer_2 form {
        width: 350px !important;
    }
    #div_footer_1 div a {
        font-size: 16px !important;
    }

    #div_footer_1 div {
        gap: 20px !important;
        flex-direction: column;
        justify-content: start;
        align-items: baseline;
    }
        

}


@media (min-width: 768px) and (max-width: 991px) {
    .proyectos_container:nth-child(1) .proyect_dcha img{
        height: 50%;
        width: auto;
    }
    .proyectos_container:nth-child(2) .proyect_dcha img{
        height: 70%;
        width: auto;
    }
    header{
        height: 700px !important;
    }
    #nav {
        width: 700px !important;
        justify-content: space-between;
    }

    #hero{
        width: 700px !important;
        height: 450px !important;
    }

    #hero_izq {
        padding: 50px 0px !important;
        width: calc(50%) !important;
        height: 225px !important;
        max-height: 225px !important;
        justify-content: center;
    }
    #hero_izq div {
        width: 90% !important;
        gap: 8px !important;
    }   
    #hero_izq div h1 {
        font-size: 32px!important;
        line-height: 34px!important;
        width: 100% !important;
    }
    #p_1_hero_izq {
        width: 100% !important;
        font-size: 18px !important;
    }


    #p_2_hero_izq {
        width: 100% !important;
    }
    #hero_dcha {
        width: calc(40%)!important;
        padding: 0px 0px!important;
        height: 325px !important;
        max-height: 325px !important;
    }



    #proyectos {
        padding-top: 70px !important;


    }

    .proyect_izq div {
        width: 90%;

    }

    .btn-caso-estudio, .btn-ver-behance {
        height: 60px !important;
        max-height: 60px !important;
        padding: 15px 20px !important; 

    }
    #cards_proyectos {

        width: 700px !important;

    }

    #titulo_proyectos h2 {
        font-size: 48px !important;
        line-height: 50px !important;

    }

    #titulo_proyectos {
        width: 700px !important;
        gap: 10px !important;
    }

    .proyect_izq {
        padding-left: 20px !important;
        padding-top: 20px !important;
    }
    .proyect_izq p {
        width: 95% !important;
    }

    .proyectos_container .proyect_dcha img{
        height: 70% !important;
    }

    .proyectos_container:nth-child(1) .proyect_dcha img{
        height: 40% !important;
        width: auto ;
    }
    .proyectos_container:nth-child(2) .proyect_dcha img{
        height: 50% !important;
        width: auto;
    }





    #div_herramientas {
        width: 700px !important;
        gap: 50px !important;

    }
    #div_herramientas_1 {
        margin-left: 0 !important;
        width: 40% !important;
        margin-bottom: 50px;
    }
    #div_herramientas_2 {
        width: 60% !important;
    }
    #div_herramientas_1 h2 {
        font-size: 40px !important;
        line-height: 40px !important;
    }
    #div_herramientas_2 div p{
        text-align: center !important;
    }

    #div_herramientas_2 div {
        height: 100% !important;
        width: 100% !important;
        justify-content: start !important;
    }

    #div_herramientas_2 div img{
        width: 70px !important;
        height: 70px !important;
    }


    #sobre_mi1 {
        width: 700px !important;
        gap: 20px !important;

    }

    #sobre_mi1_1{
        width: 65% !important;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    #sobre_mi1 h4 {
        font-size: 54px !important;
        line-height: 54px !important;
    }
    #sobre_mi1 img {
        width: 180px !important;
        height: 180px !important;
    }


    #sobre_mi1_2{
        width: 35% !important;
    }


    #sobre_mi2 {
        width: 700px !important;
        margin-top: 75px !important;
    }

    #sobre_mi2 > div:nth-child(1) {
        width: 240px !important;
    }
    #sobre_mi2 > div:nth-child(2) {
        width: 240px !important;
    }

    #sobre_mi2 > div:nth-child(3) {
        width: 240px !important;
    }

    #sobre_mi2 > div:nth-child(4) {
        width: 240px !important;
    }

    #sobre_mi2 h4 {
        line-height: 36px !important;
        font-size: 36px !important;
    }



    #sobre_mi2 p {
        font-size: 16px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px) !important;
        margin-bottom: 50px;
    }
    #sobre_mi2 li {
        font-size: 16px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px) !important;

    }


    #sobre_mi3 {
        width: 700px !important;
        margin-top: 75px !important;
    }

    .card_sobre_mi3 {
        padding: 20px !important;
        width:calc(100% - 45px) !important;
        height: 320px !important;
        flex-direction: column !important; 
    }


    .card_sobre_mi3 p {

        font-size: 16px !important;

        line-height: var(--Typescale-Title-Medium-Line-Height, 20px) !important;
    }

    .card_sobre_mi3 img {
   
        width: 60px !important;
        height: 60px !important;
    }

    .card_sobre_mi3 h5 {
        font-size: 24px !important;
        line-height: 26px !important;
        font-weight: bold !important;
        margin-bottom: 10px !important;
    }

    #div_habilidades {
        width: 700px !important;
        gap: 15px !important;
    }
    

    #div_habilidades_1 h2 {

        font-size: 40px !important;
        line-height: 40px !important;
    }
    #div_habilidades_1 p {

        font-size: 22px !important;
        line-height: 28px !important;
    }
    #div_habilidades_1 {
        margin-left: 0px !important;
        width: 35% !important;
    }
    #div_habilidades_2 {
        width: 65% !important;
    }

    .container_scroll {
        gap: 15px !important;
    }

    .label {

        padding: 5px 8px !important;
        height: 20px !important;
        gap: 5px !important;
        font-size: 16px !important;
        line-height: 16px !important;
    }



    #div_footer {
        width: 700px !important;
        gap: 50px !important;
    }

    #div_footer_1 h2 {
        font-size: 48px !important;
        line-height: 48px !important;
    }

    #div_footer_1 {
        width: 50% !important;
        max-width: 50% !important;
        margin-left: 20px !important;
    }
    #div_footer_2{
        width: 50% !important;
    }
    #div_footer_2 form {
        width: 300px !important;
    }
    #div_footer_1 div a {
        font-size: 16px !important;
    }

    #div_footer_1 div {
        gap: 20px !important;
        flex-direction: column;
        justify-content: start;
        align-items: baseline;
    }


    #nav_dcha{
        display: none !important;
    }

    .hamburger {
    display: flex !important;
    height: 30px;
    width: 30px;
    margin-right: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .hamburger .checkbox {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
  }


  .line {
    transition: 0.3s;
    stroke-width: 6px;
    stroke: #CCC2DC;
  }
  .lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
  }
  .lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
  }
  .lineMid {
    stroke-dasharray: 40 40;
  }
  .hamburger .checkbox:checked + svg .line {
    stroke: #CCC2DC;
  }
  .hamburger .checkbox:checked + svg .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
  }
  .hamburger .checkbox:checked + svg .lineMid {
    stroke-dashoffset: 40;
  }
  .hamburger .checkbox:checked + svg .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
  }


  .no-scroll {
    overflow: hidden; /* Desactiva el scroll */
}
/* Estilos para el overlay */
.overlay {
    opacity: 0;
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Transición suave */
}

/* Muestra el overlay con transición */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: white;
    width: 400px;
    height: 330px;
    padding: 40px 20px ;
    justify-content: center;
    gap: 30px;
    border-radius: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Estilos originales del ícono de menú hamburguesa */
.hamburger {
    cursor: pointer;
    z-index: 1000;
}


.menu nav {
    display: flex;
    flex-direction: column;
    height: max-content;
    

}



.menu nav ul {
    list-style-type: none; /* Eliminar los puntitos */
    padding: 0; /* Eliminar el padding por defecto */
    margin: 0; /* Eliminar el margen por defecto */
    display: flex; /* Colocar los elementos en fila */
    justify-content: flex-end; /* Alineación a la derecha */
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.menu nav ul li {
    height: 100%;
}

.menu nav ul li:last-child {
    margin-right: 0; 
}

.menu nav ul li a {
    text-decoration: none;
    color: #CCC2DC !important;
    background-color: transparent !important;
    font-weight:bold;
    box-shadow: 0px 0px 10px #CCC2DC;
    
    font-weight: 500;
    font-size: 18px; 
    position: relative;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 30px;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu nav a:hover {
    color: #CCC2DC !important;
    background-color: #111827 !important;
}


#social2{
    display: flex;
    align-items: center;
    gap: 20px;

}
#linkedin2{
    background-image: url(../assets/linkedin.png);
    display: flex;
    width:  30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-size: cover;
}

#email2{
    background-image: url(../assets/mail.png);
    display: flex;
    width:  30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-size: cover;
}

}


@media (min-width: 525px) and (max-width: 767px) {

    header{
        height: 900px !important;
        padding-top: 20px !important;
    }
    #nav {
        width: 400px !important;
        justify-content: space-between !important;
        background-color: #111827 !important;

    }
    #nav_izq{
        background: transparent !important;
        color: #CCC2DC !important ;
    }
    #nav_izq p{
        color: #CCC2DC !important ;
    }

    #hero{
        width: 400px !important;
        height: 800px !important;
        flex-direction: column !important;
        gap: 0 !important;
        justify-content: center !important;
    }

    #hero_izq {
        padding: 15px 0px !important;
        width: calc(100%) !important;
        height: 260px !important;
        max-height: 260px !important;
        justify-content: center;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        background: linear-gradient(179deg, rgba(86, 112, 255, 0.18) 19.37%, rgba(71, 154, 255, 0.18) 66.08%, rgba(161, 202, 253, 0.11) 91.45%, rgba(251, 251, 251, 0.03) 99.04%) !important;
    }
    #hero_izq div {
        width: 90% !important;
        gap: 6px !important;
    }   
    #hero_izq div button {
        color: #CCC2DC !important;
        background: #111827 !important;
        border: 1px solid #111827 !important;
    }
    #hero_izq div button:hover {
        color: #111827 !important;
        background: transparent !important;
        border: 1px solid #111827 !important;
    }


    #hero_izq div h1 {
        font-size: 32px!important;
        line-height: 34px!important;
        width: 100% !important;
    }
    #p_1_hero_izq {
        width: 100% !important;
        font-size: 18px !important;
    }


    #p_2_hero_izq {
        width: 100% !important;
    }
    #hero_dcha {
        width: calc(100% )!important;
        padding: 0px !important;
        height: 400px!important;
        max-height: 400px !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        background: linear-gradient(179deg, rgba(251, 251, 251, 0.03) 50%, rgba(161, 202, 253, 0.11) 70%, rgba(71, 154, 255, 0.18) 85%, rgba(86, 112, 255, 0.18) 100%);
        overflow: hidden;
        align-items: end;
        


    }

    #hero_dcha img {
        width: 100% !important;
        height: 370px !important;
        align-items: end !important;
        object-fit: cover;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    #proyectos {
        padding-top: 70px !important;
    }

    .proyectos_container {
        height: 800px !important;
        flex-direction: column;
    }
    .proyect_izq {
        width: calc(100% - 10px) !important;
        height:  calc(390px) !important;
        padding-left: 10px !important;
        padding-top: 10px !important;
    }

    .proyect_dcha {
        width: 100% !important;
        height: 400px  !important;
    }


    .proyect_izq div {
        width: 90% !important;

    }

    .btn-caso-estudio, .btn-ver-behance {
        height: 60px !important;
        max-height: 60px !important;
        padding: 15px 20px !important; 

    }
    #cards_proyectos {

        width: 480px !important;

    }

    #titulo_proyectos h2 {
        font-size: 48px !important;
        line-height: 50px !important;

    }

    #titulo_proyectos {
        width: 480px !important;
        gap: 10px !important;
    }

    .proyect_izq {
        padding-left: 20px !important;
        padding-top: 20px !important;
    }
    .proyect_izq p {
        width: 95% !important;
    }

    .proyectos_container .proyect_dcha img{
        height: 80% !important;
        transform: rotate(180deg) !important;
    }

    .proyectos_container:nth-child(1) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }

    .proyectos_container:nth-child(2) .proyect_dcha {
        background-size: cover!important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }

    .proyectos_container:nth-child(3) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }
    .proyectos_container:nth-child(4) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }
    .proyectos_container:nth-child(5) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }
    

    .proyectos_container:nth-child(1) .proyect_dcha{
        position: relative;
        overflow-y: hidden;
    }
    .proyectos_container:nth-child(1) .proyect_dcha img{
        position: absolute;
        bottom: 100px;
    }

    #herramientas {
        height: 1000px !important;
    }


    #div_herramientas {
        width: 480px !important;
        gap: 30px !important;
        flex-direction: column !important;
        height: 720px;
        align-items: center;
    }
    #div_herramientas_1 {
        margin-left: 0 !important;
        width: 80% !important;
        margin-bottom: 0px !important;
    }
    #div_herramientas_2 {
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    #div_herramientas_1 h2 {
        font-size: 40px !important;
        line-height: 40px !important;
    }
    #div_herramientas_2 div p{
        text-align: center !important;
        font-size: 18px !important;
    }

    #div_herramientas_2 div {
        height: 100% !important;
        width: 100% !important;
        justify-content: start !important;
    }

    #div_herramientas_2 div img{
        width: 70px !important;
        height: 70px !important;
    }

    #sobre_mi{
        padding-top: 50px !important;
    }


    #sobre_mi1 {
        width: 480px !important;
        gap: 20px !important;
        flex-direction: column;


    }

    #sobre_mi1_1{
        width: 100% !important;
        justify-content: center;
        display: flex;
        align-items: center;
        order: 2 !important;
    }

    #sobre_mi1 h4 {
        font-size: 54px !important;
        line-height: 54px !important;
    }
    #sobre_mi1 img {
        width: 180px !important;
        height: 180px !important;
    }


    #sobre_mi1_2{
        width: 100% !important;
        align-items: center !important;
        display: flex !important;
        justify-content: center !important;
    }


    #sobre_mi2 {
        width: 480px !important;
        height: 1500px !important;
        gap: 20px;
        margin-top: 75px !important;
        display: flex !important;
        flex-direction: column !important;
        height: max-content !important;
        justify-content: center;
        align-items: center;
    }

    #sobre_mi2 > div:nth-child(1) {
        width: 440px !important;
        padding: 20px !important;
        height: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        
    }
    #sobre_mi2 > div:nth-child(2) {
        width: 440px !important;
        padding: 20px !important;
        height: 120px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
    }

    #sobre_mi2 > div:nth-child(3) {
        width: 440px !important;
        padding: 20px !important;
        height: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        top: 0 !important;
        gap: 10px !important;
    }

    #sobre_mi2 > div:nth-child(4) {
        margin-top: 100px;
        width: 440px !important;
        padding: 20px !important;
        height: max-content !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        top: 0 !important;
    }

    #sobre_mi2 h4 {
        line-height: 36px !important;
        font-size: 36px !important;
    }



    #sobre_mi2 p {
        font-size: 16px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px) !important;
    }
    #sobre_mi2 li {
        font-size: 16px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px) !important;

    }


    #sobre_mi3 {
        width: 480px !important;
        margin-top: 20px !important;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .card_sobre_mi3 {
        padding: 20px !important;
        width:calc(100% - 40px) !important;
        height: 200px !important;
        flex-direction: row !important; 
    }


    .card_sobre_mi3 p {

        font-size: 16px !important;

        line-height: var(--Typescale-Title-Medium-Line-Height, 20px) !important;
    }

    .card_sobre_mi3 img {
   
        width: 60px !important;
        height: 60px !important;
    }

    .card_sobre_mi3 h5 {
        font-size: 24px !important;
        line-height: 26px !important;
        font-weight: bold !important;
        margin-bottom: 10px !important;
    }

    #habilidades {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }


    #div_habilidades {
        width: 480px !important;
        gap:20px !important;
        flex-direction: column !important;
        height: max-content !important;
        align-items: center;
    }
    
    

    #div_habilidades_1 h2 {

        font-size: 40px !important;
        line-height: 40px !important;
    }
    #div_habilidades_1 p {

        font-size: 22px !important;
        line-height: 28px !important;
        
    }
    #div_habilidades_1 {
        margin-left: 0px !important;
        width: 100% !important;
    }
    #div_habilidades_2 {
        width: 100% !important;
    }

    .container_scroll {
        gap: 15px !important;
    }

    .label {

        padding: 5px 8px !important;
        height: 20px !important;
        gap: 5px !important;
        font-size: 16px !important;
        line-height: 16px !important;
    }


    footer{
        height: max-content !important;
        padding-top: 100px !important;
    }
    #div_footer {
        height: 700px !important;
        width: 480px !important;
        gap: 50px !important;
        flex-direction: column !important;
    }

    #div_footer_1 h2 {
        font-size: 48px !important;
        line-height: 48px !important;
        text-align: center;
    }

    #div_footer_1 {
        width: calc(100% - 40px)!important;
        max-width: calc(100% - 40px)!important;
        padding: 20px !important;
        margin: 0 !important;
    }
    #div_footer_2{
        width: 100% !important;
    }
    #div_footer_2 form {
        width: 400px !important;
    }
    #div_footer_1 div a {
        font-size: 16px !important;
    }

    #div_footer_1 div {
        gap: 20px !important;
        flex-direction: row;
        justify-content: start;
        align-items: baseline;
    }


    #nav_dcha{
        display: none !important;
    }

    .hamburger {
    display: flex !important;
    height: 30px;
    width: 30px;
    margin-right: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .hamburger .checkbox {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
  }


  .line {
    transition: 0.3s;
    stroke-width: 6px;
    stroke: #CCC2DC;
  }
  .lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
  }
  .lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
  }
  .lineMid {
    stroke-dasharray: 40 40;
  }
  .hamburger .checkbox:checked + svg .line {
    stroke: #CCC2DC;
  }
  .hamburger .checkbox:checked + svg .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
  }
  .hamburger .checkbox:checked + svg .lineMid {
    stroke-dashoffset: 40;
  }
  .hamburger .checkbox:checked + svg .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
  }


  .no-scroll {
    overflow: hidden; /* Desactiva el scroll */
}
/* Estilos para el overlay */
.overlay {
    opacity: 0;
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Transición suave */
}

/* Muestra el overlay con transición */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: white;
    width: 300px;
    height: max-content;
    padding: 40px 20px ;
    justify-content: center;
    gap: 20px;
    border-radius: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Estilos originales del ícono de menú hamburguesa */
.hamburger {
    cursor: pointer;
    z-index: 1000;
}


.menu nav {
    display: flex;
    flex-direction: column;
    height: max-content;

}



.menu nav ul {
    list-style-type: none; /* Eliminar los puntitos */
    padding: 0; /* Eliminar el padding por defecto */
    margin: 0; /* Eliminar el margen por defecto */
    display: flex; /* Colocar los elementos en fila */
    justify-content: flex-end; /* Alineación a la derecha */
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.menu nav ul li {
    height: 100%;
}

.menu nav ul li:last-child {
    margin-right: 0; 
}

.menu nav ul li a {
    text-decoration: none;
    color: #CCC2DC !important;
    background-color: transparent !important;
    font-weight:bold;
    box-shadow: 0px 0px 10px #CCC2DC;
    
    font-weight: 500;
    font-size: 16px; 
    position: relative;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 30px;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu nav a:hover {
    color: #CCC2DC !important;
    background-color: #111827 !important;
}


#social2{
    display: flex;
    align-items: center;
    gap: 20px;

}
#linkedin2{
    background-image: url(../assets/linkedin.png);
    display: flex;
    width:  30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-size: cover;
}

#email2{
    background-image: url(../assets/mail.png);
    display: flex;
    width:  30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-size: cover;
}






}


@media (max-width: 524px) {
    header{
        height: 650px !important;
        padding-top: 20px !important;
    }
    #nav {
        width: 320px !important;
        justify-content: space-between !important;
        background-color: #111827 !important;
        height: 60px !important;

    }
    #nav_izq{
        background: transparent !important;
        color: #CCC2DC !important ;
    }
    #nav_izq p{
        color: #CCC2DC !important ;
    }

    #hero{
        width: 320px !important;
        height: 520px !important;
        flex-direction: column !important;
        gap: 0 !important;
        justify-content: start !important;
    }

    #hero_izq {
        padding: 20px 0px !important;
        width: calc(100%) !important;
        height: 210px !important;
        max-height: 210px !important;
        justify-content: center;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        background: linear-gradient(179deg, rgba(86, 112, 255, 0.18) 19.37%, rgba(71, 154, 255, 0.18) 66.08%, rgba(161, 202, 253, 0.11) 91.45%, rgba(251, 251, 251, 0.03) 99.04%) !important;
    }
    #hero_izq div {
        width: 90% !important;
        gap: 8px !important;
        height: 100%;
    }   
    #hero_izq div button {
        color: #CCC2DC !important;
        background: #111827 !important;
        border: 1px solid #111827 !important;
        height: 30px !important;
    }
    #hero_izq div button:hover {
        color: #111827 !important;
        background: transparent !important;
        border: 1px solid #111827 !important;
        
    }


    #hero_izq div h1 {
        font-size: 26px!important;
        line-height: 28px!important;
        width: 100% !important;
    }
    #p_1_hero_izq {
        width: 100% !important;
        font-size: 18px !important;
        line-height: 18px !important;
    }


    #p_2_hero_izq {
        width: 100% !important;
    }
    #hero_dcha {
        width: calc(100% )!important;
        padding: 0px !important;
        height: 300px!important;
        max-height: 300px !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        background: linear-gradient(179deg, rgba(251, 251, 251, 0.03) 50%, rgba(161, 202, 253, 0.11) 70%, rgba(71, 154, 255, 0.18) 85%, rgba(86, 112, 255, 0.18) 100%);
        overflow: hidden;


    }

    #hero_dcha img {
        width:100%!important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    #proyectos {
        padding-top: 90px !important;
        padding-bottom: 10px !important;
    }

    .proyectos_container {
        height: max-content !important;
        flex-direction: column;
    }
    .proyect_izq {
        width: calc(100% - 10px) !important;
        height:  max-content !important;
        padding-left: 10px !important;
        padding-top: 10px !important;
    }

    .proyect_dcha {
        width: 100% !important;
        height: 300px  !important;
    }


    .proyect_izq div {
        width: 90% !important;

    }

    .btn-caso-estudio, .btn-ver-behance {
        height: 45px !important;
        max-height: 60px !important;
        padding: 15px 20px !important; 
        font-size: 16px !important;
        line-height: 16px !important;

    }
    #cards_proyectos {

        width: 320px !important;

    }

    #titulo_proyectos h2 {
        font-size: 36px !important;
        line-height: 36px !important;

    }

    #titulo_proyectos p {
        font-size: 18px !important;
        line-height: 20px !important;
    }
    #titulo_proyectos {
        width: 320px !important;
        gap: 10px !important;
    }

    .proyect_izq {
        padding-left: 20px !important;
        padding-top: 20px !important;
    }
    .proyect_izq p {
        width: 95% !important;
        font-size: 16px !important;
        line-height: 18px !important;
    }

  
    .proyect_izq h4 {
        font-size: 30px !important;
        line-height: 30px !important;

    }

    .proyectos_container:nth-child(1) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }

    .proyectos_container:nth-child(2) .proyect_dcha {
        background-size: cover!important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }

    .proyectos_container:nth-child(3) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }
    .proyectos_container:nth-child(4) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }
    .proyectos_container:nth-child(5) .proyect_dcha {
        background-size: cover !important;
        background-position: 0 0 !important;
        transform: rotate(180deg) !important;
    }
    .proyectos_container .proyect_dcha img{
        height: 80% !important;
        transform: rotate(0deg) !important;
        transform: rotate(180deg) !important;
    }


    #herramientas {
        height: 1000px !important;
    }


    #div_herramientas {
        width: 320px !important;
        gap: 30px !important;
        flex-direction: column !important;
        height: 720px;
        align-items: center;
    }
    #div_herramientas_1 {
        margin-left: 0 !important;
        width: 80% !important;
        margin-bottom: 0px !important;
        gap: 10px !important;
    }
    #div_herramientas_2 {
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    #div_herramientas_1 h2 {
        font-size: 36px !important;
        line-height: 36px !important;
    }
    #div_herramientas_2 div p{
        text-align: center !important;
        font-size: 18px !important;
        line-height: 20px !important;
    }

    #div_herramientas_1 p {
        font-size: 18px !important;
        line-height: 20px !important;
    }



    #div_herramientas_2 div {
        height: 100% !important;
        width: 100% !important;
        justify-content: start !important;
    }

    #div_herramientas_2 div img{
        width: 70px !important;
        height: 70px !important;
    }

    #sobre_mi{
        padding-top: 50px !important;
        padding-bottom: 100px !important;
    }


    #sobre_mi1 {
        width: 320px !important;
        gap: 20px !important;
        flex-direction: column;


    }

    #sobre_mi1_1{
        width: 100% !important;
        justify-content: center;
        display: flex;
        align-items: center;
        order: 2 !important;
    }

    #sobre_mi1 h4 {
        font-size: 36px !important;
        line-height: 45px !important;
    }
    #sobre_mi1 img {
        width: 140px !important;
        height: 140px !important;
    }


    #sobre_mi1_2{
        width: 100% !important;
        align-items: center !important;
        display: flex !important;
        justify-content: center !important;
    }


    #sobre_mi2 {
        width: 320px !important;
        gap: 20px;
        margin-top: 25px !important;
        display: flex !important;
        flex-direction: column !important;
        height: max-content !important;
        align-items: center;
    }

    #sobre_mi2 > div:nth-child(1) {
        width: 260px  !important;
        padding: 20px !important;
        height: 440px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        
    }
    #sobre_mi2 > div:nth-child(2) {
        width: 260px  !important;
        padding: 20px !important;
        height: 140px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
    }

    #sobre_mi2 > div:nth-child(3) {
        width: 260px  !important;
        padding: 20px !important;
        height: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        top: 0 !important;
        gap: 10px !important;
    }

    #sobre_mi2 > div:nth-child(4) {
        margin-top: 100px;
        width: 260px  !important;
        padding: 20px !important;
        height: max-content !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        top: 0 !important;
    }

    #sobre_mi2 h4 {
        line-height: 30px !important;
        font-size: 30px !important;
    }



    #sobre_mi2 p {
        font-size: 18px !important ;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px) !important;
    }

    #sobre_mi2 div p {
        font-size: 16px !important ;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px) !important;
    }




    #sobre_mi2 li {
        font-size: 16px !important;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px) !important;

    }


    #sobre_mi3 {
        width: 320px !important;
        margin-top: 20px !important;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .card_sobre_mi3 {
        padding: 15px !important;
        width:calc(100% - 30px) !important;
        height: 270px !important;
        flex-direction: column !important; 
        gap: 10px !important;
    }


    .card_sobre_mi3 p {

        font-size: 14px !important;

        line-height: var(--Typescale-Title-Medium-Line-Height, 16px) !important;
    }

    .card_sobre_mi3 img {
   
        width: 50px !important;
        height: 50px !important;
    }

    .card_sobre_mi3 h5 {
        font-size: 24px !important;
        line-height: 26px !important;
        font-weight: bold !important;
        margin-bottom: 10px !important;
    }

    #habilidades {
        padding-top: 0px !important;
        padding-bottom: 100px !important;
    }


    #div_habilidades {
        width: 320px !important;
        gap:20px !important;
        flex-direction: column !important;
        height: max-content !important;
        align-items: center;
    }
    
    

    #div_habilidades_1 h2 {

        font-size: 36px !important;
        line-height: 36px !important;
    }
    #div_habilidades_1 p {

        font-size: 18px !important;
        line-height: 20px !important;
    }
    #div_habilidades_1 {
        margin-left: 0px !important;
        width: 100% !important;
        gap: 10px !important;
    }
    #div_habilidades_2 {
        width: calc(100% - 4px) !important;
        padding: 0 !important;
    }

    .container_scroll {
        gap: 15px !important;
    }

    .label {
        padding: 0px 8px !important;
        height: 25px !important;
        gap: 5px !important;
        font-size: 12px !important;
        line-height: 15px !important;
    }


    footer{
        height: max-content !important;
        padding-top: 100px !important;
        gap: 110px !important;
    }
    #div_footer {
        height: 570px !important;
        width: 320px !important;
        gap: 20px !important;
        flex-direction: column !important;
    }

    #div_footer_1 h2 {
        font-size: 36px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    #div_footer_1 {
        width: calc(100% - 40px)!important;
        max-width: calc(100% - 40px)!important;
        padding: 20px !important;
        margin: 0 !important;
    }
    #div_footer_2{
        width: 100% !important;
    }
    #div_footer_2 form {
        width: 260px !important;
    }
    #div_footer_1 div a {
        font-size: 16px !important;
    }
    input[type="text"], input[type="email"] {
        height: 30px !important;

    }

    #copy {
        font-size: 12px !important;
        line-height: 14px !important;
        text-align: center;
    }

    input[type="submit"] {
        height: 35px !important;
        padding: 0 !important;
    }

    #div_footer_1 div {
        gap: 10px !important;
        flex-direction: column;
        justify-content: start;
        align-items: baseline;
    }
    textarea {
 
        height: 80px !important;
    }


    #nav_dcha{
        display: none !important;
    }

    .hamburger {
    display: flex !important;
    height: 30px;
    width: 30px;
    margin-right: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .hamburger .checkbox {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
  }


  .line {
    transition: 0.3s;
    stroke-width: 6px;
    stroke: #CCC2DC;
  }
  .lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
  }
  .lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
  }
  .lineMid {
    stroke-dasharray: 40 40;
  }
  .hamburger .checkbox:checked + svg .line {
    stroke: #CCC2DC;
  }
  .hamburger .checkbox:checked + svg .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
  }
  .hamburger .checkbox:checked + svg .lineMid {
    stroke-dashoffset: 40;
  }
  .hamburger .checkbox:checked + svg .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
  }


  .no-scroll {
    overflow: hidden; /* Desactiva el scroll */
}
/* Estilos para el overlay */
.overlay {
    opacity: 0;
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Transición suave */
}

/* Muestra el overlay con transición */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: white;
    width: 280px;
    height: max-content;
    padding: 30px 10px ;
    justify-content: center;
    gap: 30px;
    border-radius: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Estilos originales del ícono de menú hamburguesa */
.hamburger {
    cursor: pointer;
    z-index: 1000;
}


.menu nav {
    display: flex;
    flex-direction: column;
    height: max-content;

}



.menu nav ul {
    list-style-type: none; /* Eliminar los puntitos */
    padding: 0; /* Eliminar el padding por defecto */
    margin: 0; /* Eliminar el margen por defecto */
    display: flex; /* Colocar los elementos en fila */
    justify-content: flex-end; /* Alineación a la derecha */
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.menu nav ul li {
    height: 100%;
}

.menu nav ul li:last-child {
    margin-right: 0; 
}

.menu nav ul li a {
    text-decoration: none;
    color: #CCC2DC !important;
    background-color: transparent !important;
    font-weight:bold;
    box-shadow: 0px 0px 10px #CCC2DC;
    
    font-weight: 500;
    font-size: 18px; 
    position: relative;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 30px;
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu nav a:hover {
    color: #CCC2DC !important;
    background-color: #111827 !important;
}


#social2{
    display: flex;
    align-items: center;
    gap: 20px;

}
#linkedin2{
    background-image: url(../assets/linkedin.png);
    display: flex;
    width:  30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-size: cover;
}

#email2{
    background-image: url(../assets/mail.png);
    display: flex;
    width:  30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-size: cover;
}


.proyectos_container:nth-child(1) .proyect_dcha{
    position: relative;
    overflow-y: hidden;
}
.proyectos_container:nth-child(1) .proyect_dcha img{
    position: absolute;
    bottom: 65px;
}


}



button, input[type="checkbox"], a {
    outline: none !important; /* Elimina el borde de enfoque en general */
    -webkit-tap-highlight-color: transparent !important; /* Elimina el cuadro de enfoque en dispositivos táctiles */
}

button:focus, input[type="checkbox"]:focus, a:focus {
    outline: none !important; /* Asegúrate de que también se elimine en el estado de enfoque */
}
