/*GENERALES*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #1a1a1a;
}

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background: #1a1a1a;
}

/* Modern scrollbar styling */
html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0089E0, #005a8c);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #005a8c, #003d5f);
}

/* Modern animations and transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Component animations only - no section animations */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Parallax effect for banner */
.banner {
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 137, 224, 0.3), rgba(0, 90, 140, 0.3));
    z-index: 1;
}

/* Modern glassmorphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contenedor{
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}
.titulo-seccion{
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}
.titulo-seccion h2{
    color: #0089E0;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.titulo-seccion h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
    border-radius: 2px;
}
.titulo-seccion p{
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
/*Boton volver arriba*/
.btn-volver-arriba{
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    margin-right: -60px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 137, 224, 0.3);
    opacity: 0;
    transform: translateY(100px);
}
.btn-volver-arriba.visible {
    opacity: 1;
    transform: translateY(0);
}
.btn-volver-arriba:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 137, 224, 0.4);
    animation: pulse 1s infinite;
}
.btn-volver-arriba a{
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
}
.btn-volver-arriba a i {
    font-size: 1.2rem;
    color: #fff;
    line-height: 50px;
    transition: all 0.3s ease;
}
.btn-volver-arriba:hover a i {
    transform: translateY(-2px);
}




/*-------------ENCABEZADO------------*/
.menu-bar-pc{
    width: 100%;
    min-height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    animation: slideInDown 0.8s ease-out;
    transition: all 0.3s ease;
}
.logo{
    display: inline-block;
    width: 60px;
    transition: all 0.3s ease;
}
.logo:hover {
    transform: scale(1.1) rotate(5deg);
}
.logo img{
    width: 100%;
    vertical-align: top;
    border-radius: 10px;
        
}
.menu-principal a, .top-redes a{
    display: inline-block;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    line-height: 1.5em;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 25px;
}
.menu-principal a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: -1;
}
.menu-principal a.last-child, .top-redes a.last-child{
    padding-right: 18px;
}
.top-redes {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-redes a{
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.top-redes a:hover {
    background: linear-gradient(135deg, #0089E0, #005a8c);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 137, 224, 0.3);
}
.top-redes a i{
    font-size: 1.1rem;
}
.menu-principal a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.menu-principal a:hover::before {
    width: 100%;
}

.fixed-header{
    width: 100%;
    min-height: 80px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    padding: 0 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: all .4s ease;
    margin-top: -80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
 }
.fixed-header .menu-principal a, .fixed-header .top-redes a{
    color: #444444;
}
.fixed-header .menu-principal a:hover{
    color: #0089E0;
}
.fixed-header .top-redes a:hover{
    background: linear-gradient(135deg, #0089E0, #005a8c);
    color: #fff;
}
/*Mobile menu*/
.menu-mobile{
    display: none;
}

/*-------------MAIN------------*/

/* Banner principal */
.main{
    width: 100%;
    position: relative;
}
.main .banner-principal{
    width: 100%;
    position: relative;
   
}
.main .banner-principal .banner{
    width: 100%;
    height: 100vh;
    background-image: url('../img/banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
}
.main .banner-principal .texto-banner{
    display: inline-block;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 1;
    z-index: 2;
}
.main .banner-principal .texto-banner h2{
    font-weight: 300;
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.main .banner-principal .texto-banner h1{
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.main .banner-principal .texto-banner a{
    text-decoration: none;
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 137, 224, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.main .banner-principal .texto-banner a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.main .banner-principal .texto-banner a:hover::before {
    left: 100%;
}
.main .banner-principal .texto-banner a:hover{
    background: linear-gradient(135deg, #fff, #f8fafc);
    color: #0089E0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 137, 224, 0.4);
}

/* Proyectos */
.main .proyectos{
    background: #F3F4FA;
    padding: 108px 0 54px 0;
}
.main .proyectos .galeria-proyectos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 34px;
    border-bottom: 1px solid #ccc;
}
.main .proyectos .galeria-proyectos .proyecto{
    width: 32%;
    margin-bottom: 2%;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: #fff;
}
.main .proyectos .galeria-proyectos .proyecto:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.main .proyectos .galeria-proyectos .proyecto img{
    width: 100%;
    vertical-align: top;
    transition: all 0.4s ease;
    border-radius: 20px;
}
.main .proyectos .galeria-proyectos .proyecto:hover img {
    transform: scale(1.1);
}
.main .proyectos .galeria-proyectos .proyecto::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 137, 224, 0.8), rgba(0, 90, 140, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
}
.main .proyectos .galeria-proyectos .proyecto:hover::after {
    opacity: 1;
}

/* Modal fotos proyectos */
 
.modal{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999999999;
  
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal img{
    width: 90%;
    max-width: 600px;
  }
  
  .modal .btn-cerrar{
    position: fixed;
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
    background: #0089E0;
    text-align: center;
    cursor: pointer;
  }
  
  .modal .btn-cerrar i{
    color: #fff;
    font-size: 1rem;
    line-height: 50px;
  }

/* Acerca de  */
.main .acerca-de{
    background: #F3F4FA;
}
.main .acerca-de .contenedor{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.main .acerca-de .contenedor .titulo-seccion{
    width: 33.33%;
    text-align: left;
}
.main .acerca-de .contenedor .titulo-seccion h2{
    margin-bottom: 0;
}
.main .acerca-de .texto-acerca-de{
    width: 66.66%;
    text-align: left;
}
.main .acerca-de .texto-acerca-de p{
    color: #979797;
    font-size: 1rem;
    font-weight: 400;
}

/* Slider */
.main .contenedor-slider{
    width: 100%;
    overflow: hidden;
    background: #F3F4FA;
    padding: 54px 0;
    position: relative;
}
.main .contenedor-slider .slider{
    width: 400%;
    display: flex;
}
.main .contenedor-slider .slider .slide{
    width: 15%;
    max-width: 950px;
    margin-right: 0.7%;
    box-shadow: 0px 20px 40px #aaa;
}
.main .contenedor-slider .slider .slide img{
    width: 100%;
    vertical-align: top;
}
.main .contenedor-slider .btn-anterior,.main .contenedor-slider .btn-siguiente{
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50);
}
.main .contenedor-slider .btn-anterior{
    left: 2%;
}
.main .contenedor-slider .btn-siguiente{
    right: 2%;
}
.main .contenedor-slider .btn-anterior i,.main .contenedor-slider .btn-siguiente i{
    color: #fff;
}
.main .contenedor-slider .btn-anterior i:hover,.main .contenedor-slider .btn-siguiente i:hover{
    color: #0089E0;
}

/* Nuestro equipo */
.main .nuestro-equipo{
    background: #F3F4FA;
    padding-top: 54px;
    padding-bottom: 108px;
}
.main .nuestro-equipo .equipo{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main .nuestro-equipo .equipo .persona-equipo{
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.main .nuestro-equipo .equipo .persona-equipo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
    transition: left 0.5s ease;
}
.main .nuestro-equipo .equipo .persona-equipo:hover::before {
    left: 0;
}
.main .nuestro-equipo .equipo .persona-equipo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.main .nuestro-equipo .equipo .persona-equipo:first-child, .main .nuestro-equipo .equipo .persona-equipo:last-child{
    position: relative;
    top: 20px;
}


.main .nuestro-equipo .equipo .persona-equipo .foto{
    width: 50%;
    max-width: 120px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}
.main .nuestro-equipo .equipo .persona-equipo .foto img{
    width: 100%;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}
.main .nuestro-equipo .equipo .persona-equipo:hover .foto img {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 137, 224, 0.2);
}
.main .nuestro-equipo .equipo .persona-equipo .texto h3{
    font-size: 1.3rem;
    font-weight: 500;
    color: #0089E0;
}
.main .nuestro-equipo .equipo .persona-equipo .texto h4{
    color: #979797;
    font-size:0.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.main .nuestro-equipo .equipo .persona-equipo .texto p{
    color: #979797;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Seccion informacion extra */
.main .info-extra{
    background: #191919;
    padding: 130px 0;
}
.main .info-extra .contenedor{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.main .info-extra .contenedor .info{
    width: 50%;
}
.main .info-extra .contenedor .info .contenido-info{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.main .info-extra .contenedor .info .contenido-info:first-child{
    margin-bottom: 30px;
}
.main .info-extra .contenedor .info .contenido-info .icono-info{
    width: 5%;
}
.main .info-extra .contenedor .info .contenido-info .icono-info i{
    font-size: 1.5rem;
    color: #fff;
}
.main .info-extra .contenedor .info .contenido-info .texto-info{
    margin-left: 3%;
}
.main .info-extra .contenedor .info .contenido-info .texto-info h4{
    font-size: 1.875rem;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}
.main .info-extra .contenedor .info .contenido-info .texto-info p{
    color: #979797;
    font-size: 1rem;
    font-weight: 400;
}
.main .info-extra .contenedor .foto{
    width: 50%;
    height: 300px;
    box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
    background-image: url(../img/info-foto.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Contacto */
.main .contacto{
    padding: 190px;
    background-image: url(../img/bg-contacto.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.main .contacto .contenedor-formulario{
    background: #fff;
    min-height: 485px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.4s ease;
}
.main .contacto .contenedor-formulario:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.main .contacto .contenedor-formulario .formulario{
    width: 50%;
    padding: 70px;
}
.main .contacto .contenedor-formulario .formulario h2{
    font-size: 1.375rem;
    line-height: 24px;
    color: #0089E0;
    font-weight: 500;
    margin-bottom: 10px;
}
.main .contacto .contenedor-formulario .formulario p{
    color: #979797;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
}
.main .contacto .contenedor-formulario .formulario form input[type="text"],.main .contacto .contenedor-formulario .formulario form input[type="email"]{
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px 20px;
    outline: none;
    width: 100%;
    margin-bottom: 20px;
    color: #374151;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: #f9fafb;
    transition: all 0.3s ease;
}
.main .contacto .contenedor-formulario .formulario form input[type="text"]:focus,.main .contacto .contenedor-formulario .formulario form input[type="email"]:focus{
    border-color: #0089E0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 137, 224, 0.1);
    transform: translateY(-2px);
}
.main .contacto .contenedor-formulario .formulario form textarea{
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px 20px;
    outline: none;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    max-height: 120px;
    min-height: 120px;
    color: #374151;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
    background: #f9fafb;
    transition: all 0.3s ease;
    resize: vertical;
}
.main .contacto .contenedor-formulario .formulario form textarea:focus{
    border-color: #0089E0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 137, 224, 0.1);
    transform: translateY(-2px);
}
.main .contacto .contenedor-formulario .formulario form input[type="submit"]{
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 18px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 137, 224, 0.3);
    position: relative;
    overflow: hidden;
}
.main .contacto .contenedor-formulario .formulario form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.main .contacto .contenedor-formulario .formulario form input[type="submit"]:hover::before {
    left: 100%;
}
.main .contacto .contenedor-formulario .formulario form input[type="submit"]:hover{
    background: linear-gradient(135deg, #005a8c, #003d5f);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 137, 224, 0.4);
}
.main .contacto .contenedor-formulario .foto{
    background: url(../img/foto-contacto.jpg);
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/*Validacion formulario*/

.main .contacto .contenedor-formulario .formulario form .error{
    display: none;
    color: #ff8c8c;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
  }

/*------------------PIE DE PAGINA------------------*/
footer{
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0089E0, #005a8c);
}
footer .copy{
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}
footer .footer-redes{
    display: flex;
    justify-content: center;
    gap: 20px;
}
footer .footer-redes a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.5rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
footer .footer-redes a:hover{
    background: linear-gradient(135deg, #0089E0, #005a8c);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 137, 224, 0.3);
}


/*------------- MEDIA QUERIES --------------*/
@media screen and (max-width:1040px){
 /* Nuestro equipo */
 .main .nuestro-equipo .titulo-seccion{
    margin-bottom: 60px;
 }
 .main .nuestro-equipo .equipo .persona-equipo{
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: left;
 }
 .main .nuestro-equipo .equipo .persona-equipo:first-child{
    top: -20px;
 }
 .main .nuestro-equipo .equipo .persona-equipo .foto{
    margin-right: 20px;
 }
 /*Seccion Informacion extra*/
 .main .info-extra .contenedor .info{
    width: 100%;
 }
 .main .info-extra .contenedor .foto{
    display: none;
 }
}
@media screen and (max-width:900px){
    /*Encabezado*/
    .menu-bar-pc{
        display: none;
    }
    .menu-mobile{
        display: block;
        width: 100%;
        padding: 5px 18px;
        background: #fff;
        color: #444444;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }
    .menu-mobile .barra{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-mobile .barra .logo{
        width: 40px;
    }
    .menu-mobile .barra a i{
        font-size: 1.4rem;
        color: #444444;
    }

    .menu-mobile .menu-principal{
        width: 80%;
        display: block;
        position: fixed;
        top: 56px;
        left: -100%;
        border-bottom: 1px solid rgba(204, 204, 204, 0.5);
        border-right: 1px solid rgba(204, 204, 204, 0.5);
        box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.2);
        background: #fff;
        text-align: center;
    }
    .menu-mobile .menu-principal a {
        display: block;
        padding: 10px;
        color: #444444;
        border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    }
    .menu-mobile .menu-principal a:hover{
        background: #f7f7f7;
    }
    .fixed-header{
        display: none;
    }

    /*Main*/
    .main{
        margin-top: 0;
    }
    /*Acerca de*/
    .main .acerca-de .contenedor .titulo-seccion, .main .acerca-de .contenedor .texto-acerca-de{
        width: 100%;
        text-align: center;
    }
    /*Contacto*/
    .main .contacto .contenedor-formulario .formulario{
        width: 100%;
        text-align: center;
    }
    .main .contacto .contenedor-formulario .foto{
        display: none;
    }
    .main .contacto .contenedor-formulario .formulario form input[type="text"],
    .main .contacto .contenedor-formulario .formulario form input[type="email"],
    .main .contacto .contenedor-formulario .formulario form textarea{
        text-align: center;
    }
}

@media screen and (max-width:550px){
    /*Banner principal*/
    .main .banner-principal .texto-banner h1{
        font-size: 3.5rem;
        line-height: 1.2;
    }
    .main .banner-principal .texto-banner h2{
        font-size: 1.2rem;
    }
    .main .banner-principal .texto-banner a{
        padding: 15px 30px;
        font-size: 1rem;
    }
    /*Titulo secciones*/
    .titulo-seccion h2{
        font-size: 2.5rem;
    }
    .titulo-seccion p{
        font-size: 1rem;
    }
    /*Proyectos*/
    .main .proyectos .galeria-proyectos .proyecto{
        width: 49%;
    }
    /*Nuestro equipo*/
    .main .nuestro-equipo .equipo .persona-equipo{
        flex-direction: colum;
        align-items: center;
        text-align: center;
    }
    /*Seccion informacion extra*/
    .main .info-extra .contenedor .info .contenido-info{
        flex-wrap: wrap;
        text-align: center;
    }
    .main .info-extra .contenedor .info .contenido-info .icono-info{
        width: 100%;
        margin-bottom: 25px;
    }
    .main .info-extra .contenedor .info .contenido-info .icono-info i{
        font-size: 3.5rem;
    }
    .main .info-extra .contenedor .info .contenido-info .texto-info{
        margin-left: 0;
    }
    .main .info-extra .contenedor .info .contenido-info .texto-info h4{
        font-size: 1.175rem;
    }
    .main .info-extra .contenedor .info .contenido-info .texto-info:first-child{
        margin-bottom: 40px;
    }
    /*Contacto*/
    .main .contacto .contenedor{
        width: 95%;
    }
    .main .contacto{
        padding: 20px 20px;
    }
    
    
}

/* Sección Servicios */
.servicios {
    background: #F3F4FA;
    padding: 108px 0 54px 0;
}
.servicios .galeria-servicios {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 34px;
    border-bottom: 1px solid #ccc;
}
.servicios .galeria-servicios .servicio {
    width: 30%; /* Ajustado para pantallas grandes */
    margin-bottom: 2%;
    cursor: pointer;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg); /* Efecto 3D leve */
}

/* Efecto hover en tarjetas de servicios */
.servicios .galeria-servicios .servicio:hover {
    transform: perspective(1000px) rotateX(0) rotateY(0) scale(1.05); /* Leve aumento */
    box-shadow: inset -3px -3px 10px rgba(0, 0, 0, 0.15),
                10px 10px 20px rgba(0, 0, 0, 0.2); /* Más sombra */
}

/* Imágenes dentro de los servicios */
.servicios .galeria-servicios .servicio img {
    width: 100%;
    border-radius: 15px; /* Bordes redondeados */
    transition: transform 0.3s ease;
}

/* Efecto hover en imágenes */
.servicios .galeria-servicios .servicio:hover img {
    transform: scale(1.05); /* Leve aumento de la imagen */
}

/* Título del servicio */
.servicios .galeria-servicios .servicio h3 {
    margin-top: 15px;
    color: #0089E0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

/* Cambiar color del texto al hacer hover */
.servicios .galeria-servicios .servicio:hover h3 {
    color: #005a8c; /* Color más oscuro al hacer hover */
}

/* Estilo del Modal */
.modal-servicio {
    display: none; /* Inicialmente oculto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo translúcido */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-servicio.mostrar {
    display: flex;
    opacity: 1; /* Hacer visible el modal */
}

.modal-servicio.ocultar {
    opacity: 0; /* Ocultar suavemente */
}

/* Contenido del modal */
.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px; /* Bordes redondeados */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombra alrededor */
    width: 90%;
    max-width: 500px;
    text-align: center;
    transform: scale(0.7); /* Iniciar más pequeño */
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.modal-servicio.mostrar .modal-content {
    transform: scale(1); /* Escalar al tamaño normal */
    opacity: 1;
}

.modal-servicio.ocultar .modal-content {
    transform: scale(0.7); /* Reducir tamaño al ocultar */
    opacity: 0;
}

/* Botón para cerrar el modal */
.btn-cerrar-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-cerrar-modal:hover {
    color: #000;
}

/* Títulos y texto dentro del modal */
.modal-content h3 {
    font-size: 1.8rem;
    color: #0089E0;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Estilo del botón "Quiero Adquirirlo" */
.btn-adquirir {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0089E0;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 137, 224, 0.4);
}

.btn-adquirir:hover {
    background-color: #005a8c; /* Color más oscuro */
    transform: translateY(-2px); /* Efecto de elevación */
}

/* Responsividad */

/* Para tabletas y pantallas medianas */
@media screen and (max-width: 900px) {
    .servicios .galeria-servicios .servicio {
        width: 48%; /* 2 columnas en tabletas */
    }

    .servicios .galeria-servicios .servicio h3 {
        font-size: 1.1rem;
    }
}

/* Para móviles y pantallas pequeñas */
@media screen and (max-width: 600px) {
    .servicios .galeria-servicios .servicio {
        width: 100%; /* 1 columna en móviles */
        margin-bottom: 10px;
    }

    .modal-content {
        width: 95%; /* Ancho ajustado en móviles */
    }
    
    .btn-adquirir {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 1rem;
    }
}
