@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* general de todo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
}

/* variables css */
:root {
    --color-texto: #F5F5F5; /* Blanco humo para mejor legibilidad */
    --color-hover: #80BA41; /* Verde vibrante para efectos */
    --color-bg: #010E1F; /* Azul oscuro principal */
    --segundo-color-bg: #1B1F3B; /* Azul grisáceo más elegante */
    --tercer-color-bg: #332929; /* Marrón oscuro para profundidad */
    --color-acento: #12F7FF; /* Azul neón para destacar */
    
    /* Tamaños de fuente */
    --grande-fuente: 2.5rem;
    --normal-fuente: 2rem;
    --h2-fuente: 3rem;

    /* Efecto de neón mejorado */
    --neon-box-shadow: 0 0 .8rem var(--color-acento);
    --fuente-neon-text-shadow: 0 0 10px rgba(18, 247, 255, 0.3),
        0 0 20px rgba(18, 247, 255, 0.4),
        0 0 40px rgba(18, 247, 255, 0.5),
        0 0 80px rgba(18, 247, 255, 0.6);
}




/* Estilos para personalizar la barra de desplazamiento en navegadores basados en WebKit (como Chrome y Safari) */
::-webkit-scrollbar {
    height: 0; /* Altura de la barra de desplazamiento horizontal */
    width: .5rem; /* Ancho de la barra de desplazamiento vertical */
}

::-webkit-scrollbar-track {
    background: var(--segundo-color-bg); /* Color de fondo de la pista de la barra de desplazamiento */
}

::-webkit-scrollbar-thumb {
    background: var(--color-hover); /* Color del pulgar de la barra de desplazamiento */
    border-radius: 5rem; /* Bordes redondeados del pulgar de la barra de desplazamiento */
}


/* estilos del body */
body {
    font-family: 'Poppins', sans-serif;
    background-image: url(../img/bg.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-texto);
}



/*Estilos del header----------------------------------------------------------------------------------------*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 10%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-image: url(../img/bg.png); /* Asegúrate de que el fondo sea visible */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
 }
 
 header.sticky {
    background-image: url(../img/bg.png); /* Asegúrate de que el fondo sea visible */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Añade un poco de sombra para destacar */
    transition: background-color 0.3s, box-shadow 0.3s; /* Transiciones suaves */
}
 
 /* Añade un margen superior */
 section:first-of-type {
     margin-top: 50px; /* Ajusta este valor según la altura de tu header */
 }

/* estilos del logo */
/* .logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
} */

.logo img {
    width: 180px; /* Ajusta este valor según el tamaño deseado */
    height: auto; /* Mantiene la proporción de la imagen */
}
/* .logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
} */
span {
    color: var(--color-hover);
}

/* estilos del navlsit */
.navlist {
    display: flex;
}
.navlist a {
    color: var(--color-texto);
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
}
/* animacion de carga de la barra de navegacion */
.navlist a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* Ajusta el grosor de la barra */
    background-color: var(--color-hover);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
/* animacion de carga de la barra de navegacion */
.navlist a:hover::after {
    transform: scaleX(1);
}
.navlist a:hover {
    color: var(--color-hover);
    text-shadow: 0 0 10px rgba(29, 57, 58, 0.6),
                 0 0 20px rgba(18, 247, 255, 0.6),
                 0 0 30px rgba(18, 247, 255, 0.3),
                 0 0 40px rgba(18, 247, 255, 0.3),
                 0 0 70px rgba(18, 247, 255, 0.3),
                 0 0 80px rgba(18, 247, 255, 0.3),
                 0 0 100px rgba(18, 247, 255, 0.3),
                 0 0 150px rgba(18, 247, 255, 0.3);
    /* text-decoration: underline; */
}

section {
    padding: 100px 2%;
}

header .navlist li {
    display: flex;
    align-items: center;
}


.intranet {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 1s ease, color 1s ease;
    margin-left: 10px;
    color: #ff5733; /* Cambia esto al color que prefieras */
}

.intranet:hover {
    background: var(--color-bg);
    color: #80BA41
}

/*Fin Estilos del header----------------------------------------------------------------------------------------*/



/*Estilos de la seccion home----------------------------------------------------------------------------------------*/
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -50px; /* Ajusta este valor según sea necesario */
}

.home-content {
    width: 100%;
    display: grid;
    grid-template-columns: 0fr 1fr;
    align-items: center;
    gap: 2rem;
}

/* Columna de texto */
.home-content .text {
    max-width: 600px;
}

.home-content h1 {
    font-size: var(--grande-fuente);
    font-weight: 700;
    margin-bottom: 1rem;
}

.change-text {
    margin: 1.5rem 0;
}

.home-content p {
    color: #bdbdbd;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Columna de imagen */
.home-content .home-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-image .img-box {
    position: relative;
    width: 150%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* imagen de la seccion home */
.img-box img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Forma líquida imagen*/
.liquid-shape {
    position: absolute;
    width: 50%;
    height: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
    
}
.liquid-shape:nth-child(2) {
    filter: blur(50px);
}


/* estilos de la seccion letras home */
.change-text {
    font-size: 1.7rem;
    font-weight: 600;
}
.change-text h3 {
    display: inline-flex;
    margin: 0;
    vertical-align: top;
}
.change-text h3 .word {
    position: absolute;
    display: flex;
    opacity: 0;  /* esconde letras */
}
.change-text h3 .word .letter {
    transform-origin: center center 25px;
}
.change-text h3 .word .letter.out {
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2); 
}
.change-text h3 .word .letter.behind {
    transform: rotateX(-90deg);
}
.change-text h3 .word .letter.in {
    transform: rotateX(0deg);
    transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-content {
    position: relative;
    z-index: 2;
}

/* redes sociales en vertical*/

.social-icons {
    position: static; /* Hace que los iconos sigan el flujo normal del documento */
    display: flex;
    flex-direction: column; /* Alineación vertical */
    gap: 10px; /* Espacio entre los iconos */
}
.social-icons a {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    color: var(--color-hover);
    border: 2px solid var(--color-hover);
    transition: .6s;
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease; /* Efecto suave al pasar el mouse */
}

.social-icons a i {
    font-size: 2rem;
}

.social-icons a:hover {
    color: var(--color-bg);
    transform: scale(1.2); /* Aumenta ligeramente el tamaño al pasar el mouse */
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-hover);
    width: 0; /* Ancho inicial de la sombra */
    height: 100%;
    transition: width .6s;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
}

/**/

.social-icons {
    position: static; /* Hace que los iconos sigan el flujo normal del documento */
    display: flex;
    flex-direction: column; /* Alineación vertical */
    gap: 10px; /* Espacio entre los iconos */
}
.social-icons .sonido {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    color: var(--color-hover);
    border: 2px solid var(--color-hover);
    transition: .6s;
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease; /* Efecto suave al pasar el mouse */
}

.social-icons .sonido i {
    font-size: 2rem;
}

.social-icons .sonido:hover {
    color: var(--color-bg);
    transform: scale(1.2); /* Aumenta ligeramente el tamaño al pasar el mouse */
}

.social-icons .sonido::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-hover);
    width: 0; /* Ancho inicial de la sombra */
    height: 100%;
    transition: width .6s;
    z-index: -1;
}

.social-icons .sonido:hover::before {
    width: 100%;
}

.home-image{
    display: relative;
}

.img-box{
    text-align: center;
}

.img-box img{
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-left: 10px;
}

.liquid-shape {
    position: absolute;
    width: 80%;
    height: 60%;
    z-index: -1;
    top: 10%;
}

.liquid-shape:nth-child(2) {
    filter: blur(50px);
}

/* botones animados sobre info */
.btn-box1 {
    display: flex;
    justify-content: space-between;
    width: 350px;
    height: 45px;
}

.btn-box1 a.btn1 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: var(--color-hover); /* Invertido */
    color: var(--color-bg); /* Invertido */
    border: 2px solid var(--color-bg); /* Invertido */
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 1s ease, color 1s ease; /* Aumenta la duración de la transición a 1s */
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 5px;
    position: relative; /* para el before */
    overflow: hidden;
    z-index: 1;
}

.btn-box1 a.btn1:hover {
    background: var(--color-bg); /* Invertido */
    color: var(--color-hover); /* Invertido */
    transform: scale(1.2); /* Ajusta el valor según sea necesario */
}

.btn-box1 a.btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-bg); /* Invertido */
    background: var(--color-bg); /* Invertido */
    width: 0; /* Ancho inicial de la sombra */
    height: 100%;
    transition: width 1s; /* Aumenta la duración de la transición a 1s */
    z-index: -1;
}

.btn-box1 a.btn1:hover::before {
    width: 100%;
}

@keyframes levitate {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0);
    }
}

/**/

.sendbtn2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 50px;
    background: var(--color-hover); /* Invertido */
    color: var(--color-bg); /* Invertido */
    border: 2px solid var(--color-bg); /* Invertido */
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 1s ease, color 1s ease; /* Aumenta la duración de la transición a 1s */
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 5px;
    position: relative; /* para el before */
    overflow: hidden;
    z-index: 1;
    cursor: pointer; /* Hace que el cursor sea de tipo botón */
}

.sendbtn2:hover {
    background: var(--color-bg); /* Invertido */
    color: var(--color-hover); /* Invertido */
    transform: scale(1.2); /* Ajusta el valor según sea necesario */
}

.sendbtn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-bg); /* Invertido */
    width: 0; /* Ancho inicial de la sombra */
    height: 100%;
    transition: width 1s; /* Aumenta la duración de la transición a 1s */
    z-index: -1;
}

.sendbtn2:hover::before {
    width: 100%;
}

@keyframes levitate {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0);
    }
}

.img-box img {
    animation: levitate 3s ease-in-out infinite;
}


/* boton copia */
.btn-box2 {
    display: flex;
    justify-content: space-between;
    width: 350px;
    height: 45px;
}

.btn-box2 a.btn2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: var(--color-hover); /* Invertido */
    color: var(--color-bg); /* Invertido */
    border: 2px solid var(--color-bg); /* Invertido */
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 1s ease, color 1s ease; /* Aumenta la duración de la transición a 1s */
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 5px;
    position: relative; /* para el before */
    overflow: hidden;
    z-index: 1;
}

.btn-box2 a.btn2:hover {
    background: var(--color-bg); /* Invertido */
    color: var(--color-hover); /* Invertido */
    transform: scale(1.2); /* Ajusta el valor según sea necesario */
}

.btn-box2 a.btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-bg); /* Invertido */
    background: var(--color-bg); /* Invertido */
    width: 0; /* Ancho inicial de la sombra */
    height: 100%;
    transition: width 1s; /* Aumenta la duración de la transición a 1s */
    z-index: -1;
}

.btn-box2 a.btn2:hover::before {
    width: 100%;
}
/*Fin Estilos de la seccion home----------------------------------------------------------------------------------------*/



/*Estilos de la seccion about----------------------------------------------------------------------------------------*/
.about {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    /* background: var(--segundo-color-bg); */
    padding: 50px 10%;
    padding-top: 80px;
}

.about .img-about {
    text-align: center;
    position: relative;
    filter: drop-shadow(0 0 10px #12f7ff);
}

.about .img-about img {
    /* max-width: 100%; */
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-content span {
    color: var(--color-texto);
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    color: var(--color-hover);
    font-weight: 700;
    font-size: var(--normal-fuente);
}

.about-content h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: .2rem;
}

.about-content p {
    color: #fdfdfd;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: justify;
    word-spacing: -0.05em;
}

/*Estilos de la seccion skills*/
.info-about1,
.info-about2,
.info-about3 {
    background: var(--color-bg);
    font-size: .7rem;
    position: absolute;
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 25% 25% 25% 25% / 25% 25% 25% 25%;
    display: block;
    box-shadow: var(--neon-box-shodow);
    border: 1px solid var(--color-hover);
    outline: 2px solid var(--color-bg);
    animation: morph 6s linear infinite;
}

/* Animacion de las figuras con keyframes */
@keyframes morph {
    0% {
        border-radius: 30% 30% 30% 30% / 30% 30% 30% 30%;
    }
    30% {
        border-radius: 30% 30% 30% 30% / 30% 30% 30% 30%;
    }
    60% {
        border-radius: 40% 40% 40% 40% / 40% 40% 40% 40%;
    }
    80% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

.info-about1 {
    top: -10%;
    left: 34%;
}

@media (min-width: 992px) and (max-width: 1340px) {
    .info-about1 {
        top: -21%;
        left: 34%;
    }
}

.info-about2 {
    top: 66%;
    left: 5%;
}

.info-about3 {
    top: 61%;
    left: 75%;
}

.img-about span {
    color: var(--color-hover);
    font-size: 1.5rem;
    font-weight: 600;
}
/*Fin Estilos de la seccion about----------------------------------------------------------------------------------------*/



/*Estilos de la seccion servicios----------------------------------------------------------------------------------------*/
.main-text {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-hover);
}

.main-text h2 {
    font-weight: 700;
    font-size: var(--normal-fuente);
}

.main-text span {
    color: #fdfdfd;
    font-size: 1rem;
    font-weight: 200;
    text-transform: uppercase;
}

.section-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    width: 100%;
}

/* El primer service-box ocupa 3 columnas y se centra */
.section-services .service-box:first-child {
    grid-column: 2 / span 2; /* Ocupará desde la segunda columna hasta la tercera */
    max-width: 100%;
    margin: 0 auto;
}


.section-services .service-box {
    min-height: 400px; /* altura fija mínima */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Asegura que los botones estén al final */
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
    background: #EAEAEA;
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    width: 100%;
    color: var(--color-bg);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Efecto hover con animación fluida */
.section-services .service-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), var(--color-bg));
    color: var(--color-texto);
    box-shadow: 0px 6px 15px var(--color-hover);
}

/* Botón centrado */
.service-btn {
    width: auto;
    justify-content: center;
}

/* Íconos con mejor estilo */
.service-icon {
    border: 2px solid var(--color-hover);
    padding: 2rem;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    font-size: 3rem;
    border-radius: 50%;
    position: relative;
    color: var(--color-hover);
    box-shadow: 0px 0px 12px var(--color-hover);
    outline: 3px solid var(--color-bg);
    transition: all 0.3s ease;
}

/* Cambia el color del ícono al pasar el mouse */
.service-box:hover .service-icon {
    background: var(--color-hover);
    color: var(--color-bg);
}

/* Título de los servicios */
.service-box h3 {
    margin-top: 10px;
    font-size: 1.7rem;
    font-weight: 600;
}

/* Párrafo dentro de cada servicio */
.service-box p {
    margin: 0.5rem 0 1.5rem 0;
    font-weight: 300;
    flex-grow: 1; /* Permite que el párrafo crezca */
    text-align: justify;
}

/* Media queries para hacer responsive */
@media (max-width: 992px) {
    .section-services {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Centrar el primer service-box en pantallas medianas */
    .section-services .service-box:first-child {
        grid-column: 1 / span 2;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .section-services {
        grid-template-columns: 1fr;
    }

    .section-services .service-box:first-child {
        grid-column: 1 / span 1;
        max-width: 100%;
    }
}



.btn-box1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Ajusta según sea necesario */
}

.btn1 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: var(--color-hover);
    color: var(--color-bg);
    border: 2px solid var(--color-bg);
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 1s ease, color 1s ease;
}

.btn1:hover {
    background: var(--color-bg);
    color: var(--color-hover);
    transform: scale(1.2);
}
/*Fin Estilos de la seccion servicios----------------------------------------------------------------------------------------*/



/*Estilos de la seccion portafolio--------------------------------------------------------------------------------------*/
.fillter-buttons{
    margin: 2rem;
    text-align: center;
}

.fillter-buttons .btn{
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-left: 1.3rem;
    color: var(--color-hover);
}

.fillter-buttons .btn:hover{
    color: var(--color-texto);
    text-decoration: underline;
}

.portafolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.port-box{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #292e33;
    display: flex;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 2px solid var(--color-hover);
    box-shadow: var(--neon-box-shodow);
}

.port-image{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.port-image img{
    width: 100%;
    opacity: .5s;
    height: 200px;
    transition: .5s;
}

img.filter {
    filter: brightness(90%); 
}

/* ajusta y ocualta texto de los portafolios*/
.port-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.69), #126b6fa1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: 0.5s;
    padding: 0 2rem;
}

/* muestra info con hover */
.port-box:hover .port-content{
    opacity: 1;
}

.port-box:hover .port-image img{
    transform: scale(1.1);
}

.port-content h3{
    font-size: 1.5rem;
    font-weight: 600;
}

.port-content p{
    font-size: 1rem;
    margin: 5px 0 15px 0;
    font-weight: 300;
}

/* colores de los iconos de redireccciones */
.port-content a{
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-hover);
    outline:  2px solid #fff;
}

.port-content a:hover{
    border: 1 px solid var(--color-hover);
}

.port-content a i{
    font-size: 1.3rem;
    color: var(--color-hover);
}

/*Btn de ver portafolio*/
.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%; /* Asegúrate de que el contenedor ocupe todo el ancho disponible */
}

.btn-box1 {
    width: 100%; /* Asegúrate de que el contenedor ocupe todo el ancho disponible */
    display: flex;
    justify-content: center;
}
/*Fin Estilos de la seccion portafolio--------------------------------------------------------------------------------------*/



/*Estilos de la seccion Formulario----------------------------------------------------------------------------------------*/
.contact h2, .contact p {
    text-align: center;
}

.contact form {
    max-width: 40rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

form {
    margin-top: 2rem;

}

.parrafo{
    color: #bdbdbd;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 15px;
    color: var(--color-texto);
    background: #EAEAEA;
    border-radius: .8rem;
    margin: .7rem 0;
}

.input-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 15px;
    gap: 20px; /* Add this line to create space between the divs */

}

.input-box input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #292323;
    border-radius: 5px;
    box-sizing: border-box;
}


.sendbtn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-hover);
    color: var(--color-bg);
    border: 2px solid var(--color-hover);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 1s ease, color 1s ease;
}
.sendbtn:hover {
    background: var(--color-hover);
    color: var(--color-bg);
    transform: scale(1.1);
}





/*Estilos de la seccion contact----------------------------------------------------------------------------------------*/
footer a i {
    font-size: 1.5rem;
    color: var(--segundo-color-bg);
    background: var(--color-hover);
}

.footer {
    background-color: #292e33 !important;
    color: rgb(0, 0, 0);
    padding: 40px 20px 10px 20px; /* Agregar padding para separar el footer de los bordes */
}

.logoFooter {
    max-width: 150px;
    margin-bottom: 10px;
    margin-top: 1rem;
}

.footer .container {
    display: flex; /* Usar Flexbox */
    flex-wrap: wrap; /* Permitir que los elementos se envuelvan si es necesario */
    justify-content: space-between; /* Espacio entre columnas */
    align-items: flex-start; /* Alinear elementos al inicio */
    color: var(--color-texto);
    padding: 0 20px; /* Agregar padding para separar el contenido de los bordes */
    padding-top: 20px;
}

.contacto{
    align-items: flex-start;
}

.footer .column {
    flex: 1; /* Permitir que las columnas crezcan igualmente */
    min-width: 200px; /* Asegurar un ancho mínimo */
    height: 15rem;
    margin-bottom: 3rem;
    color: var(--color-texto);
    margin-left: 1rem;
    display: flex; 
    flex-direction: column; /* Para que los elementos dentro crezcan uniformemente */
    justify-content: flex-start; /* Centra el contenido verticalmente */
}

.footer .column:not(:last-child) {
    border-right: 1px solid var(--color-hover);
}

@media (max-width: 768px) {
    .footer .column:not(:last-child) {
        border-right: none;
        border-top: 1px solid var(--color-hover);
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer .column {
        border-right: none;
        border-top: 1px solid var(--color-hover);
        align-items: center;
        text-align: center;
    }

    .footer .column:not(:first-child) {
        width: 70%;
    }

    .footer .column h3{
        margin-top: 1rem;
    }


    .copyright{
        margin-top: 1rem !important;
    }
}

.footer .column p,
.footer .column ul,
.footer .column h3 {
    margin-bottom: 1.5rem; /* Agregar margen inferior para más espacio entre textos */
}

.footer .column:first-child {
    align-items: center; /* Alinear la primera columna al inicio */
}

.footer .social-icons {
    margin-top: 20px; /* Ajustar el margen superior de los iconos sociales */
}

.footer h3 {
    font-size: 1.2rem;
    color: var(--color-hover);
    font-weight: 500;
    text-transform: uppercase;
}

.container .justify-text {
    text-align: justify;
    word-spacing: -0.05em; /* Ajusta este valor según sea necesario */
}

.container .column .centro{
    text-align: justify;
}
.container .column .centro a{
    color: #bdbdbd;
    text-decoration: none;
}
.container .column .centro a:hover{
    color: var(--color-hover);
    text-decoration: underline;
}

.iconcolor{
    color: var(--color-hover);
    background: transparent;
}

.centro a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    word-wrap: break-word; /* Permite el salto de línea */
    overflow-wrap: break-word;
    max-width: 100%; /* Evita que se desborde */
}

@media (max-width: 1200px) {
    .centro a {
        font-size: 12px; /* Reduce el tamaño del texto */
    }

    .centro a {
        display: flex;
        flex-wrap: wrap; /* Permite que el texto baje si no hay espacio */
        max-width: 100%;
    }
}



.iconcolor {
    display: flex; /* Asegura que el icono esté bien alineado */
    align-items: center;
}


/* seccion de contacto wsp  *//* seccion de contacto wsp  */
@keyframes borderColorChange {
    0% {
        border-color: var(--color-hover);
    }
    25% {
        border-color: #070be6; /* Tomate */
    }
    50% {
        border-color: #45d3bb; /* Lima */
    }
    75% {
        border-color: #1e90ff; /* Azul Dodger */
    }
    100% {
        border-color: var(--color-hover);
    }
}

.main-text1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    /* background: linear-gradient(to right, #1d2024, #133150); */
    background: transparent;
    border-radius: 12px;
    max-width: 1000px;
    margin: 2rem auto;
    box-shadow: 0 4px 15px var(--color-hover);
    border: 4px solid var(--color-hover); /* Añade un borde inicial */
    animation: borderColorChange 5s infinite; /* Aplica la animación */
}

h2 {
    font-size: 1.8rem;
    color: var(--color-texto);
    margin: 0;
    line-height: 1.3;
    font-family: 'Arial', sans-serif;
}
.btn-box1 {
    display: flex;
}

.lado {
    margin-left: auto;
}

@media (max-width: 600px) {
    .main-text1 {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
/* Fin Estilos de la seccion contacto----------------------------------------------------------------------------------------*/



/*Parallax ----------------------------------------------------------------------------------------------------------*/



/*Estilos de la seccion footer----------------------------------------------------------------------------------------*/
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    align-items: center;
    border-top: 1px solid var(--color-hover);
    text-align: center;
    margin-top: 1rem;
}

/* enlaces rapido */
ul p a {
    color: #bdbdbd;
    position: relative; /* Ensure the pseudo-element is positioned correctly */
}
ul p a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* Adjust the thickness of the bar */
    background-color: var(--color-hover);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
ul p a:hover::after {
    transform: scaleX(1);
}
ul p a:hover {
    color: var(--color-hover);
}

/* quita el fondo de los iconos */
.fab.fa-whatsapp {
    background: none; /* Elimina cualquier fondo */
    color: inherit; /* Asegura que el color del icono herede el color del texto */
}


/* ventanas flotantes */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-image: url(../img/bg.png); /* Fondo acorde a los colores existentes */
    color: var(--color-texto);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 500px;
    width: 80%;
    text-align: center;
    box-shadow: 0 0 10px var(--color-hover);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-hover); /* Color acorde a los colores existentes */
}


  /* ocultar btn para menu en moviles */
  .menu-toggle {
    display: none;
  }
/*FIN Estilos de la seccion footer----------------------------------------------------------------------------------------*/



/* Burbuja de WhatsApp */
.whatsapp-burbuja {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: modogoku 1.5s ease-in-out infinite; 
  }
  
  .whatsapp-burbuja::after {
    content: '1';
    position: absolute;
    top: 5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white; /* Opcional: para agregar un borde blanco alrededor del círculo */
  }
  
  .burbuja{
    color: white;
    font-size: 30px;
  }
  
  @keyframes modogoku {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .whatsapp-burbuja img {
    width: 40px;
    height: 40px;
  }
  
  /* Ventana de mensaje simulado */
  .mensage-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1001;
  }
  
  .mensage-header{
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #32413e;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
  }
  
  .mensage-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .mensage-content {
    padding: 15px;
    color: var(--color-texto);
    background-color: var(--segundo-color-bg);
  }
  
  .mensage-popup button {
    width: 100%;
    padding: 10px;
    background-color: #25D366;
    border: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 16px;
  }
  
  .mensage-popup button:hover {
    background-color: #128C7E;
  }

  


/*Estilos del responsive----------------------------------------------------------------------------------------*/
@media screen and (max-width: 991px) {
    header,
    header.sticky {
        padding: 15px 5%;
    }

    .liquid-shape {
        width: 50%;
        height: 60%;
    }

    .multiple-text {
        font-size: 1.8rem;
        margin-left: 150px;
    }

    .home-content {
        grid-template-columns: 0fr 1fr;
        text-align: center;
    }

    .home-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .img-box img {
        max-width: 300px;
    }

    .change-text {
        font-size: 1.5rem;
        margin-left: -200px; 
    }
    .change-text h3 .word {
        font-size: 1.5rem;
        padding-left: 10px; 
    }


    .liquid-shape {
        width: 45%;
        height: 50%;
    }

    .home-content .text{
        max-width: 500px;
        margin-left: 150px;
    }

    .social-icons {
        margin: 2rem auto;
    }

    .btn-box1 {
        margin: 0 auto;
    }

    .info-about1{
        margin-left: 90px;
        margin-top: -40px;
    }
    .info-about2 {
        top: 66%;
        left: 25%;
    }
    .info-about3 {
        top: 61%;
        left: 65%;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 5%;
    }

    .about-content {
        align-items: center;
        margin-top: 2rem;
    }

    .about-content p{
        color: #fdfdfd;
        font-weight: 300;
        margin-bottom: 1.5rem;
        text-align: center;
        word-spacing: -0.05em;
    }

    .about .img-about img {
        max-width: 400px;
        height: 510px;
    }

    .section-services {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .service-box {
        min-height: 350px;
        padding: 1.5rem 1rem;
    }

    .portafolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .logoFooter {
        max-width: 210px;
    }

      /*Ocultar el botón de alternancia del menú móvil en el escritorio*/
    .menu-toggle {
        display: none;
    }
}


@media screen and (max-width: 1200px) {
        /* estilos nav menu amburguesa */
        .navlist {
            position: absolute;
            top: 100%;
            right: -100%;
            width: 250px;
            min-height: 100vh;
            background: linear-gradient(135deg, #0e0908, #201f1f);
            display: flex;
            flex-direction: column;
            padding: 2rem 2rem 1rem 2rem; /* Adjusted padding: top right bottom left */
            transition: .5s ease;
            border-bottom: 1px solid var(--color-hover);
        }
    
        .navlist.active {
            right: 0;
        }
    
        .navlist a {
            display: block;
            padding: 1rem;
            margin: 0.5rem 0;
        }
    
        .navlist a:hover {
            background: var(--color-hover);
            color: var(--color-bg);
        }

            /* Muestra el botón de alternancia del menú móvil en el escritorio*/
        .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--color-texto);
        font-size: 1.5rem;
        cursor: pointer;
        }
        
        section{
            padding: 100px 5%;
        }
}

/* Tablets pequeñas y móviles grandes (max-width: 768px) */
@media screen and (max-width: 768px) {
    .home-content .text{
        max-width: 500px;
        margin-left: 100px;
    }

    /* estilos nav menu amburguesa */
    .navlist {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 250px;
        min-height: 100vh;
        background: linear-gradient(135deg, #0e0908, #201f1f);
        display: flex;
        flex-direction: column;
        padding: 2rem 2rem 1rem 2rem; /* Adjusted padding: top right bottom left */
        transition: .5s ease;
        border-bottom: 1px solid var(--color-hover);
    }

    .navlist.active {
        right: 0;
    }

    .navlist a {
        display: block;
        padding: 1rem;
        margin: 0.5rem 0;
    }

    .navlist a:hover {
        background: var(--color-hover);
        color: var(--color-bg);
    }
    /* estilos nav menu amburguesa */


    .btn-box1 {
        width: 300px;
    }

    .btn-box1 a.btn1 {
        width: 130px;
        font-size: 0.9rem;
    }

    .img-box img {
        max-width: 250px;
    }

    .liquid-shape {
        width: 50%;
        height: 60%;
    }
    
    .change-text {
        font-size: 1.2rem;
        margin-left: -210px; 
    }
    .change-text h3 .word {
        font-size: 1.7rem;
        padding-left: 10px; 
    }

    .section-services {
        grid-template-columns: 1fr;
    }
    
    .info-about1{
        margin-left: 40px;
        margin-top: -10px;
    }

    .service-box {
        min-height: auto;
    }

    .fillter-buttons .btn {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .main-text1 {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        letter-spacing: 1px;
    }
    
    .fillter-buttons .btn {
        margin: 0.5rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .portafolio-gallery {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column; /* Cambiar a columna en pantallas pequeñas */
        align-items: center;
    }

    .container .column .centro {
        text-align: center;
    }

    /* Muestra el botón de alternancia del menú móvil en el escritorio*/
    .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-texto);
    font-size: 1.5rem;
    cursor: pointer;
    }
    
    section{
        padding: 100px 5%;
    }
}



/* Móviles medianos (max-width: 576px) */
@media screen and (max-width: 576px) {

    .home-content .text{
        max-width: 500px;
        margin-left: 20px;
    }

    .change-text {
        font-size: 1.2rem;
        margin-left: -210px; 
    }
    .change-text h3 .word {
        font-size: 1.5rem;
        padding-left: 10px; 
    }

    .liquid-shape{
        width: 52%;
        height: 70%;
    }

    .info-about1{
        width: 90px;
        height: 90px;
        margin-left: 40px;
        margin-top: -10px;
        font-size: .8rem;
    }

    .info-about2{
        width: 90px;
        height: 90px;
        top: 72%;
        left: 5%;
    }

    .info-about3{
        width: 90px;
        height: 90px;
        top: 71%;
        left: 75%;
    }

    .modal-content {
        text-align: justify;
        word-spacing: -0.05em;
    }
    .close{
        top: 5px;
        right: 5px;
    }

    .fillter-buttons .btn {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .main-text1 {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        letter-spacing: 1px;
    }

    .btn-box1 a.btn1 {
        width: 130px;
        font-size: 0.9rem;
    }

    .footer .column {
        text-align: center;
    }
    .container .column .centro {
        text-align: center;
    }

    .copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

}


/* Echo para moviles xiaomi */
@media screen and (max-width: 480px) {

    /* Elimina espacios innecesarios en la parte superior, inferior, izquierda o derecha de la página */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
/* 
    html {
        font-size: 60%;
      }
     */
    .home-content h1{
        font-size: 1.5rem;
    }

    .multiple-text {
        font-size: 1.1rem;
        margin-left: 180px;
    }

    .about-content p{
        text-align: justify;
        word-spacing: -0.05em;
    }

    .img-box img{
        width: 50%;
    }

    .liquid-shape{
        width: 70%;
        height: 70%;
    }
}






/* Móviles pequeños (max-width: 365px) */
@media screen and (max-width: 365px) {
    .home-content .text{
        max-width: 500px;
        margin-left: 20px;
    }

    .home-content h1{
        font-size: 1.5rem;
    }
    
    .multiple-text {
        font-size: 1.2rem;
        margin-left: 150px;
    }

    .about-content p{
        text-align: justify;
        word-spacing: -0.05em;
    }

    .change-text {
        font-size: .8rem;
        display: inline-block; /* Asegúrate de que el elemento sea inline-block o block */
        transform: translateX(20px); /* Ajusta el valor según tus necesidades */
    }
    
    .change-text h3 .word {
        font-size: 1.5rem;
        padding-left: 10px; 
    }

    .img-box img{
        width: 60%;
    }

    .liquid-shape{
        width: 90%;
        height: 70%;
    }
    .info-about1{
        width: 90px;
        height: 90px;
        margin-top: -20px;
        font-size: .8rem;
    }
    .info-about2{
        width: 90px;
        height: 90px;
        top: 77%;
        left: 7%;
    }
    .info-about3{
        width: 90px;
        height: 90px;
        top: 77%;
        left: 65%;
    }

    .section-services{
        padding: 100px 5%;

    }

    .modal-content {
        text-align: justify;
        word-spacing: -0.05em;
    }
    .close{
        top: 5px;
        right: 5px;
    }

    .fillter-buttons .btn {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .main-text1 {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        letter-spacing: 1px;
    }

    .btn-box1 a.btn1 {
        width: 130px;
        font-size: 0.9rem;
    }

    .footer .column {
        text-align: center;
    }
    .container .column .centro {
        text-align: center;
    }

    .copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

}

/*FIN Estilos del responsive----------------------------------------------------------------------------------------*/

.productos{
    /* background: var(--segundo-color-bg); */
    padding: 50px 10%;
    padding-top: 80px;
    
}

.productos-text {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-hover);
}

.producto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-height: 100vh;
}

.producto .wompi {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wompi span {
    color: var(--color-texto);
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wompi h2 {
    color: var(--color-hover);
    font-weight: 700;
    font-size: var(--normal-fuente);
}

.wompi h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: .2rem;
}

.wompi p {
    color: #fdfdfd;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: justify;
    word-spacing: -0.05em;
}

.wompi-btn{
    justify-content: flex-start;
}

.producto .carrusel {
    text-align: center;
    position: relative;
    filter: drop-shadow(0 0 10px #12f7ff);
    margin-left: 5rem;
}

.carrusel {
    width: 80%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.imagenes {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.imagenes img {
    width: 100%;
    border-radius: 10px;
}
.boton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; }

@media screen and (max-width: 768px){
    .eliminar{
        display: none;
    }
}

