@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');

:root {
    --primary-blue: #3586ff;
    --secondary-blue: #1a4b8f;
    --color-nav:#1453aa;
    --color-nav-a:#ffffff;
    --light-blue: #99c3fd;
    --light-blue-services: #87b8fc;
    --accent-blue: #5899fa;
    --dark-blue: #1c2335;
    --white: #ffffff;
    --gray-blue: #f6f9ff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body{
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 63px;
    bottom: calc(25px + env(safe-area-inset-bottom));
    right: 25px;
    background: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100000;
    transition: all 300ms ease;
}

.btn-wsp:hover {
    background: #20ba5a;
}

@media only screen and (max-width: 768px) {
    .btn-wsp {
        width: 60px;
        height: 60px;
        line-height: 63px;
        bottom: calc(60px + env(safe-area-inset-bottom)); /* ← lo subimos un poco */
        right: 20px;
    }
}

/* Definir animación de entrada */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Mover desde abajo */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Volver a la posición original */
    }
}

/* Aplicar la animación a todos los elementos con la clase 'animate' */
.animate {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards; /* Duración de la animación */
}

.img-logo {
    width: 100%;
}

header {
    width: 95%;
    height: 80px;
    background: var(--color-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-radius: 0 0 10px 10px;
    margin: 0 auto; 
}

.logo {
    width: 350px;
    margin-top: 10px;
}

nav .logo {
    display: none;
}

nav ul {
    display: flex;
}

nav ul li a {
    position: relative;
    list-style: none;
    display: block;
    margin: 0 2px;
    font-weight: 600;
    padding: 8px 18px;
    color: var(--color-nav-a);
    text-decoration: none;
    transition: color 0.2s;
}

/* Línea superior dinámica */
nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%; /* Empieza desde fuera del enlace (derecha) */
    width: 0;
    height: 2px;
    background: var(--color-nav-a); /* Color de la línea superior */
    transition: width 0.3s ease, left 0.3s ease;
}

/* Línea inferior dinámica */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%; /* Empieza desde fuera del enlace (izquierda) */
    width: 0;
    height: 2px;
    background: var(--color-nav-a); /* Color de la línea inferior */
    transition: width 0.3s ease, right 0.3s ease;
}

/* Hover: animar ambas líneas */
nav ul li a:hover::before {
    width: 100%; /* Línea superior se expande */
    left: 0; /* Se alinea completamente con el enlace */
}

nav ul li a:hover::after {
    width: 100%; /* Línea inferior se expande */
    right: 0; /* Se alinea completamente con el enlace */
}

/* Cambiar el color del texto al hacer hover */
nav ul li a:hover {
    color: var(--color-nav-a);
}

.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

.hamburger div {
    width: 30px;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
}

/* Estilos del botón de cierre (X) */
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Líneas de la "X" */
.close-line {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff; /* Línea más fina y elegante */
    transition: transform 0.3s ease;
}

.close-line.top {
    top: 0;
    left: 0;
}

.close-line.bottom {
    top: 10px;
    left: 0;
}

/* Animación de la "X" cuando el menú se abre */
#nav_check:checked ~ nav .close-btn .close-line.top {
    transform: rotate(45deg) translate(5px, 5px); /* Suave rotación */
}

#nav_check:checked ~ nav .close-btn .close-line.bottom {
    transform: rotate(-45deg) translate(5px, -5px); /* Suave rotación */
}

#nav_check:checked ~ nav .close-btn {
    transform: rotate(90deg); /* Cierre más suave */
}

/* Estilos de la vista en mobile */
@media only screen and (max-width: 1100px) {
    header {
        width: 90%;
        padding: 0 20px;
    }

    .logo {
        width: 235px;
        margin-left: -45px; /* Un poco menos negativo para móvil */
    }

    nav {
        position: absolute;
        left: -300px;
        top: 0;
        z-index: 999;
        width: 280px;
        height: 100vh;
        background-color: var(--color-nav);
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }

    #nav_check:checked ~ nav {
        left: 0;
    }

    nav .logo {
        display: block;
        height: 70px;
        display: flex;
        align-items: center;
        margin-left: 30px;
    }

    nav ul li a {
        margin-bottom: 5px;
        padding: 10px 15px;
        color: var(--color-nav-a);
    }

    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
    }

    .hamburger {
        display: block;
    }

    .close-btn {
        display: block;
    }
}

/* slider index */
.container-slider {
    position: absolute;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider {
    position: absolute;
    inset: 80px 200px 80px 80px;
    border-radius: 20px;
}

.slider .slides {
    position: absolute;
    width: 240px;
    height: 320px;
    background: var(--img);
    background-position: center;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.slider .slides:nth-child(1),
.slider .slides:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
    background-size: cover;
}

.slider .slides:nth-child(3) {
    background-size: cover;
    left: calc(50% + 240px);
}

.slider .slides:nth-child(4) {
    background-size: cover;
    left: calc(50% + 500px);
}

.slider .slides:nth-child(5) {
    background-size: cover;
    left: calc(50% + 763px);
}

.slider .slides:nth-child(6) {
    background-size: cover;
    left: calc(50% + 1020px);
    opacity: 0;
}

.buttons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.buttons span {
    position: relative;
    width: 50px;
    height: 50px;
    background: #111;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.buttons span:hover {
    transform: scale(1.1);
    background: #333;
}

.buttons span::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(315deg);
}

.buttons span:nth-child(2)::before {
    transform: rotate(135deg);
}

.buttons span:active {
    opacity: 0.7;
}

/* OPCIÓN 4 MEJORADA: Diseño minimalista con texto más destacado */
.content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 20px 0;
    max-width: 550px;
    transition: 0.25s;
    transition-delay: 0s;
    transform: translateY(0);
    z-index: 10000;
    opacity: 0;
}

.content h2 {
    font-size: 2.5em;
    color: #fff;
    font-weight: 700;
    text-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.95),
        -1px -1px 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.content p {
    color: #fff;
    font-weight: 500;
    font-size: 1em;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.95),
        -1px -1px 6px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.content p strong {
    font-weight: 700;
    color: #fff;
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 1),
        0 0 15px rgba(0, 0, 0, 0.9);
}

.slider .slides:nth-child(1) .content,
.slider .slides:nth-child(2) .content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

@media (max-width: 900px) {
    .slider {
        position: absolute;
        inset: 40px 40px 200px 40px;
    }

    .slider .slides:nth-child(1),
    .slider .slides:nth-child(2) {
        top: initial;
        bottom: 0px;
    }

    .content {
        padding: 20px;
        width: 90%;
        max-width: none;
        left: 5%;
        right: 5%;
    }

    .content p {
        font-size: 13px;
    }

    .content h2 {
        font-size: 1.1em;
    }

    .slider .slides {
        width: 100px;
        height: 100px;
        top: initial;
        bottom: -170px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

    .slider .slides:nth-child(3) {
        left: 0;
    }

    .slider .slides:nth-child(4) {
        left: 120px;
    }

    .slider .slides:nth-child(5) {
        left: 240px;
    }

    .slider .slides:nth-child(6) {
        left: 360px;
    }
}

.about {
    width: 100%;
    background: linear-gradient(-45deg, 
        var(--primary-blue),
        var(--accent-blue),
        var(--secondary-blue),
        var(--dark-blue)
    );
    background-size: 400% 400%;
    animation: gradientBG 15s linear infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.main {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.img-about-us {
    width: 100%;
    max-width: 500px;
    max-height: 650px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
}


.all-text {
    width: 100%;
    max-width: 600px;
    padding: 0 10px;
    box-sizing: border-box;
}

.titulo-nosotros {
    font-size: 45px;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
}

.parrafo {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 30px;
    margin-bottom: 35px;
}

/* Estilos para pantallas grandes (laptops) */
@media (min-width: 1025px) {
    .about {
        height: 100vh;
        margin-top: 50%;
    }
    .img-about-us {
        max-width: 47%;
        max-height: 600px;
    }
    .titulo-nosotros {
        font-size: 35px;
    }
    .parrafo {
        font-size: 1.15rem;
        line-height: 25px;
    }
}

/* Estilos para tablets */
@media (min-width: 768px) and (max-width: 1284px) {
    .about {
        flex-direction: column;
        height: auto;
        margin-top: 140%;
    }
    .img-about-us {
        max-width: 70%;
        margin-bottom: 20px;
    }
    .titulo-nosotros {
        font-size: 37px;
    }
    .parrafo {
        font-size: 1.1rem;
        line-height: 26px;
    }
}

/* Estilos para móviles */
@media (max-width: 767px) {
    .about {
        flex-direction: column;
        height: auto;
        margin-top: 200%;
    }
    .img-about-us {
        max-width: 90%;
        margin-bottom: 20px;
    }
    .titulo-nosotros {
        font-size: 30px;
        text-align: center;
    }
    .parrafo {
        font-size: 0.85rem;
        line-height: 24px;
        text-align: center;
    }
}

/* Para dispositivos con una resolución de 375x667 */
@media only screen and (min-width: 375px) and (max-width: 375px) and (min-height: 667px) and (max-height: 667px) {
    .about {
        flex-direction: column;
        height: auto;
        margin-top: 160%;
    }
    .img-about-us {
        max-width: 90%;
        margin-bottom: 20px;
    }
    .titulo-nosotros {
        font-size: 30px;
        text-align: center;
    }
    .parrafo {
        font-size: 0.85rem;
        line-height: 24px;
        text-align: center;
    }

    .slider{
        position: absolute;
        inset: 40px 40px 200px 40px;
    }
    .slider .slides:nth-child(1),
    .slider .slides:nth-child(2){
        top: initial;
        bottom: 0px;
    }
    .content p{
        color: #fff;
        font-weight: 400;
        font-size: 13px;
    }
    .content h2{
        font-size: 1.3em;
        color: #fff;
        font-weight: 600;
    }
    .slider .slides{
        width: 100px;
        height: 100px;
        top: initial;
        bottom: -170px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }
    .slider .slides:nth-child(3){
        left: 0;
    }
    .slider .slides:nth-child(4){
        left: 120px;
    }
    .slider .slides:nth-child(5){
        left: 240px;
    }
    .slider .slides:nth-child(6){
        left: 360px;
    }

}

/* Para dispositivos con una resolución de 540x720 */
@media only screen and (min-width: 540px) and (max-width: 540px) and (min-height: 720px) and (max-height: 720px) {
    @media (max-width: 767px) {
        .about {
            flex-direction: column;
            height: auto;
            margin-top: 130%;
        }
        .img-about-us {
            max-width: 90%;
            margin-bottom: 20px;
        }
        .titulo-nosotros {
            font-size: 30px;
            text-align: center;
        }
        .parrafo {
            font-size: 0.85rem;
            line-height: 24px;
            text-align: center;
        }
    }
}

/* Para dispositivos con una resolución de 344x882 */
@media only screen and (min-width: 344px) and (max-width: 344px) and (min-height: 882px) and (max-height: 882px) {
    @media (max-width: 767px) {
        .about {
            flex-direction: column;
            height: auto;
            margin-top: 230%;
        }
        .img-about-us {
            max-width: 90%;
            margin-bottom: 20px;
        }
        .titulo-nosotros {
            font-size: 30px;
            text-align: center;
        }
        .parrafo {
            font-size: 0.85rem;
            line-height: 24px;
            text-align: center;
        }

        .slider{
            position: absolute;
            inset: 40px 40px 200px 40px;
        }
        .slider .slides:nth-child(1),
        .slider .slides:nth-child(2){
            top: initial;
            bottom: 0px;
        }
        .content p{
            color: #fff;
            font-weight: 400;
            font-size: 14px;
        }
        .content h2{
            font-size: 1.5em;
            color: #fff;
            font-weight: 600;
        }
        .slider .slides{
            width: 100px;
            height: 100px;
            top: initial;
            bottom: -170px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }
        .slider .slides:nth-child(3){
            left: 0;
        }
        .slider .slides:nth-child(4){
            left: 120px;
        }
        .slider .slides:nth-child(5){
            left: 240px;
        }
        .slider .slides:nth-child(6){
            left: 360px;
        }
    }
}

/* Para dispositivos con una resolución de 1024x600 */
@media only screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
    .about {
        flex-direction: column;
        height: auto;
        margin-top: 55%;
    }
    .img-about-us {
        max-width: 70%;
        margin-bottom: 20px;
    }
    .titulo-nosotros {
        font-size: 45px;
    }
    .parrafo {
        font-size: 1.2rem;
        line-height: 26px;
    }
}


/* Para dispositivos con una resolución de 1280x800 */
@media only screen and (min-width: 1280px) and (max-width: 1280px) and (min-height: 800px) and (max-height: 800px) {
    .about {
        flex-direction: column;
        height: auto;
        margin-top: 60%;
    }
    .img-about-us {
        max-width: 70%;
        margin-bottom: 20px;
    }
    .titulo-nosotros {
        font-size: 45px;
    }
    .parrafo {
        font-size: 1.2rem;
        line-height: 26px;
    }
}


/* Products sliders */
/* Contenedor principal con espacio para los botones */
.container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 40px 150px;
}

.slide-container {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.card {
    background: #003366;
    border-radius: 8px;
    width: 320px;
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card .image-box {
    height: 350px;
}

.card .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.card .profile-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.profile-details .name {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.profile-details .job {
    font-size: 16px;
    color: var(--light-blue);
}

/* Estilos para los botones de navegación */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    color: black;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

.swiper-button-next {
    right: -60px;
}

.swiper-button-prev {
    left: -60px;
}

/* Responsividad */
@media screen and (max-width: 1400px) {
    .swiper-button-next {
        right: -50px;
    }

    .swiper-button-prev {
        left: -50px;
    }
}

@media screen and (max-width: 1024px) {
    .card {
        width: 280px;
        height: 400px;
    }

    .card .image-box {
        height: 300px;
    }

    .swiper-button-next {
        right: -45px;
    }

    .swiper-button-prev {
        left: -45px;
    }
}

@media screen and (max-width: 768px) {
    .card {
        width: 95%;
        height: 470px;
        margin: 0 auto;
    }

    .card .image-box {
        height: 330px;
    }

    .profile-details .name {
        font-size: 22px;
    }

    .profile-details .job {
        font-size: 18px;
    }
}

@media screen and (max-width: 520px) {
    .card {
        width: 95%;
        height: 500px; /* Aumentamos considerablemente la altura */
        margin: 0 auto;
    }

    .card .image-box {
        height: 400px; /* Imagen más alta para destacarla */
    }

    .profile-details .name {
        font-size: 24px;
    }

    .profile-details .job {
        font-size: 18px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next {
        right: -30px;
    }

    .swiper-button-prev {
        left: -30px;
    }
}



/* SERVICIOS CARDS */
.container-services {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--light-blue),
        #1453aa,
        var(--primary-blue),
        #2a70e0,
        var(--accent-blue),
        #85b4fc,
        var(--secondary-blue)
        
    );
    overflow: hidden;
}

/* Overlay para oscurecer un poco y resaltar texto */
.container-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Cambiá el 0.3 para más/menos oscuridad */
    z-index: 1;
}

/* Asegurate que tu contenido esté encima del overlay */
.container-services > * {
    position: relative;
    z-index: 2;
}

.service-wrapper{
    padding: 5% 8%;
}

.service{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards-services{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 80px;
}

.card-service{
    height: 350px;
    width: 370px;
    background-color: var(--dark-blue);
    padding: 3% 8%;
    border: 0.2px solid rgba(255, 255, 255, 0.2);    
    border-radius: 8px;
    transition: .6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-service:after{
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #ffffff;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.card-service:hover:after{
    width: 225%;
    top: -100%;
}

.card-service i{
    color: var(--accent-blue);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 4.3rem;
}

.card-service h2{
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-service p{
    text-align: left;
    font-size: 15.5px;
    width: 100%;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.8);
}

.card-service:hover{
    background-color: var(--secondary-blue); 
    transform: translateY(-8px);
    border-color: var(--primary-blue);
}


@media (max-width: 1024px) { 
    /* Tablets */
    .cards-services {
        grid-template-columns: repeat(2, 1fr); /* 2 tarjetas por fila */
        gap: 30px; /* Mantén el espacio entre tarjetas */
    }
}


@media (max-width: 768px) { 
    /* Móviles */
    .cards-services {
        grid-template-columns: repeat(1, 1fr); /* 1 tarjeta por fila */
    }
    .titulo {
        font-size: 3.5rem;
    }
}

/* carrousel de logos */
@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  
  .logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
  }
  
  .logos-slide img {
    height: 100px;
    margin: 0 43px;
  }

  footer{
    position: relative;
    width: 100%;
    background: var(--color-nav);
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  footer .social_icon, footer .menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }

  footer .social_icon li, footer .menu li{
    list-style: none;
  }
  footer .social_icon li a{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  footer .social_icon li a:hover{
    transform: translateY(-10px);
  }

  footer .menu li a{
    font-size: 1.1em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
  }
  footer .menu li a:hover{
    opacity: 1;
  }
  footer p{
    color: #fff;
    text-align: center;
    margin-top: 13px;
    margin-bottom: 10px;
    font-size: 1em;
  }
  footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background:url(../IMG/wave.png);
    background-size: 1000px 100px;
  }
  footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
  }
  footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
  }
  footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
  }
  footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
  }
  
  @keyframes animateWave {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;

    }
  }

  @keyframes animateWave_02 {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;

    }
  }

  .titulo {
    font-size: 3.5rem; /* Tamaño del texto */
    font-weight: 700; /* Negrita */
    color: #003366; /* Un azul elegante */
    text-align: center; /* Centrado horizontalmente */
    line-height: 1.2; /* Espaciado entre líneas */
    margin: 20px auto; /* Espaciado externo */
    position: relative; /* Necesario para agregar decoraciones */
}

/* Línea decorativa debajo del título */
.titulo::after {
    content: "";
    display: block; /* Asegura que ocupe espacio debajo */
    width: 160px; /* Ancho de la línea */
    height: 3px; /* Alto de la línea */
    background: linear-gradient(90deg, #a2c9ff, #3a78ff); /* Gradiente de color */
    margin: 3px auto 0; /* Centrado debajo del texto */
    border-radius: 2px; /* Bordes redondeados */
}

.titulo-services {
    font-size: 3.5rem; /* Tamaño del texto */
    font-weight: 700; /* Negrita */
    color: var(--light-blue-services); /* Un azul elegante */
    text-align: center; /* Centrado horizontalmente */
    line-height: 1.2; /* Espaciado entre líneas */
    margin: 20px auto; /* Espaciado externo */
    position: relative; /* Necesario para agregar decoraciones */
}

/* Línea decorativa debajo del título */
.titulo-services::after {
    content: "";
    display: block; /* Asegura que ocupe espacio debajo */
    width: 160px; /* Ancho de la línea */
    height: 3px; /* Alto de la línea */
    background: linear-gradient(90deg, #a2c9ff, #3a78ff); /* Gradiente de color */
    margin: 3px auto 0; /* Centrado debajo del texto */
    border-radius: 2px; /* Bordes redondeados */
}