/* variables */

:root{
--mx-width:1320px;
--color-body-text:#525260;
--color-primary: #5956e9;
--color-secundary: #fff;
--color-banner: #2522BA;
--color-text-btn:#0d6efd;
--color-bg-btn:#ffdc60;
--color-subtitle: #c75c6f;
--color-title:#292930;
--color-bg-services:#f8f8f8;
--color-bg-projects: #ecf2f6;
--color-bg-dark:#27272e;
--color-description:#99A1AA;
--color-hover-dark:#303035;
--color-borders:#e3e6e9;
}

/* Estilos generales */
html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    width: 100%;
    height: 100%;

    font-size: 1.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-body-text);
}

/* estructura */
.layout{
    width: 100%;
    min-width: 1200px;
    height: 100%;
}

/* estilos menu navegacion y cabecera de la web */
.layout__menu{
    width: 100%;
    padding: 0 3rem;
}

.menu__navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu__navbar--fixed{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
    background-color: var(--color-secundary);
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 10%);
    padding: 0 8rem;
}

.navbar__logo{
    width: 187px;
}

.nav__list{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav__item{
    position:relative;
    margin: 0 2.4rem;
}

.nav__title{
    position: relative;
    display: inline-block;
    line-height: 6rem;
    font-weight: 500;
    color: var(--color-body-text);
    transition: all 300ms ease-in-out;
}

.nav__icon{
    font-size: 1rem;
    font-weight: bold;
    padding-left: 0.2rem;
    vertical-align: middle;
}

.nav__title:hover{
    color: #0a7fa4;
}

.nav__title::before{
    content:"";
    height: 0.2rem;
    width: 0;
    background-color:#0a7fa4;
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    opacity: 0;
    transition: 500ms;

}

.nav__title:hover::before{
    width: 100%;
    opacity: 1;
}

.nav__submenu{
    display: block;
    position: absolute;
    top: 100%;
    left: 2rem;
    min-width: 19rem;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    background-color: var(--color-secundary);
    box-shadow: 0px 13px 48px 0 rgba(0, 0, 0, 15%);

    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.submenu__item{
    opacity: 0;
    transform: translateX(20px);
    transition: all 100ms ease-in-out;
}

.submenu__item:nth-child(1){
    transition-delay: 100ms;
}

.submenu__item:nth-child(2){
    transition-delay: 200ms;
}

.submenu__item:nth-child(3){
    transition-delay: 300ms;
}

.submenu__item:nth-child(4){
    transition-delay: 400ms;
}

.submenu__item:nth-child(5){
    transition-delay: 500ms;
}

.submenu__title{
    display: block;
    position: relative;
    font-size: 1.5rem;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    color: var(--color-body-text);
    padding: 0.7rem 1.5rem;
    transition: all 300ms ease-in-out;
}

.submenu__title:hover{
    color: var(--color-secundary);
}

.nav__item:hover>.nav__submenu{
    opacity: 1;
    visibility: visible;
    z-index: 999;
    left: 0;
}

.nav__item:hover .submenu__item{
    opacity: 1;
    transform: translateX(0);
}



.submenu__title::after{
    content:"";
    height: 3.2rem;
    width: 0;
    position: absolute;
    top: 5%;
    left: 0;
    z-index: -2;
    border-radius: 8px;
    background-color: #0a7fa4;
    transition: all 300ms ease-in-out;
}

.submenu__title:hover::after{
    width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}


/* estilos para el banner */
.layout__banner{
        margin: 0 3rem;
        margin-bottom: 5rem;
        position: relative;
        min-height: 60rem;
        background-color: var(--color-banner);    
        border-radius: 60px;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
}

.slider-wrapper{
    position: relative;
    max-width: 100%;
}




.slider {
    display: flex;
    width: 100%; 
    aspect-ratio: 16 / 9;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin: auto;  
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover; 
} 


.slider-nav{
    display: flex;
    column-gap: 3rem;
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a{
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background-color: #73736D;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover{
    opacity: 1;
}


/* .banner__content{
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 1.5rem;
    z-index: 3;
}


.banner__title{
    font-size: 6.122rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secundary);
    margin-bottom: 3rem;
} */



/* estilos seccion servicios */
.layout__services{
    position: relative;
    margin: 10rem 10rem;
    margin-bottom: 6rem;
    z-index: 2;
}

.services__grid{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.services__header{
    margin-bottom: 2rem;
    text-align: left;
}
.projects__subtitle,
.services__subtitle,
.stats__subtitle,
.reviews__subtitle,
.news__subtitle,
.clients__subtitle{
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-subtitle);
}
.projects__title,
.services__title,
.stats__title,
.reviews__title,
.news__title{
    color: var(--color-title);
    font-size: 6.7rem;
    line-height: 1.2;
    font-weight: 500;
}

.services__list{
    display: flex;
    flex-direction: row;
    gap: 3rem;

}


.services__service{
    width: 33%;
    padding: 5rem 4rem;
    height: 100%;
    margin-bottom: 4rem;
    border-radius: 3rem;
    background: linear-gradient(180deg, var(--color-bg-services), rgba(255,255,255,0));
    background-color: var(--color-secundary);
    border: 1px solid;
    border-image-source: linear-gradient(90deg, var(--color-bg-services), rgba(255,255,255,0));
    transition: all 300ms ease-in-out;

    
    display: flex;
    flex-direction: row;

}


.services__service:hover{
    background-color: var(--color-bg-services) ;
}

.service__container--img{
    margin-right: 2.5rem;
    max-width: 8.5rem;
    flex: 1;
}

.service__content{
    flex: 1;
}

.service__title{
    color: var(--color-title);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3rem;
    transition: all 300ms ease-in-out;
    
}

.service__description{
    font-size: 1.7rem;
    overflow: hidden;
    margin-bottom: 4rem;
}

.service__more{
    font-size: 1.7rem;
    position: relative;
    display: inline-block;
    font-weight: 500;
    padding-left: 5rem;
    transition: all 300ms ease-in-out;
}

.service__more::before{
    content: "";
    width: 3.4rem;
    height: 2px;
    background-color: var(--color-body-text);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 300ms ease-in-out;
}

.service__title:hover,
.service__more:hover{
    color: var(--color-primary);
}

.service__more:hover::before{
    background-color: var(--color-primary);
} 


/* escalonado de las tarjetas de servicios */
.services__service--bottom{
    margin-top: 20rem;
}

.services__service--middle{
    margin-top: 10rem;
}

.services__service--top{
    margin-top: 0rem;
}



/* formas detras de los servicios */
.service-shapes__item{
position: absolute;
z-index: -1;
pointer-events: none;
}

.service-shapes--shape1{
    top: -7%;
    right: 3%;

}

.service-shapes--shape2{
    top: 10%;
    left: 52%; 
}

.service-shapes--shape3{
    top: 34%;
    left: 5%;
    
}


/* estilos de proyectos */
.layout__projects{
    position: relative;
    background: var(--color-bg-projects);
    padding: 14rem 10rem;
    z-index: 1;
}

.projects__grid{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.projects__header{
    margin-bottom: 4rem;
}

/* .projects__subtitle{
 text-transform: capitalize;
} */

.projects__categories{
    margin-bottom: 5.5rem;
    display: flex;
    flex-direction: row;
    gap: 7rem;
}

.categories__item{
    position: relative;
    font-size: 2rem;
    font-weight: 500;
    cursor:pointer;
    padding: 0.8rem 0rem;
    transition: all 0.05s ease-in-out;
}

.categories__item--active,
.categories__item:hover{
    border-bottom: 3px solid var(--color-primary);
}

.projects__all{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 7rem;
}

.projects__project{
    width: calc(50% - 3.5rem);
}

.project__container-img{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.project__img{
    width: 100%;
    transition: all 300ms ease-in-out;
}

.project__im{
    width: 100%;
    max-height: 630px; /* Ajusta la altura máxima de la imagen según tus necesidades */
    transition: all 300ms ease-in-out;
}

@media (max-width: 768px) {
    .project__im {
        max-height: 300px; /* Ajusta la altura máxima para pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .project__im {
        max-height: 300px; /* Ajusta la altura máxima para pantallas muy pequeñas */
    }
}


/* .projects__project:hover .project__img{
    transform: scale(1.1);
}  */

.project__content{
    padding: 4rem 5rem;
    background-color: var(--color-secundary);
    border-radius: 0 0 30px 30px;
}

.project__title{
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-title);
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
}

.project__title:hover{
    color: var(--color-banner);
}

.project__tags{
    font-size: 1.7rem;

}

.project-shapes__item{
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
}

.project-shapes--shape1{
    top: 4%;
    right: 11%;
}

.project-shapes--shape2{
    top: 8%;
    right: 35%;
}

.project-shapes--shape3{
    top: 38%;
    left: 5%;
}

/* estilos para estadisticas y mejores clientes */
.layout__clients,
.layout__stats{
    background: var(--color-bg-dark);
    padding: 14rem 10rem;

}
.stats__container,
.clients__container{
    max-width: var(--mx-width);
    margin: 0 auto;
}


.stats__header{
    text-align: center;
}

.clients__title,
.stats__title{
    color: var(--color-secundary);
    font-size: 6.4rem;
    margin-bottom: 3rem ;
}

.clients__description,
.stats__description{
    font-size: 2rem;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 4rem;
    color: var(--color-description);

}

.stats__progress{
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.stats__stat{
    width: 25%;
    text-align: center;
    padding: 7rem 2rem;
    border-radius: 2rem;
    border: 1px solid transparent;
}

.stats__stat:hover{
    background: linear-gradient(180deg, var(--color-bg-dark) ,var(--color-hover-dark) );
    border: 1px solid var(--color-hover-dark);
}

.stat__icon{
    margin-bottom: 2rem;
}

.stat__icon>img{
    text-align: center;
    margin: 0 auto;
}

.stat__count{
    display: inline-block;
    font-weight: 500;
    color: var(--color-primary);
    font-size: 6.4rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat__title{
    color: var(--color-secundary);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.layout__reviews{
    position: relative;
    z-index: 1;
    padding-top: 14rem;
    padding-bottom: 11rem;

}

.reviews__grid{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.reviews__header{
    text-align: left;
    margin-bottom: 6rem;
}

.reviews__description,
.news__description{
    margin: 3rem 0;
    width: 50%;
    font-size: 2rem;
}

.reviews__container{
    display: flex;
    gap: 3rem;
}

.reviews__review{
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.review__company{
    display: inline-block;
    margin-bottom: 3rem;;
}

.review__description{
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-body-text);
    margin-bottom: 4rem;
}

.review__author{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.author__container-img{
    border-radius: 3.5rem;
    overflow: hidden;
}

.author__content{
    flex: 1;
}

.author__name{
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--color-bg-dark);
    margin: 0.3rem;
}

.author__description{
    display: block;
    font-size: 1.5rem;
    color: var(--color-description);
    opacity: 0.7;
}

.review-shapes__item{
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 16%;
    right:31%;

}

/* estilos exclusivos mejores clientes */

.layout__clients{
    position: relative;
    z-index: 1;
}

.clients__header{
    text-align: left;
}

.clients__title{
    width: 50%;
    line-height: 1.2;
    font-weight: 500;
}

.clients__description{
    width: 40%;
    text-align: left;
    margin: 0;
    margin-bottom: 4rem;
}

.clients__logos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;

}

.clients__item{
    width: calc(25% - 3rem);
}

.clients__img{
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 300ms ease-in-out;
}

.clients__item:hover >.clients__img{
    opacity: 1;
    filter: grayscale(0%);
    cursor: pointer;
}

.client-shapes__item{
    position: absolute;
    z-index: -1;
    top: 10rem;
    right: 0;

}

/* estilos ultimas noticias */
.layout__news{
    position: relative;
    z-index: 1;
    padding: 14rem 0;
}

.news__container{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.news__header{
    text-align: center;
    margin-bottom: 6rem;

}

.news__description{
    margin: 0 auto;
    text-align: center;
}

.news__title{
    margin-bottom: 3rem;
}

.news__list{
    display: flex;
    flex-wrap: wrap;
}

.news__new{
    display: flex;
    width: 50%;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 2rem;
    padding-left: 0;
    border-top: 1px solid var(--color-borders) ;
    border-bottom: 1px solid var(--color-borders) ;
    transition: all 300ms ease-in-out;
}

.news__new:hover{
    border-top-color: var(--color-primary) ;
}

.news__new:nth-child(2){
    border-left: 1px solid var(--color-borders);
    padding-left: 2.5rem;
}

.news__new:nth-child(4){
    border-left: 1px solid var(--color-borders);
    padding-left: 2.5rem;
}

.new__container-img{
    overflow: hidden;
    border-radius: 3rem;
}

.new__img{
    border-radius: 3rem;
    transition: all 300ms ease-in-out;
}

.news__new:hover .new__img{
    transform:  scale(1.1);
}

.new__content{
    flex: 1;
}

.new__title{
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-title);
}

.new__description{
    color: var(--color-description);
    margin-bottom: 3rem;
    font-size: 1.7rem;
    font-weight: normal;
    transition: all 300ms ease-in-out;

}

.new__more:hover,
.new__title:hover{
    color: var(--color-primary);
}

.new__more{
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-hover-dark-dark);
    transition: all 300ms ease-in-out;
}

.new__icon{
    font-size: 1.3rem;
    vertical-align: middle;
}

.new-shapes__item{
    position: absolute;
    z-index: -1;
}

.new-shapes--shape1{
    top: 14rem;
    left: 31.5rem;
}

.new-shapes--shape2{
    top: 12rem;
    right: 0;
}

.new-shapes--shape3{
    bottom: 8rem;
    left: 0;
}

.new-shapes--shape4{
    bottom: 6rem;
    right: 40rem;
}

/* estilos de contacto */
.layout__contact{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    padding-top: 14rem;
    padding-bottom: 5rem;

}

.layout__contact::before{
    content: " " ;
    width: 100%;
    height: 50rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    z-index: -1;
}

.layout__contact_2{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    padding-top: 14rem;
    padding-bottom: 5rem;

}

.layout__contact_2::before{
    content: " " ;
    width: 100%;
    height: 50rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: -1;
}

.contact__container{
    max-width: var(--mx-width);
    margin: 0 auto;
    overflow: hidden;
}

.contact__header{
    margin-bottom: 6.5rem;
    text-align: center;
}

.contact__subtitle{
    color: var(--color-bg-btn);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 2rem;
}

.contact__title{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 5.5rem;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-secundary);
}

.contact__btn{
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2.3rem 5.5rem;
    background-color: var(--color-secundary);
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
    transition: all 300ms ease-in-out;
    ;

}

.contact__btn:hover{
    background-color: var(--color-bg-btn);
}

.contact__images{
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--color-borders);
}

.contact__thumb{
    display: inline-block;
    position: relative;

}


.contact__thumb--chat{
    margin-right: -18rem;
    margin-bottom: -0.8rem;

}

.contact__thumb--laptop{
    position: absolute;
    bottom: 0;
    left: 16rem;

}

.contact__thumb--mobile{
    position: absolute;
    bottom: 0;
    right: 8rem;

}

.backshapes__item{
    position: absolute;
    z-index: -1;
}

.backshapes--shape1{
    top: 0;
    left: 32%;
}

.backshapes--shape2{
    top: 18rem;
    left: 18%;
    opacity: 0.5;
    animation: moveShape3 20s infinite;
}

.backshapes--shape3{
    top: 31%;
    left: 20%;
    animation: moveShape4 25s infinite;
}

.backshapes--shape4{
    top: 44%;
    left: 28%;
    animation: moveShape3 25s infinite;
}

.backshapes--shape5{
    top: 50%;
    right: 17%;
    animation: moveShape4 30s infinite;
}


.backshapes--shape6{
    top: 26%;
    right: 21%;
    animation: moveShape5 30s infinite;
}

.backshapes--shape7{
    top: 30%;
    right: 15%;
    animation: moveShape3 30s infinite;
}

/* estilos del footer */
.layout__footer{
    padding-top: 1rem;

}

.footer__container{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.footer__top{
    padding-bottom: 7rem;
}

.footer__social{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social__img{
    display: inline-block;
    color: var(--color-description);
    font-size: 3rem;
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
}

.social__link:hover > .social__img{
    color: var(--color-body-text);
}

.footer__main{
    display: flex;
    flex-direction: row;
}

.footer__fleft{
    flex-basis: 50%;

}

.fleft__container{
    border-right: 1px solid var(--color-borders) ;
    padding-right: 8rem;
    margin-right: 4rem;
    margin-bottom: 8rem;

}

.fleft__title{
    display: inline-block;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 500;
    color:var(--color-title);
    margin-bottom: 2rem;
}

.fleft__subtitle{
    margin-bottom: 4rem;
    font-size: 1.7rem;
}

.fleft__group{
    position: relative;
    display: flex;
    width: 100%;
    background-color:var(--color-secundary);
    border-radius: 20px;
    height: 7.7rem;
    padding: 1rem;
    padding-right: 1rem;
    box-shadow: 0 24px 48px -15px #ddd;
    align-items: center;
    justify-content: space-between;
}

.fleft__mail-icon{
    display: inline-block;
    margin-left: 2rem;
}

.fleft__form-control{
    display: block;
    padding: 0.5rem 1.5rem;
    height: auto;
    border: none;
    outline: none;
    position: relative;
    flex: 1;
    color:var(--color-title);
    margin-left: 1rem;
}

.fleft__btn{
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--color-primary);
    color: var(--color-secundary);
    border-radius: 16px;
    padding: 1.4rem 3rem;
    transition: all 300ms ease-in-out;
    height: 5.2rem;
}

.fleft__btn:hover{
    background-color: var(--color-banner);
}

.footer__fright{
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
}

.footer__widget--50{
    flex-basis: 50%;
}

.footer__widget--25{
    flex-basis: 25%;
}

.widget__title{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--color-title);
}

.widget__link{
    font-size: 1.8rem;
    padding: 0.8rem 0;
    display: inline-block;
    transition: all 300ms linear;
}

.widget__link:hover{
    color: var(--color-banner);
}

.footer__bottom{
    border-top: 1px solid var(--color-borders);
    padding: 2.5rem 0;
    display: flex;
    font-size: 1.7rem;
}

.footer__copyright{
    flex-basis: 50%;
}

.footer__text{
    display: inline-block;
    color: var(--color-body-text);
}

.copyright__text{
    display: inline-block;
    color: var(--color-description);
}

.copyright__text a{
    display: inline;
}

.footer__links{
    flex-basis: 50%;
}

.footer__flinks{
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    color: var(--color-description);
}

.flinks__title{
    transition: all 300ms ease-in-out;
}


.flinks__title:hover{
    color:var(--color-banner);
}

.flinks__item{
    display: inline-block;
    position: relative;
}

.flinks__item--separator::after{
    content: "";
    height: 4px;
    width: 4px;
    background-color: var(--color-description);
    border-radius: 50%;
    position: absolute;
    top: 46%;
    right: -7.5%;
}

/* navegacion responsive */

.menu-mobile{
    visibility: hidden;
    opacity: 0;

    position: fixed;
    top: 0;
    left: -300px;
    z-index: 10;
    width: 30rem;
    height: 100%;
    background: var(--color-secundary);
    padding: 5rem 1rem;
    padding-top:0;
    box-shadow: 0px 0px 85px -35px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: all 800ms cubic-bezier(0.77, 0.2, 0.05, 1);
}

.menu-mobile--show{
    visibility: visible;
    opacity: 1;
    left: 0;


}


.menu-mobile__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 1rem;
    padding: 0 0;
    border-bottom: 1px solid var(--color-borders);

}

.menu-mobile__container-logo{
    width: 15rem;
}

.menu-mobile__close{
    background-color: transparent;
    height: 3rem;
    width: 3rem;
    border: 2px solid var(--color-description);
    border-radius: 1rem;
    color: var(--color-body-text);
    font-size: 1.6rem;
    cursor: pointer;
}

.menu-mobile__list{
    display: block;
    height: 100%;
    overflow: auto;
}

.menu-mobile__item{
    position: relative;
    border-bottom: 1px solid var(--color-borders);
    margin: 0 1rem;
}

.menu-mobile__link{
    position: relative;
    height: 5rem;
    line-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-body-text);
    font-weight: 500;

}

.menu-mobile__icon{
    font-size: 1.4rem;
}

.menu-mobile__submenu-mobile{
    display: none;
    visibility: visible;
    opacity: 1;
    min-width: 100%;
    padding: 0;
    padding-bottom: 1rem;
}

.submenu-mobile__link{
    display: block;
    text-decoration: none;
    padding: 0.7rem 1rem;
    position: relative;
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--color-body-text);

}


.navbar__mobile-btn{
    display: none;
}

.mobile-btn__wrap{
    cursor: pointer;
    background-color: var(--color-body-text);
    height: 5rem;
    width: 5rem;
    border: none;
    border-radius: 3.2rem;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.mobile-btn__line{
    display: block;
    background-color: var(--color-secundary);
    width: 2rem;
    height: 0.2rem;
    margin-bottom: 0.4rem;
    border-radius: 1rem;
    transition: all 300ms ease-in-out;
}

.mobile-btn__line:last-child{
    width: 1rem;
    margin-bottom: 0;
    margin-right: -1rem;
    
}


/* estilos boton modo oscuro */
.switcher{
    position: fixed;
    top: 20rem;
    left: 0;
    background-color: #0a7fa4;
    border-radius: 0 3rem 3rem 0;
    padding: 1rem;
    z-index: 5;
}

.switcher__btn{
    cursor: pointer;
    background-color: transparent;
    border: none;
    display: flex;
}

.switcher__icon-light,
.switcher__icon-dark{
    color: var(--color-secundary);
    font-size: 1.8rem;
    height: 4rem;
    width: 4rem;
    line-height: 3.6rem;
}

.switcher__icon-dark{
    display: none;
}

.outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ajusta la altura del contenedor padre según tus necesidades */
    padding: 20px 0; /* Espacio arriba y abajo */
}

.inner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 16 / 9; /* Cambia la relación de aspecto si es necesario */
    overflow: hidden;
    position: relative;
}

.inner-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Ajusta para mantener la proporción de la imagen */
}










