/*      0       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ATRIBUTOS GENERALES     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

* {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 0;
    width: 100%;
    width: 100vw;
    overflow-x: hidden;
}

/*      0.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    CARGADOR     /////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


.hidden {
    overflow: hidden;
}

.cargador {
    position: fixed;
    z-index: 999;
    background-color: #00171b;
    width: 100vw;
    height: 100vh;
    transition: all 0.75s;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    animation: cambiarcolor 6s linear infinite;
}

.cargador h5 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2vw;
    font-weight: 800;
    letter-spacing: 2px;
    animation: animateText 2s ease-in-out infinite;
}

@keyframes animateText
{
    0%, 50%
    {
        color: #005869;
        text-shadow: none;
    }
    50.1%,100%
    {
        color: #00B8D8;
        text-shadow: 0 0 5px #00B8D8,
                    0 0 20px #00B8D8;
    }
}

.centrado {
    position: relative;
    width: 20vw;
    height: 20vw;
}

.cargador .bloques {
    position: absolute;
    width: 12px;
    height: 36px;
    background: #005869;
    border-radius: 10px;
    left: 50%;
    transform: rotate(calc(18deg * var(--i)));
    transform-origin: 0 12vw;
    animation:  cargando 1.9s ease-in-out infinite;
    animation-delay: calc(0.05s * var(--i));
}

@keyframes cargando
{
    0%, 50%
    {
        background: #005869;
        box-shadow: none;
    }
    50.1%,100%
    {
        background: #00B8D8;
        box-shadow: 0 0 5px #00B8D8,
                    0 0 10px #00B8D8,
                    0 0 20px #00B8D8,
                    0 0 40px #00B8D8;
    }
}

/*      0.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    CARGADOR     /////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

::-webkit-scrollbar {
    width: 20px;
    background: rgb(40, 40, 40);
}

::-webkit-scrollbar-thumb {
    background: rgb(158, 158, 158);
}

/*      0.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BANNER     ///////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.banner {
    position: fixed;
    z-index: 998;
    right: 0;
    top:calc(50% - 300px);
    width: 160px;
    height: 600px;
    animation: banner 120s ease-in-out infinite;
    overflow: hidden;
}

.banner iframe {
    width: 160px;
    height: 600px;
    z-index: 998;
}

@keyframes banner {
    0% {transform: translateX(200px);}
    20%{transform: translateX(200%);}
    22% {transform: translateX(0px);}
    32%{transform: translateX(0px);}
    34%{transform: translateX(200px);}
    100%{transform: translateX(200px);}

}

/*      1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    MENÚ EN "INICIO"     /////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


header {
    height: 100vh;
    width: 10vw;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(10, 10, 10);
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    box-shadow: 0 0 0px #00B8DB,
                0 0 10px #00B8DB,
                0 0 30px #00B8DB,
                0 0 60px #00B8DB;
    overflow: hidden;
    animation: cambiarcolor 6s linear infinite;
    z-index: 99;
}

@keyframes cambiarcolor {
    0%
    {
        filter: hue-rotate(0deg);
    }
    100%
    {
        filter: hue-rotate(360deg);
    }
}

.icono {
    display: none;
    position: absolute;
    width: 4vw;
    height: 4vw;
    bottom: 20px;
    right: 20px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    appearance: none;
    box-shadow: 0 0 10px #005869,
                0 0 15px #005869,
                0 0 25px #005869;
    animation: cambiarcolor 6s linear infinite;
    transition: all 0.5s;
}

.icono:hover {
    scale: 1.3;
    transition: all 0.5s;
}

.hamburguesa {
    content: '';
    position: relative;
    display: block;
    left: 24%;
    top: calc(50% - 5%);
    background-color: rgb(10, 10, 10);
    width: 54%;
    height: 10%;
}

.hamburguesa::after {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: 100%;
    background-color: rgb(10, 10, 10);
    width: 100%;
    height: 100%;
}

.hamburguesa::before {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: -200%;
    background-color: rgb(10, 10, 10);
    width: 100%;
    height: 100%;
}

#menuboton {
    display: none;
}

/*      1.1        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    LOGO DE "MENÚ"     ///////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.logomenu {
    vertical-align: top;
}

.svglogo {
    margin: 35px 10px;
    cursor: pointer;
}

.st0{
    fill:#dddddd;
    justify-content: center;
    overflow: hidden;

}

.svglogo:hover .st0{
    fill: #00B8DB;
    transition: fill 0s ease-in-out;
}

/*      1.2     ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    NAVEGACIÓN DE "MENÚ"     /////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


#navegacionmenu {
    display: flex;
    align-items: center;
    
}
#navegacionmenu ul {
    list-style: none;
    padding: 0px;
    width: 10vw;
}

#navegacionmenu ul li {
    text-align: center;
    display: flex;
    justify-content: center;
    
}

#navegacionmenu ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: -1px;
    border-bottom: 1px solid #404040;
    border-top: 1px solid #404040;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 1.2vw;
    transition: all 0.5s, border-bottom 0s, border-top 0s;
}

#navegacionmenu ul li a:hover{
    background-color: #00B8DB;
    transition: background-color 1s, color 0s ease-in-out, box-shadow 1s;
    transition-delay: 0s,0,0.25s;
    box-shadow: 0 0 0px #00B8DB,
                0 0 10px #00B8DB,
                0 0 20px #00B8DB,
                0 0 40px #00B8DB;
    color:rgb(15, 15, 15);
    border-bottom: 0px solid #fff;
    border-top: 0px solid #fff;
    z-index: 99;
}

/*      1.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    REDES SOCIALES EN "MENÚ"     /////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.redesmenu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: auto;
    bottom: 2vh;;
}

.redesmenu a {
    cursor: pointer;
    margin: 10px auto;
}

.redesmenu a i{
    color: #fff;
    font-size: 2.3em;
    transition: 1s;
}

.redesmenu a:hover i{
    color: #000;
    transition: background-color 0s ease-in-out, color 0s ease-in-out, text-shadow 0.75s;
    transition-delay: 0s,0,0.25s;
    text-shadow: 0 0 5px #00B8DB,
                0 0 10px #00B8DB,
                0 0 20px #00B8DB,
                0 0 40px #00B8DB;
    filter: hue-rotate(90);
}

/*      2      ////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "INICIO"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


#inicio {
    height: 100vh;
    position: relative;
    width: 90%;
    margin-left: 10%;
    right: 0;
    background-color:rgb(15, 15, 15);
    padding: 0px;
    overflow: hidden;
}

.containerinicio {
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: absolute;
    align-items: center;
    padding-left: 0px;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050810;

}

/*     2.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    PUNTOS LLAMATIVOS EN "INICIO"     ////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.puntos {
    content: '';
    position: relative;
    width: 5vh;
    height: 5vh;
    display: block;
    animation: cambiarcolor 6s linear infinite;
    padding: 0;
    margin: 0;
}

.puntos span {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.15);
    background-color: #00B8DB;
    box-shadow: 0 0 10px #00B8DB,
                0 0 20px #00B8DB,
                0 0 40px #00B8DB,
                0 0 70px #00B8DB,
                0 0 100px #00B8DB;
    border-radius: 50%;
    transition: 2s;
}

.puntos:hover span {
    transform: scale(0.8);
    transition: 0s;
}

/*     2.2      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    TÍTULO EN "INICIO     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.datosinicio {
    z-index: 99;
    position: absolute;
    padding-left: 60px;

}
.bienvenida {
    position: relative;
}

h1 {
    font-size: 6vw;
    position: relative;
    text-transform: uppercase;
    color: #dddddd;
    letter-spacing: 4px;
    margin: 0 0px;
    padding-bottom: 30px;
    text-shadow: 0 0 20px #000,
                 0 0 40px #000,
                 0 0 60px #000,
                 0 0 80px #000,
                 0 0 100px #000;
}

/*      2.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    TEXTO QUE CAMBIA EN "INICIO"     /////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.textocambiante {
    position: absolute;
    overflow:hidden; 
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    color: #fff;
    font-weight: 300;
    overflow: hidden;
    height: 60px;
    width: 540px;
}
  
.textocambiante ul {
    margin-top: 0;
    padding-left: 0px;
    text-align: left;
    list-style: none;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.textocambiante ul li {
    line-height: 60px;
    margin: 0;
    }
  
.textocambiante ul li p {
    margin: 0px;
    padding: 0px;
    text-shadow: 0 0 10px #000,
                 0 0 10px #000,
                 0 0 10px #000,
                 0 0 20px #000,
                 0 0 30px #000;
} 
  @keyframes change {
    0%, 12.66%, 100% {transform:translate3d(0,0,0);}
    16.66%, 29.32% {transform:translate3d(0,-25%,0);}
    33.32%,45.98% {transform:translate3d(0,-50%,0);}
    49.98%,62.64% {transform:translate3d(0,-75%,0);}
    66.64%,79.3% {transform:translate3d(0,-50%,0);}
    83.3%,95.96% {transform:translate3d(0,-25%,0);}
  }

/*     3       //////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "TRABAJOS"     ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  #trabajos {
    height: 100vh;
    position: relative;
    width: 90%;
    margin-left: 10%;
    right: 0;
    background-color: rgb(10,10,10);
    padding: 0px;
}

#trabajos h2 {
    position: relative;
    margin: 0;
    padding: 15px 60px;
    color: #dddddd;
    font-size: 3.4vw;
    border: 5px solid #00B8D8;
    text-transform: uppercase;
    box-sizing: border-box;
    letter-spacing: 3px;
    font-weight: 700;
    background-image: linear-gradient(to right, rgb(10,10,10), #002b33 , #00B8D8);
    animation: cambiarcolor 6s linear infinite;
}

.textotrabajos {
    display: grid;
    margin-top: 15px;
    grid-template-columns: 1fr 1fr;
    height: auto;
}

.textotrabajos p {
    color: #dddddd;
    line-height: 1.4em;
    padding-left: 40px;
    font-size: calc(0.5em + 0.5vw);
}
.textotrabajos .botonvermas {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.textotrabajos .botonvermas a {
    padding: 20px 40px;
    text-decoration: none;
    box-shadow: 0 0 5px #005869,
                0 0 10px #005869,
                0 0 25px #005869;
    animation: cambiarcolor 6s linear infinite;
    transition: 0.75s;
    border: 5px solid #00B8D8;
    margin: 0;
}

.textotrabajos .botonvermas a:hover {
    box-shadow: 0 0 10px #005869,
                0 0 20px #005869,
                0 0 30px #005869,
                0 0 50px #005869,
                0 0 70px #005869;
    transition: 0.75s ease-in-out;
    background: #00B8DB;
    transform: scaleX(1.2);
}

.textotrabajos .botonvermas a p {
    text-align: center;
    color: #00B8DB;
    padding: 0px;
    margin: 0px;
    font-size: calc(0.6em + 0.6vw);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.75s ease-in-out;
}

.textotrabajos .botonvermas a:hover p {
    text-align: center;
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 8px;
    word-spacing: 10px;
    color: rgb(10, 10, 10);
    transition: 2s;
}

/*     3.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ESCAPARATE DE PROYECTOS EN "TRABAJOS"     ////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.escaparate {
    display: flex;
    height: 70vh;
    box-sizing: border-box;
    position: relative;
    justify-content: center;
    align-items: center;
    align-items: center;
    height: calc(100% - 103px - 168.66px - 15px);
    margin-top: 60px;
}

.contenedorestrabajos {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
}

.contenedorestrabajos div{
    width: 20%;
    height: 50%;
}

.contenedorestrabajos span {
    margin: auto auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(10,10,10,0.8);
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0.0;
    transition: opacity 0.75s, visibility 0s;
    transition-delay: opacity 0s, visibility 0s;
}

.contenedorestrabajos span i {
    font-size: 5vw;
    color: #dddddd;
    text-shadow: 0 0 5px #00B8D8,
                 0 0 10px #00B8D8,
                 0 0 15px #00B8D8,
                 0 0 20px #00B8D8;
    animation: cambiarcolor 6s linear infinite;
    appearance: unset;
    border: none;
}

.proyecto_1:hover, .proyecto_2:hover, .proyecto_3:hover, .proyecto_4:hover, 
.proyecto_5:hover, .proyecto_6:hover, .proyecto_7:hover, .proyecto_8:hover, 
.proyecto_9:hover, .proyecto_10:hover  {
    transition: 1s ease-out; 
}

.contenedorestrabajos .proyecto_1:hover span, .contenedorestrabajos .proyecto_2:hover span, 
.contenedorestrabajos .proyecto_3:hover span, .contenedorestrabajos .proyecto_4:hover span, 
.contenedorestrabajos .proyecto_5:hover span, .contenedorestrabajos .proyecto_6:hover span, 
.contenedorestrabajos .proyecto_7:hover span, .contenedorestrabajos .proyecto_8:hover span, 
.contenedorestrabajos .proyecto_9:hover span, .contenedorestrabajos .proyecto_10:hover span
{
    visibility: visible;
    opacity: 1;
    transition: opacity 0.75s, visibility 0s;
    transition-delay: opacity 0s, visibility 0.75s;
    cursor: pointer;

}

.proyecto_1, .proyecto_2, .proyecto_3, .proyecto_4, 
.proyecto_5, .proyecto_6, .proyecto_7, .proyecto_8, 
.proyecto_9, .proyecto_10 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: 1s ease-out;
}

/*      3.2      //////////////////////////////////////////////////////////////////////////////////////////////
/////////    IMAGENES DESTACADAS EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


.proyecto_1 {
    background-image: url(miniaturas/Calendario.jpg);
}

.proyecto_2 {
    background-image: url(miniaturas/Mermeladas.jpg);
}

.proyecto_3 {
    background-image: url(miniaturas/Autoretrato.jpg);
}

.proyecto_4 {
    background-image: url(miniaturas/DibujosPersonales.jpg);
}

.proyecto_5 {
    background-image: url(miniaturas/Batman.jpg);
}

.proyecto_6 {
    background-image: url(miniaturas/Kabiak.jpg);
}

.proyecto_7 {
    background-image: url(miniaturas/CD.jpg);
}

.proyecto_8 {
    background-image: url(miniaturas/Cartel.jpg);
}

.proyecto_9 {
    background-image: url(miniaturas/Perfume.jpg);
}

.proyecto_10 {
    background-image: url(miniaturas/Minecraft.jpg);
}

/*     3.3      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#modal1, #modal2, #modal3, 
#modal4, #modal5, #modal6, 
#modal7, #modal8, #modal9, #modal10 {
    z-index: 997;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(10,10,10,0.8);
    visibility: hidden;
}

#modal1 #contenedormodal_1, #modal2 #contenedormodal_2, #modal3 #contenedormodal_3, 
#modal4 #contenedormodal_4, #modal5 #contenedormodal_5, #modal6 #contenedormodal_6, 
#modal7 #contenedormodal_7, #modal8 #contenedormodal_8, #modal9 #contenedormodal_9, 
#modal10 #contenedormodal_10 {
    width: 80vw;
    height: 90vh;
    background-color: #dddddd;
    cursor: auto;
    box-shadow: 0 0 20px rgb(10, 10, 10),
                 0 0 40px rgb(10, 10, 10),
                 0 0 60px rgb(10, 10, 10),
                 0 0 80px rgb(10, 10, 10);
}

#modal1 h3, #modal2 h3,#modal3 h3,#modal4 h3,
#modal5 h3,#modal6 h3,#modal7 h3,#modal8 h3,
#modal9 h3,#modal10 h3 {
    font-size: 2.2vw;
    padding: 30px 40px;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.fa-circle-xmark {
    font-size: 4vw;
    padding-right: 30px;
    animation: cambiarcolor 6s linear infinite;
    transition: 0.25s;
}

.fa-circle-xmark:hover {
    text-shadow: 0 0 5px #00B8DB,
                 0 0 10px #00B8DB,
                 0 0 20px #00B8DB,
                 0 0 30px #00B8DB,
                 0 0 40px #00B8DB;
    animation: cambiarcolor 6s linear infinite;
    transition: 0.25s;
    scale: 1.3;
    cursor: pointer;
}

.contenidomodal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrusel {
    position: relative;
    width: 1080px;
    height: 70vh;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    align-items: end;
}

.carrusel ul {
    position: absolute;
    padding: 0;
    margin: 10px 0px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    
}

.carrusel ul li {
    font-size: 2vw;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 5px rgba(10,10,10, 0.7),
                 0 0 10px rgba(10, 10, 10, 0.7),
                 0 0 15px rgba(10, 10, 10, 0.7),
                 0 0 25px rgba(10, 10, 10, 0.7);
    margin: 0.8vw;
    list-style: none;
    transition: scale 0.5s;
}

.carrusel ul li:hover {
    scale: 1.4;
    transition: scale 0.25s;
    cursor: pointer;
}

/*      3.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   TEXTO DERECHO DE LAS VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.infomodal {
    z-index: 99;
    width: 460px;
    padding: 0px 40px;
    font-weight: 300;
    font-size: calc(0.6em + 0.6vw);
    height: 70vh;
    display: flex;
    justify-content:left;
    flex-wrap:wrap;
    align-content: space-between;
}

.infomodal {
    width: 460px;
}

.ubicacion {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1.5vh;
    margin: 0px;
    bottom: 0px;
}

.ubicacion p {
    font-display: flex;
    justify-content: end;
    align-items: center;
    font-size: calc(0.6em + 0.6vw);
    font-weight: 600;
    margin: 0px;
    padding-left: 30px;
}


/*      3.5       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CARRUSEL DE IMÁGENES DE LAS VENTANAS EMERGENTES EN "TRABAJOS"       ///////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#imagenes1 div img, #imagenes2 div img, #imagenes3 div img, #imagenes4 div img,
#imagenes5 div img, #imagenes6 div img, #imagenes7 div img, #imagenes8 div img,
#imagenes9 div img, #imagenes10 div img{
    height: 70vh;
}

#imagenes1 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 1300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes1 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes2 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes2 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes3 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes3 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes4 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes4 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes5 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes5 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes6 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes6 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes7 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes7 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes8 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes8 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes9 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 300%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes9 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

#imagenes10 {
    position: relative;
    transform: translateX(0%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    width: 700%;
    margin: 0;
    padding: 0;
    transition: 1s, visibility 0s;
}

#imagenes10 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1080px; height: 70vh;
    overflow: hidden;
}

/*      4       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#sobremi {
    height: 100vh;
    position: relative;
    margin-left: 10%;
    width: 90%;
    right: 0;
    overflow: hidden;
    background-color: rgb(10, 10, 10);
    padding: 0px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 7vw;
}

.sobremi-izquierda {
    display: flex;
    align-items: center;
    align-content: center;
}

.sobremi-izquierda {
    padding-left: 70px;
}

#sobremi h2 {
    color: #dddddd;
    font-size: 4.6vw;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.sobremi-izquierda p {
    color: #dddddd;
    line-height: 1.5em;;
    font-size: calc(0.4em + 0.4vw);
    margin: 0px 0px;
    margin: 7px 0px;
}

/*      4.1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   BOTONES "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.botones-sobremi {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botones-sobremi a {
    padding: 10px 20px;
    border: 4px solid #00B8D8;
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
    align-content: center;
    animation: cambiarcolor 6s linear infinite;
    text-decoration: none;
    margin-right: 15px;
    box-shadow: 0 0 10px #005869;
    transition: 0.75s;
}

.botones-sobremi a i {
    color: #00B8D8;
    padding-right: 15px;
    font-size: 1.4vw;
    text-shadow: 0 0 15px #005869;
    transition: 0.75s;
}

.botones-sobremi a p {
    font-size: 1.2vw;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #00B8D8;
    text-shadow: 0 0 15px #005869;
    transition: 0.75s;
}

.botones-sobremi a:hover {
    transition: all 0.25s;
    background-color: #00B8D8;
    box-shadow: 0 0 30px #00B8D8;
}

.botones-sobremi a:hover i {
    color: rgb(10, 10, 10);
    text-shadow: none;
    scale: 1.4;
    transform: translateX(-15px);
    transition: all 0.25s;
}

.botones-sobremi a:hover p {
    color: rgb(10, 10, 10);
    text-shadow: none;
    letter-spacing: 4px;
    scale: 1.4;
    transition: all 0.25s, letter-spacing 2s;
}

/*      4.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CAJA "HABILIDADES"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.sobremi-derecha {
    display: flex;
    align-items: center;   
}

.porcentajes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 75vh;
    margin-left: 30px;
    margin: 0;
    background-color: rgb(8, 8, 8);
    overflow: hidden;
}

.porcentajes::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 200%;
    background: #00B8D8;
    box-shadow: 0 0 10px #00B8D8,
                0 0 20px #00B8D8,
                0 0 40px #00B8D8,
                0 0 70px #00B8D8,
                0 0 100px #00B8D8;
    animation: borde 6s linear infinite;
}

.porcentajes::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 98%;
    background: rgb(8,8,8);
    inset: 7px;
    
}
@keyframes borde
{
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

/*      4.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   INFORMACIÓN HABILIDADES     ///////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.info-porcentajes {
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-left: 80px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.porcentajes h3 {
    width: 100%;
    color: #dddddd;
    z-index: 10;
    font-size: 1.8vw;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
}

.porcentajes p {
    color: #dddddd;
    font-size: calc(0.4em + 0.6vw);
    z-index: 10;
    margin: 0;
    padding: 0;
}

.caja-porcentaje {
    width: 40%;
    height: 5px;
    background: #002b33;
    margin: 0;
    padding: 0s;
    z-index: 10;
    animation: cambiarcolor 6s linear infinite;
    margin-bottom: 15px;
    overflow: hidden;
}

.caja-porcentaje div {
    height: 100%;
    background: #00B8D8;
}

/*      4.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   FOTO PERSONAL DE "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto {
    position: absolute;
    width: 30vw;
    height: 100%;
    transform: translateX(15%);
    display: flex;
    align-items: end;
    align-content: end;
    justify-content: right;
    margin: 0px;
    padding: 0px;
    z-index: 99;
    right: 0;
}

.mifoto div {
    position: relative;
    width: 30vw;
    height: 50vw;
    background-size: cover;
    background-position: center bottom;
    background-image: url(img/mifoto.png);
}

/*      5       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "TRAYECTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#trayecto {
    height: 100vh;
    position: relative;
    width: 90%;
    margin-left: 10%;
    right: 0;
    background-color: rgb(10, 10, 10);
    padding: 0px;
}

#trayecto h3 {
    margin: 0;
    color: #dddddd;
    font-size: 3vw;
    text-transform: uppercase;
    padding: 30px 60px;
    box-sizing: border-box;
    border: 5px solid #00B8D8;
    letter-spacing: 4px;
    margin-bottom: 30px;
    background-image: linear-gradient(to right, rgb(10,10,10), #002b33 , #00B8D8);
    animation: cambiarcolor 6s linear infinite;
}

#trayecto .tabla {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 60px;
    margin: 0;
    padding: 40px 70px;
    align-items: start;
}

#trayecto .tabla div {
    border-left: 5px solid #00B8D8;
    padding: 0px 0px;
    animation: cambiarcolor 6s linear infinite;
    display: flex;
    flex-direction: column;
}

#trayecto h4 {
    font-size: 2vw;
    color: #dddddd;
    padding: 15px 40px;
    border: 5px solid #00B8D8;
    box-sizing: border-box;
    margin: 0;
    width: min-content;
    display: flex;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-image: linear-gradient(to right, rgb(10,10,10), rgb(10,10,10), #002b33);
}

#trayecto h6 {
    position: relative;
    padding-left: 30px;
    font-size: calc(0.8em + 0.6vw);
    color: #dddddd;
    width: 75%;
    margin: 0;
    margin-top: 70px;
    display: flex;
    justify-content: start;
}

#trayecto h6::before {
    content: '';
    height: 30px;
    width: 30px;
    background: #00B8D8;
    z-index: 99;
    position: absolute;
    border-radius: 50%;
    transform: translateX(-47px);
}

#trayecto p {
    color:#868686;
    line-height: 30px;
    font-size: calc(0.6em + 0.4vw);
    padding: 0;
    padding-left: 24px;
    margin: 0;
    margin-top: 15px;
}

/*      6       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "CONTACTO"     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto {
    height: 100vh;
    position: relative;
    width: 90%;
    margin-left: 10%;
    right: 0;
    background-color:rgb(10, 10, 10);
    padding: 0px;
    display: flex;
    align-items: center;
}

#contacto .contacto-izquierda {
    width: 60%;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 100px;
}

/*      6.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    INFORMACIÓN DE "CONTACTO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto h3 {
    position: relative;
    color: #dddddd;
    font-size: 4vw;
    text-transform: uppercase;
    margin: 0;
    padding: 30px 0px;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
}
.informacion {
    margin-bottom: 30px;
}

.informacion a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    padding:5px 5px;
    align-items: center;
    color: #dddddd;
    margin-bottom: 10px;
    justify-content: start;
}

.informacion a:hover p {
    text-decoration: underline;
}

.informacion a i {
    font-size: calc(0.6em + 0.8vw);
    padding: 5px 5px;
    padding-right: 15px;
    margin: 0;
}

.informacion a p {
    font-size: calc(0.6em + 0.6vw);
    margin: 0;
    padding: 5px 5px;
}

/*      6.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FORMULARIO     ///////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

form {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

form .campo, form textarea{
    width: 100%;
    border: 3px solid #00B8D8;
    box-shadow: 0 0 12px #005869,
                0 0 20px #002b33;
    padding: 10px 10px;
    background-color: rgb(15, 15, 15);
    color: #fff;
    font-size: calc(0.5em + 0.5vw);
    font-weight: 400;
    margin: 0;
    box-sizing: border-box;
    animation: cambiarcolor 6s linear infinite;
    outline: none;
    transition: 1s;
}

form textarea {
    height: 150px;
}

form .campo:hover, form textarea:hover {
    cursor: text;
    scale: 1.05;
    transition: 0.5s;
}

form .campo:focus {
    background-image: linear-gradient(to right, rgb(15,15,15), rgb(15,15,15), #002b33);
    resize: none;
}

form textarea:focus {
    background-image: linear-gradient(to right, rgb(15,15,15), rgb(15,15,15), rgb(15,15,15), #002b33);
}

/*      6.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BOTON "ENVIAR FORMULARIO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

input[type="submit" i] {
    background-color: rgb(15,15,15);
    border: 4px solid #00B8D8;
    font-size: calc(0.6em + 0.8vw);
    color: #00B8D8;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px 0px;
    margin: 0;
    width: 40%;
    text-transform: uppercase;
    justify-content: center;
    box-shadow: 0 0 10px #005869,
                0 0 20px #005869,
                0 0 40px #005869;
    animation: cambiarcolor 6s linear infinite;
    transition: all 1s;
}

input[type="submit" i]:hover {
    background-color: #00B8D8;
    color: rgb(10, 10, 10);
    letter-spacing: 8px;
    transition: all 0.25s, transform 0.75s, letter-spacing 1.5s ease-out;
    cursor: pointer;
    transform: scaleX(1.2);
}

/*      6.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FOTO DE "CONTACTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto_contacto {
    position: absolute;
    overflow: hidden;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-content: end;
    flex-wrap: wrap;
    right: 0;
}

.mifoto_contacto img {
    scale: 1;
    height: 100%;
    width: 60%;
    object-fit: cover;
}



/*#################################################################################################################
###################################################################################################################
######### RESPONSIVE 992px ########################################################################################
###################################################################################################################
################################################################################################################ */



@media only screen and (max-width:992px){
    /*      0       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ATRIBUTOS GENERALES     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.cargador .bloques {
    width: 8px;
    height: 24px;
}

/*      0.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    CARGADOR     /////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*      0.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BANNER     ///////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.banner {
    display: none;
}

.banner iframe {
    display: none;
}

/*      1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    MENÚ EN "INICIO"     /////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

header {
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    grid-template-rows: 30% 50% 20%;
    box-shadow: none;
    overflow: hidden;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s, visibility 0s;
    transition-delay: opacity 0s, visibility 0.75s;
}

#menuboton {
    display: none;
}

.icono {
    display: block;
    position: fixed;
    width: 6vw;
    height: 6vw;
    bottom: 20px;
    right: 20px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    appearance: none;
    box-shadow: 0 0 10px #005869,
                0 0 15px #005869,
                0 0 25px #005869;
    animation: cambiarcolor 6s linear infinite;
    transition: all 0.5s;
}

.icono:hover {
    scale: 1.4;
    transition: all 0.5s;
}

.hamburguesa {
    content: '';
    position: relative;
    display: block;
    left: 24%;
    top: calc(50% - 5%);
    background-color: #002b33;
    width: 54%;
    height: 10%;
    transform: rotate(0deg);
}

.hamburguesa::after {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: 100%;
    background-color: #002b33;
    width: 100%;
    height: 100%;
}

.hamburguesa::before {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: -200%;
    background-color: #002b33;
    width: 100%;
    height: 100%;
}

#menuboton:checked ~ header {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.75s, visibility 0s;
    transition-delay:all 0s,;
}

/*      1.1        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    LOGO DE "MENÚ"     ///////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.logomenu {
    width: 20vw;
    height: 20vw;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.svglogo {
    width: 15vw;
    height: 15vw;
    margin: 0px;
}

/*      1.2     ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    NAVEGACIÓN DE "MENÚ"     /////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#navegacionmenu {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#navegacionmenu ul {
    padding: 0px;
    width: 20vw;
}

#navegacionmenu ul li a{
    width: 100%;
    border-bottom: none;
    border-top: none;
    font-size: calc(0.8em + 1vw);
    padding: 5px;
}

#navegacionmenu ul li a:hover{
    background-color: #00B8DB;
    transition: background-color 1s, color 0s ease-in-out, box-shadow 1s;
    transition-delay: 0s,0,0.25s;
    box-shadow: 0 0 0px #00B8DB,
                0 0 5px #00B8DB,
                0 0 15px #00B8DB,
                0 0 20px #00B8DB;
    color:rgb(15, 15, 15);
    border-bottom: 0px solid #fff;
    border-top: 0px solid #fff;
    z-index: 99;
}

/*      1.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    REDES SOCIALES EN "MENÚ"     /////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.redesmenu {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    bottom: 2vh;
}

.redesmenu a {
    margin: 15px auto;
}

.redesmenu a i{
    font-size: calc(1em + 2vw);
}

.redesmenu a:hover i{
    text-shadow: 0 0 4px #00B8DB,
                0 0 8px #00B8DB,
                0 0 16px #00B8DB,
                0 0 28px #00B8DB;
}

/*      2      ////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "INICIO"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#inicio {
    width: 100vw;
    margin-left: 0%;
    overflow: hidden;
}

.containerinicio {
    margin: 0;
    padding-left: 0px;
}

/*     2.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    PUNTOS LLAMATIVOS EN "INICIO"     ////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*     2.2      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    TÍTULO EN "INICIO     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.datosinicio {
    padding-left: 40px;
}

.bienvenida {
    position: relative;
}

h1 {
    padding-bottom: 20px;
}

/*      2.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    TEXTO QUE CAMBIA EN "INICIO"     /////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.textocambiante {
    font-size: 4.6vw;
}

/*     3       //////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "TRABAJOS"     ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  #trabajos {
    height: 100vh;
    width: 100%;
    margin-left: 0%;
}

#trabajos h2 {
    padding: 10px 30px;
}

.textotrabajos {
    margin-top: 5px;
    gap: 20px;
}

.textotrabajos p {
    padding-left: 30px;
}

.textotrabajos .botonvermas a {
    padding: 10px 20px;
    border: 3px solid #00B8D8;
}

.textotrabajos .botonvermas a p {
    font-size: calc(0.6em + 0.4vw);
}

/*     3.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ESCAPARATE DE PROYECTOS EN "TRABAJOS"     ////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.escaparate {
    height: 60%;
    position: relative;
    margin-top: 30px;
}

.contenedorestrabajos {
    width: 100%;
    margin-top: 0px;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
}

.contenedorestrabajos div{
    width: 25%;
    height: 33.33%;
}

/*      3.2      //////////////////////////////////////////////////////////////////////////////////////////////
/////////    IMAGENES DESTACADAS EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*     3.3      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#modal1 #contenedormodal_1, #modal2 #contenedormodal_2, #modal3 #contenedormodal_3, 
#modal4 #contenedormodal_4, #modal5 #contenedormodal_5, #modal6 #contenedormodal_6, 
#modal7 #contenedormodal_7, #modal8 #contenedormodal_8, #modal9 #contenedormodal_9, 
#modal10 #contenedormodal_10 {
    width: 90vw;
    height: 90vh;
}

#modal1 h3, #modal2 h3,#modal3 h3,#modal4 h3,
#modal5 h3,#modal6 h3,#modal7 h3,#modal8 h3,
#modal9 h3,#modal10 h3 {
    font-size: 2.2vw;
    padding: 15px 30px;
}

.fa-circle-xmark {
    padding-right: 10px;
}

.fa-circle-xmark:hover {
    scale: 1.2;
}

.carrusel {
    width: 1080px;
    height: 70vh;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    align-items: end;
}

.carrusel ul {
    position: absolute;
    padding: 0;
    margin: 0px 0px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    
}

.carrusel ul li {
    font-size: 2vw;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 5px rgba(10,10,10, 0.7),
                 0 0 10px rgba(10, 10, 10, 0.7),
                 0 0 15px rgba(10, 10, 10, 0.7),
                 0 0 25px rgba(10, 10, 10, 0.7);
    margin: 1vw;
    list-style: none;
    transition: scale 0.5s;
}

.carrusel ul li:hover {
    scale: 1.4;
    transition: scale 0.25s;
    cursor: pointer;
}
/*      3.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   TEXTO DERECHO DE LAS VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.infomodal {
    width: 460px;
    padding: 0px 20px;
    font-size: calc(0.6em + 0.6vw);
    height: 70vh;
}

.ubicacion {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1.5vh;
    margin: 0px;
    bottom: 0px;
}

.ubicacion p {
    font-display: flex;
    justify-content: end;
    align-items: center;
    font-size: calc(0.6em + 0.6vw);
    font-weight: 600;
    margin: 0;
    padding-left: 30px;
}

/*      3.5       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CARRUSEL DE IMÁGENES DE LAS VENTANAS EMERGENTES EN "TRABAJOS"       ///////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#imagenes1 div img, #imagenes2 div img, #imagenes3 div img, #imagenes4 div img,
#imagenes5 div img, #imagenes6 div img, #imagenes7 div img, #imagenes8 div img,
#imagenes9 div img, #imagenes10 div img{
    height: 100%;
    object-fit: cover;
}

/*      4       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#sobremi {
    height: 100vh;
    margin-left: 0%;
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 7vw;
}

.sobremi-izquierda {
    padding-left: 40px;
}

.sobremi-izquierda p {
    font-size: calc(0.5em + 0.4vw);
}

#sobremi h2 {
    margin-bottom: 20px;
}


/*      4.1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   BOTONES "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.botones-sobremi {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botones-sobremi a {
    padding: 5px 10px;
    border: 2px solid #00B8D8;
    width: 45%;
    margin-right: 10px;
}

.botones-sobremi a i {
    padding-right: 5px;
}

.botones-sobremi a p {
    font-size: 1.4vw;
    letter-spacing: 1.2px;
}

.botones-sobremi a:hover {
    box-shadow: 0 0 20px #00B8D8;
}

/*      4.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CAJA "HABILIDADES"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.porcentajes {
    width: 100%;
    height: 75vh;
    margin-left: 20px;
}

/*      4.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   INFORMACIÓN HABILIDADES     ///////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.info-porcentajes {
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-left: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.porcentajes h3 {
    font-size: 2vw;
    margin-bottom: 10px;
    margin-top: 5px;
}

.caja-porcentaje {
    width: 60%;
    height: 5px;
}

/*      4.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   FOTO PERSONAL DE "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto {
    display: none;
}

/*      5       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "TRAYECTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#trayecto {
    height: 100%;
    width: 100%;
    margin-left: 0%;
}

#trayecto h3 {
    font-size: 4vw;
    padding: 20px 40px;
    margin-bottom: 20px;
}

#trayecto .tabla {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px 50px;
    align-items: start;
}

#trayecto h4 {
    font-size: 2.4vw;
}

#trayecto h6 {
    padding-left: 40px;
    margin-top: 40px;
    line-height: 1.4em;
}

#trayecto h6::before {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    transform: translateX(-55.5px);
}

#trayecto p {
    line-height: 20px;
    font-size: calc(0.6em + 0.4vw);
    padding-left: 40px;
    margin-top: 10px;
}

/*      6       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "CONTACTO"     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto {
    height: 100vh;
    position: relative;
    width: 100%;
    margin-left: 0%;
}

#contacto .contacto-izquierda {
    width: 50%;
    padding-left: 40px;
}

/*      6.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    INFORMACIÓN DE "CONTACTO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto h3 {
    font-size: 6vw;
    padding: 15px 0px;
}
.informacion {
    margin-bottom: 20px;
}

.informacion a {
    padding:5px 5px;
    margin-bottom: 5px;
}

.informacion a i {
    padding-right: 10px;
}

/*      6.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FORMULARIO     ///////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

form {
    width: 90%;
    gap: 15px;
}

form .campo, form textarea{
    border: 3px solid #00B8D8;
    box-shadow: 0 0 8px #005869,
                0 0 16px #002b33;
    padding: 8px 8px;
    font-size: calc(0.5em + 0.5vw);
}

form textarea {
    height: 120px;
}

/*      6.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BOTON "ENVIAR FORMULARIO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

input[type="submit" i] {
    border: 3px solid #00B8D8;
    width: 50%;
    box-shadow: 0 0 5px #005869,
                0 0 10px #005869,
                0 0 20px #005869;
}

input[type="submit" i]:hover {
    letter-spacing: 6px;
}

/*      6.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FOTO DE "CONTACTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto_contacto {
    position: absolute;
    overflow: hidden;
    width: 50%;
    height: 90%;
    right: 0;
    bottom: 0;
}

.mifoto_contacto img {
    height: 100%;
    width: 90%;
}
}


/*#################################################################################################################
###################################################################################################################
######### RESPONSIVE 768px ########################################################################################
###################################################################################################################
################################################################################################################ */


@media only screen and (max-width:768px){
/*      0       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ATRIBUTOS GENERALES     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.cargador .bloques {
    width: 4px;
    height: 12px;
}

/*      0.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    CARGADOR     /////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*      0.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BANNER     ///////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.banner {
    display: none;
}

.banner iframe {
    display: none;
}

/*      1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    MENÚ EN "INICIO"     /////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

header {
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    grid-template-rows: 30% 50% 20%;
    box-shadow: none;
    overflow: hidden;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s, visibility 0s;
    transition-delay: opacity 0s, visibility 0.75s;
}

#menuboton {
    display: none;
}

.icono {
    display: block;
    position: fixed;
    width: 12vw;
    height: 12vw;
    bottom: 20px;
    right: 20px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    appearance: none;
    box-shadow: 0 0 10px #005869,
                0 0 15px #005869,
                0 0 25px #005869;
    animation: cambiarcolor 6s linear infinite;
    transition: all 0.5s;
}

.icono:hover {
    scale: 1.4;
    transition: all 0.5s;
}

.hamburguesa {
    content: '';
    position: relative;
    display: block;
    left: 24%;
    top: calc(50% - 5%);
    background-color: #002b33;
    width: 54%;
    height: 10%;
    transform: rotate(0deg);
}

.hamburguesa::after {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: 100%;
    background-color: #002b33;
    width: 100%;
    height: 100%;
}

.hamburguesa::before {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: -200%;
    background-color: #002b33;
    width: 100%;
    height: 100%;
}

#menuboton:checked ~ header {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.75s, visibility 0s;
    transition-delay:all 0s,;
}

/*      1.1        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    LOGO DE "MENÚ"     ///////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.logomenu {
    width: 42vw;
    height: 42vw;
}

.svglogo {
    width: 34vw;
    height: 34vw;
}

/*      1.2     ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    NAVEGACIÓN DE "MENÚ"     /////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#navegacionmenu ul {
    width: 30vw;
}

#navegacionmenu ul li a{
    font-size: calc(0.8em + 1.4vw);
}

/*      1.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    REDES SOCIALES EN "MENÚ"     /////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.redesmenu {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    bottom: 4vh;
}

.redesmenu a {
    margin: 5px auto;
}

.redesmenu a i{
    font-size: calc(1em + 4vw);
}

.redesmenu a:hover i{
    text-shadow: 0 0 4px #00B8DB,
                0 0 8px #00B8DB,
                0 0 16px #00B8DB,
                0 0 28px #00B8DB;
}

/*      2      ////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "INICIO"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


.containerinicio {
    margin: 0;
    padding-left: 0px;
}

/*     2.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    PUNTOS LLAMATIVOS EN "INICIO"     ////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*     2.2      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    TÍTULO EN "INICIO     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.datosinicio {
    padding-left: 40px;
}

h1 {
    padding-bottom: 20px;
    font-size: calc(1em + 5vw);
}

/*      2.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    TEXTO QUE CAMBIA EN "INICIO"     /////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.textocambiante {
    font-size: 6vw;
}

/*     3       //////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "TRABAJOS"     ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  #trabajos {
    height: 100vh;
    width: 100%;
    margin-left: 0%;
}

#trabajos h2 {
    padding: 20px 30px;
    font-size: calc(0.8em + 3vw);
}

.textotrabajos {
    margin-top: 10px;
    gap: 20px;
}

.textotrabajos p {
    padding-left: 30px;
}

.textotrabajos .botonvermas a {
    padding: 10px 20px;
    border: 3px solid #00B8D8;
}

.textotrabajos .botonvermas a p {
    font-size: calc(0.8em + 0.4vw);
}

/*     3.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ESCAPARATE DE PROYECTOS EN "TRABAJOS"     ////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.escaparate {
    height: 70%;
    position: relative;
    margin-top: 10px;
}

.contenedorestrabajos {
    width: 100%;
    margin-top: 0px;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
}

.contenedorestrabajos div{
    width: 33.33%;
    height: 25%;
}

.ubicacion {
    width: 100%;
    height: auto;
    padding: 1vh;
    margin: 0px;
    bottom: 0px;
}

.ubicacion p {
    font-size: calc(0.6em + 0.6vw);
    padding-left: 15px;
}

/*      3.2      //////////////////////////////////////////////////////////////////////////////////////////////
/////////    IMAGENES DESTACADAS EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*     3.3      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#modal1 #contenedormodal_1, #modal2 #contenedormodal_2, #modal3 #contenedormodal_3, 
#modal4 #contenedormodal_4, #modal5 #contenedormodal_5, #modal6 #contenedormodal_6, 
#modal7 #contenedormodal_7, #modal8 #contenedormodal_8, #modal9 #contenedormodal_9, 
#modal10 #contenedormodal_10 {
    width: 100vw;
    height: 100vh;
}

#modal1 h3, #modal2 h3,#modal3 h3,#modal4 h3,
#modal5 h3,#modal6 h3,#modal7 h3,#modal8 h3,
#modal9 h3,#modal10 h3 {
    font-size: 3vw;
    padding: 15px 30px;
}

.fa-circle-xmark {
    padding-right: 10px;
    font-size: calc(0.6em + 4vw);
}

.fa-circle-xmark:hover {
    scale: 1.2;
}

.contenidomodal {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.carrusel {
    width: 768px;
    height: 50vh;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    align-items: end;
}

.carrusel ul {
    position: absolute;
    padding: 0;
    margin: 0px 0px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    
}

.carrusel ul li {
    font-size: 4vw;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 5px rgba(10,10,10, 0.7),
                 0 0 10px rgba(10, 10, 10, 0.7),
                 0 0 15px rgba(10, 10, 10, 0.7),
                 0 0 25px rgba(10, 10, 10, 0.7);
    margin: 2vw;
    list-style: none;
    transition: scale 0.5s;
}

.carrusel ul li:hover {
    scale: 1.4;
    transition: scale 0.25s;
    cursor: pointer;
}
/*      3.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   TEXTO DERECHO DE LAS VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.infomodal {
    width: 92%;
    padding: 0px 20px;
    font-size: calc(0.6em + 1vw);
    height: 34vh;
    gap: 0px;
}

/*      3.5       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CARRUSEL DE IMÁGENES DE LAS VENTANAS EMERGENTES EN "TRABAJOS"       ///////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#imagenes1 div, #imagenes2 div, #imagenes3 div, #imagenes4 div,
#imagenes5 div, #imagenes6 div, #imagenes7 div, #imagenes8 div,
#imagenes9 div, #imagenes10 div {
    height: 50vh;
}

#imagenes1 div img, #imagenes2 div img, #imagenes3 div img, #imagenes4 div img,
#imagenes5 div img, #imagenes6 div img, #imagenes7 div img, #imagenes8 div img,
#imagenes9 div img, #imagenes10 div img{
    height: 100%;
    object-fit: cover;
}

/*      4       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#sobremi {
    height: max-content;
    margin-left: 0%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12vw;
}

.sobremi-izquierda {
    padding: 20px 40px;
    margin-top: 100px;
}

.sobremi-izquierda p {
    font-size: calc(0.5em + 0.4vw);
}

#sobremi h2 {
    margin-bottom: 20px;
    font-size: calc(1em + 5vw);
}

.sobremi-derecha {
    margin-bottom: 60px;
}

/*      4.1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   BOTONES "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.botones-sobremi {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botones-sobremi a {
    padding: 5px 10px;
    border: 2px solid #00B8D8;
    width: 40%;
    margin-right: 10px;
}

.botones-sobremi a i {
    padding-right: 5px;
    font-size: calc(0.6em + 1.6vw);
}

.botones-sobremi a p {
    font-size: calc(0.6em + 1.6vw);
    letter-spacing: 1.2px;
}

.botones-sobremi a:hover {
    box-shadow: 0 0 20px #00B8D8;
}

/*      4.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CAJA "HABILIDADES"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.porcentajes {
    width: 100%;
    height: 60vh;
    margin-left: 60px;
}

/*      4.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   INFORMACIÓN HABILIDADES     ///////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.info-porcentajes {
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-left: 60px;
    margin-top: 20px;
}

.porcentajes h3 {
    font-size: calc(0.6em + 2.4vw);
    margin-bottom: 10px;
    margin-top: 5px;
}

.porcentajes p {
    font-size: calc(0.6em + 0.8vw);
}

.caja-porcentaje {
    width: 80%;
    height: 7px;
}

/*      4.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   FOTO PERSONAL DE "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto {
    display: none;
}

/*      5       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "TRAYECTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#trayecto {
    height: 100%;
    width: 100%;
    margin-left: 0%;
}

#trayecto h3 {
    font-size: 5vw;
    padding: 20px 40px;
    margin-bottom: 20px;
}

#trayecto .tabla {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px 50px;
    align-items: start;
}

#trayecto h4 {
    font-size: 3.6vw;
}

#trayecto h6 {
    padding-left: 40px;
    font-size: calc(0.8em + 1vw);
    margin-top: 40px;
    line-height: 1.4em;
}

#trayecto h6::before {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    transform: translateX(-55.5px);
}

#trayecto p {
    line-height: 20px;
    font-size: calc(0.6em + 0.8vw);
    padding-left: 40px;
    margin-top: 10px;
}

/*      6       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "CONTACTO"     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto {
    height: 100vh;
    position: relative;
    width: 100%;
    margin-left: 0%;
    overflow: hidden;
}

#contacto .contacto-izquierda {
    width: 70%;
    padding-left: 40px;
}

/*      6.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    INFORMACIÓN DE "CONTACTO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto h3 {
    font-size: 6vw;
    padding: 15px 0px;
}
.informacion {
    margin-bottom: 20px;
}

.informacion a {
    padding:5px 5px;
    margin-bottom: 5px;
}

.informacion a i {
    padding-right: 10px;
}

/*      6.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FORMULARIO     ///////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

form {
    width: 100%;
    gap: 25px;
}

form .campo, form textarea{
    border: 3px solid #00B8D8;
    box-shadow: 0 0 8px #005869,
                0 0 16px #002b33;
    padding: 8px 8px;
    font-size: calc(0.5em + 0.5vw);
}

form textarea {
    height: 120px;
}

/*      6.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BOTON "ENVIAR FORMULARIO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

input[type="submit" i] {
    border: 3px solid #00B8D8;
    width: 50%;
    box-shadow: 0 0 5px #005869,
                0 0 10px #005869,
                0 0 20px #005869;
}

input[type="submit" i]:hover {
    letter-spacing: 6px;
}

/*      6.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FOTO DE "CONTACTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto_contacto {
    position: absolute;
    overflow: hidden;
    width: 80%;
    height: 100%;
    right: -20%;
    bottom: -10%;
}

.mifoto_contacto img {
    height: 100%;
    width: 90%;
}
}


/*#################################################################################################################
###################################################################################################################
######### RESPONSIVE 576px ########################################################################################
###################################################################################################################
################################################################################################################ */


@media only screen and (max-width:576px){
    /*      0       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ATRIBUTOS GENERALES     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.cargador .bloques {
    width: 4px;
    height: 12px;
}

/*      0.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    CARGADOR     /////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.cargador h5 {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5vw;
}

.centrado {
    width: 50vw;
    height: 50vw;
}

.cargador .bloques {
    position: absolute;
    width: 8px;
    height: 16px;
    background: #005869;
    border-radius: 10px;
    left: 50%;
    top: 0%;
    transform: rotate(calc(18deg * var(--i)));
    transform-origin: 0 25vw;
    animation:  cargando 1.9s ease-in-out infinite;
    animation-delay: calc(0.05s * var(--i));
}

/*      0.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BANNER     ///////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.banner {
    display: none;
}

.banner iframe {
    display: none;
}

/*      1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    MENÚ EN "INICIO"     /////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

header {
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    grid-template-rows: 30% 50% 20%;
    box-shadow: none;
    overflow: hidden;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s, visibility 0s;
    transition-delay: opacity 0s, visibility 0.75s;
}

#menuboton {
    display: none;
}

.icono {
    display: block;
    position: fixed;
    width: 12vw;
    height: 12vw;
    bottom: 20px;
    right: 20px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    appearance: none;
    box-shadow: 0 0 10px #005869,
                0 0 15px #005869,
                0 0 25px #005869;
    animation: cambiarcolor 6s linear infinite;
    transition: all 0.5s;
}

.icono:hover {
    scale: 1.4;
    transition: all 0.5s;
}

.hamburguesa {
    content: '';
    position: relative;
    display: block;
    left: 24%;
    top: calc(50% - 5%);
    background-color: #002b33;
    width: 54%;
    height: 10%;
    transform: rotate(0deg);
}

.hamburguesa::after {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: 100%;
    background-color: #002b33;
    width: 100%;
    height: 100%;
}

.hamburguesa::before {
    content: '';
    position: relative;
    display: block;
    left: 0%;
    top: -200%;
    background-color: #002b33;
    width: 100%;
    height: 100%;
}

#menuboton:checked ~ header {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.75s, visibility 0s;
    transition-delay:all 0s,;
}

/*      1.1        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    LOGO DE "MENÚ"     ///////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.logomenu {
    width: 42vw;
    height: 42vw;
}

.svglogo {
    width: 34vw;
    height: 34vw;
}

/*      1.2     ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    NAVEGACIÓN DE "MENÚ"     /////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#navegacionmenu ul {
    width: 30vw;
}

#navegacionmenu ul li a{
    font-size: calc(0.8em + 1.4vw);
}

/*      1.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    REDES SOCIALES EN "MENÚ"     /////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.redesmenu {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    bottom: 7vh;
}

.redesmenu a {
    margin: 5px auto;
}

.redesmenu a i{
    font-size: calc(1em + 4vw);
}

.redesmenu a:hover i{
    text-shadow: 0 0 4px #00B8DB,
                0 0 8px #00B8DB,
                0 0 16px #00B8DB,
                0 0 28px #00B8DB;
}
/*      2      ////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "INICIO"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


.containerinicio {
    margin: 0;
    padding-left: 0px;
}

/*     2.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    PUNTOS LLAMATIVOS EN "INICIO"     ////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*     2.2      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    TÍTULO EN "INICIO     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.datosinicio {
    padding-left: 10px;
}

h1 {
    padding-bottom: 0px;
    font-size: calc(0.8em + 3vw);
}

/*      2.3        ////////////////////////////////////////////////////////////////////////////////////////////
/////////    TEXTO QUE CAMBIA EN "INICIO"     /////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.textocambiante {
    font-size: 7vw;
}

/*     3       //////////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "TRABAJOS"     ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  #trabajos {
    height: 160vh;
    width: 100%;
    margin-left: 0%;
}

#trabajos h2 {
    padding: 10px 20px;
    font-size: calc(0.6em + 3vw);
}

.textotrabajos {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.textotrabajos p {
    padding-left: 20px;
    font-size: calc(0.4em + 1vw);
}

.textotrabajos .botonvermas a {
    padding: 5px 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    border: 2px solid #00B8D8;
}

.textotrabajos .botonvermas a p {
    font-size: calc(0.6em + 0.4vw);
}

/*     3.1      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    ESCAPARATE DE PROYECTOS EN "TRABAJOS"     ////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.escaparate {
    height: 70%;
    position: relative;
    margin-top: 20px;
}

.contenedorestrabajos {
    width: 100%;
    margin-top: 0px;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
}

.contenedorestrabajos div{
    width: 50%;
    height: 20%;
}

.ubicacion {
    width: 100%;
    height: auto;
    padding: 1vh;
    margin: 0px;
    bottom: 0px;
}

.ubicacion p {
    font-size: calc(0.6em + 0.6vw);
    padding-left: 15px;
}

/*      3.2      //////////////////////////////////////////////////////////////////////////////////////////////
/////////    IMAGENES DESTACADAS EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*     3.3      ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#modal1 #contenedormodal_1, #modal2 #contenedormodal_2, #modal3 #contenedormodal_3, 
#modal4 #contenedormodal_4, #modal5 #contenedormodal_5, #modal6 #contenedormodal_6, 
#modal7 #contenedormodal_7, #modal8 #contenedormodal_8, #modal9 #contenedormodal_9, 
#modal10 #contenedormodal_10 {
    width: 100vw;
    height: 100vh;
}

#modal1 h3, #modal2 h3,#modal3 h3,#modal4 h3,
#modal5 h3,#modal6 h3,#modal7 h3,#modal8 h3,
#modal9 h3,#modal10 h3 {
    font-size: 3vw;
    padding: 15px 30px;
}

.fa-circle-xmark {
    padding-right: 10px;
    font-size: calc(0.6em + 4vw);
}

.fa-circle-xmark:hover {
    scale: 1.2;
}

.contenidomodal {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.carrusel {
    width: 768px;
    height: 40vh;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: initial;
    align-items: end;
}

.carrusel ul {
    position: absolute;
    padding: 0;
    margin: 0px 0px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    
}

.carrusel ul li {
    font-size: 4vw;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 5px rgba(10,10,10, 0.7),
                 0 0 10px rgba(10, 10, 10, 0.7),
                 0 0 15px rgba(10, 10, 10, 0.7),
                 0 0 25px rgba(10, 10, 10, 0.7);
    margin: 2vw;
    list-style: none;
    transition: scale 0.5s;
}

.carrusel ul li:hover {
    scale: 1.4;
    transition: scale 0.25s;
    cursor: pointer;
}
/*      3.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   TEXTO DERECHO DE LAS VENTANAS EMERGENTES EN "TRABAJOS"     ////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.infomodal {
    width: 92%;
    padding: 0px 20px;
    font-size: calc(0.6em + 1vw);
    height: 43vh;
    gap: 0px;
}

.infomodal p{
    font-size: calc(0.4em + 2.2vw);
}

/*      3.5       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CARRUSEL DE IMÁGENES DE LAS VENTANAS EMERGENTES EN "TRABAJOS"       ///////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#imagenes1 div, #imagenes2 div, #imagenes3 div, #imagenes4 div,
#imagenes5 div, #imagenes6 div, #imagenes7 div, #imagenes8 div,
#imagenes9 div, #imagenes10 div {
    height: 40vh;
}

#imagenes1 div img, #imagenes2 div img, #imagenes3 div img, #imagenes4 div img,
#imagenes5 div img, #imagenes6 div img, #imagenes7 div img, #imagenes8 div img,
#imagenes9 div img, #imagenes10 div img{
    height: 100%;
    object-fit: cover;
}

/*      4       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#sobremi {
    height: max-content;
    margin-left: 0%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12vw;
}

.sobremi-izquierda {
    padding: 0px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sobremi-izquierda p {
    font-size: calc(0.5em + 0.4vw);
}

#sobremi h2 {
    margin-bottom: 20px;
    font-size: calc(1em + 5vw);
}

.sobremi-derecha {
    margin-bottom: 60px;
}

/*      4.1       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   BOTONES "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.botones-sobremi {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botones-sobremi a {
    padding: 3px 8px;
    border: 2px solid #00B8D8;
    width: 40%;
    margin-right: 10px;
}

.botones-sobremi a i {
    padding-right: 5px;
    font-size: calc(0.4em + 1.6vw);
}

.botones-sobremi a p {
    font-size: calc(0.4em + 1.6vw);
    letter-spacing: 1.2px;
}

.botones-sobremi a:hover {
    box-shadow: 0 0 20px #00B8D8;
}

/*      4.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   CAJA "HABILIDADES"     ////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.porcentajes {
    width: 100%;
    height: 70vh;
    margin-left: 20px;
}

/*      4.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   INFORMACIÓN HABILIDADES     ///////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.info-porcentajes {
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-left: 60px;
    margin-top: 20px;
}

.porcentajes h3 {
    font-size: calc(0.6em + 2.4vw);
    margin-bottom: 10px;
    margin-top: 5px;
}

.porcentajes p {
    font-size: calc(0.6em + 0.8vw);
}

.caja-porcentaje {
    width: 80%;
    height: 7px;
}

/*      4.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////   FOTO PERSONAL DE "SOBRE MÍ"     ///////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto {
    display: none;
}

/*      5       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////   APARTADO "TRAYECTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#trayecto {
    height: 100%;
    width: 100%;
    margin-left: 0%;
}

#trayecto h3 {
    font-size: 7vw;
    padding: 10px 20px;
    margin-bottom: 15px;
}

#trayecto .tabla {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px 30px;
    align-items: start;
}

#trayecto h4 {
    font-size: 5vw;
}

#trayecto h6 {
    padding-left: 25px;
    font-size: calc(0.6em + 1vw);
    margin-top: 30px;
    line-height: 1.4em;
}

#trayecto h6::before {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    transform: translateX(-40.5px);
}

#trayecto p {
    line-height: 20px;
    font-size: calc(0.5em + 0.8vw);
    padding-left: 25px;
    margin-top: 5px;
}

/*      6       ///////////////////////////////////////////////////////////////////////////////////////////////
/////////    APARTADO "CONTACTO"     //////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto {
    height: 100vh;
    position: relative;
    width: 100%;
    margin-left: 0%;
    overflow: hidden;
}

#contacto .contacto-izquierda {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 99;
    overflow: hidden;
}

/*      6.1       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    INFORMACIÓN DE "CONTACTO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#contacto h3 {
    font-size: 10vw;
    padding: 10px 0px;
}
.informacion {
    margin-bottom: 20px;
}

.informacion a {
    padding:5px 5px;
    margin-bottom: 0px;
}

.informacion a i {
    padding-right: 5px;
}

/*      6.2       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FORMULARIO     ///////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

form {
    width: 100%;
    gap: 15px;
}

form .campo, form textarea{
    border: 2px solid #00B8D8;
    box-shadow: 0 0 8px #005869,
                0 0 16px #002b33;
    padding: 4px 4px;
    font-size: calc(0.6em + 0.5vw);
}

form textarea {
    height: 100px;
}

/*      6.3       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    BOTON "ENVIAR FORMULARIO"     ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

input[type="submit" i] {
    border: 2px solid #00B8D8;
    width: 50%;
    box-shadow: 0 0 5px #005869,
                0 0 10px #005869,
                0 0 20px #005869;
}

input[type="submit" i]:hover {
    letter-spacing: 6px;
}

/*      6.4       /////////////////////////////////////////////////////////////////////////////////////////////
/////////    FOTO DE "CONTACTO"     ///////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.mifoto_contacto {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    right: -40%;
    bottom: -10%;
    z-index: 0;
}

.mifoto_contacto img {
    height: 100%;
    width: 100%;
}
}


@media only screen and (max-width:250px){
.contenedorestrabajos div{
    width: 100%;
    height: 10%;
}
}