/* Variables */
:root {
    --mx-width: 1320px;
    --color-text-body: #525260;
    --color-primary: #5956e9;
    --color-secondary: #fff;
    --color-banner: #2322BA;
    --color-bg-btn: #ffdc60;
    --color-subtitle: #52a712;
    --color-titles: #292030;
    --color-bg-services: #f8f8f8;
    --color-bg-projects: #ecf2f6;
    --color-bg-estadisticas: #191743;
    --color-bg-dark: #27272E;
    --color-hover-dark: #303035;
    --color-heart: #ee0f0f;
    --color-text-description: #99A1AA;


    --grisClaro: hsl(0, 0%, 88%);
    --color-btn: #58cc02;


    --separacion: 5rem;


    --fuentePrincipal: 'Poppins', sans-serif;
    --fuenteSecundaria: 'Lato', sans-serif;
}

/*Estilos generales
@media (min-width: 850px){*/
html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--color-text-body)
}

/*Estructura*/
.layout {
    width: 100%;
    min-width: 1200px;
    /*ajustar en el responsive*/
    height: 100%;
}

/*Estilos Menu Navegación y cabecera de la web*/
.layout__menu {
    width: 100%;
    padding: 1rem 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: 8;
    background-color: var(--color-secondary);
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 10%);
    padding: 0.2rem 3rem;
}

.navbar__logo,
.menu-mobile__logo {
    width: 100px;
}

.nav__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav__item {
    position: relative;
    margin: 0 1.5rem;
}

.nav__title {
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: var(--color-text-body);
    line-height: 4rem;
    transition: all 300ms ease-in-out;
}

.nav__icon {

    font-weight: bold;
    padding-left: 0.2rem;
    vertical-align: middle;

}

.nav__title:hover {
    color: var(--color-primary);
}

.nav__title::before {
    content: "";
    height: 0.2rem;
    width: 0;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    opacity: 0;
    transition: 500ms;
}

.nav__title:hover::before {
    width: 100%;
    opacity: 1;
}

.nav__submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 1.5rem;
    min-width: 12rem;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    background-color: var(--color-secondary);
    box-shadow: 0px 13px 48px 0 rgba(0, 0, 0, 15%);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.submenu__item {
    opacity: 1;
    transform: translateX(2rem);
    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__title {
    display: block;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    transition: all 300ms ease-in-out;
}

.nav__item:hover>.nav__submenu {
    opacity: 1;
    visibility: visible;
    z-index: 100;
    left: 0;

}

.nav__item:hover .submenu__item {
    opacity: 1;
    transform: translateX(0);

}

.submenu__title:hover {
    color: var(--color-primary);
}

/* Estilos para el Banner*/
.layout__banner {
    position: relative;
    margin: 0 3rem;
    /*width: calc(100% - 6rem);
    margin: 0 auto;*/
    padding: 15rem 0 20rem 10rem;
    border-radius: 60px;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-banner);
    z-index: 1;
}

.banner__content {
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 1.5rem;
    text-align: center;
    z-index: 1;
}

.banner__title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.banner__btn {

    display: inline-block;
    padding: 2rem 3rem;
    background-color: var(--color-btn);
    color: var(--color-secondary);
    text-align: center;
    border-radius: 20px;
    font-size: 2rem;
    z-index: 1;
    font-weight: bold;
    box-shadow: 0px 45px 50px -25px var(--color-bg-dark);
    transition: all 300ms ease-in-out;
}

.banner__btn:hover {
    background-color: var(--color-bg-btn);
    color: var(--color-primary);
}

.shapes__item {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.shapes__item--1 {
    /*Arreglar top*/
    top: 180px;
    right: 0;
    text-align: right;

    animation-name: showRight;
    animation-duration: 1s;
}

@keyframes showRight {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0%);

    }
}

.shapes__item--2 {
    bottom: -65px;
    left: 0;
    z-index: -10;
    animation-name: showLeft;
    animation-duration: 1s;
}

@keyframes showLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);

    }
}

.shapes__item--3 {
    top: 34%;
    left: 50%;
    animation: moveShape3 20s infinite;
}

@keyframes moveShape3 {
    0% {
        transform: translateX(0) translateY(0);
    }

    40% {
        transform: translateX(50px) translateY(-200px);
    }

    75% {
        transform: translateX(800px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--4 {
    bottom: 24rem;
    left: 45%;
    animation: moveShape4 30s infinite;
    z-index: -1;

}

@keyframes moveShape4 {
    0% {
        transform: translateX(0) translateY(0);
    }

    40% {
        transform: translateX(-50px) translateY(200px);
    }

    75% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--4 .shapes__img {
    opacity: 0.5;
    width: 7.5rem;
}

.shapes__item--5 {
    bottom: 12rem;
    left: 53%;
    opacity: 0.7;
    animation: moveShape5 45s infinite;
}

@keyframes moveShape5 {
    0% {
        transform: translateX(0) translateY(0);
    }

    40% {
        transform: translateX(-600px) translateY(-500px);
    }

    75% {
        transform: translateX(30px) translateY(-800px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--6 {
    bottom: 10rem;
    left: 40%;
    animation: moveShape3 35s infinite;

}

.shapes__item--7 {
    top: 0;
    right: 10rem;
    z-index: 0;

    animation-name: showTop 1s;
}

@keyframes showTop {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

/*Estilos seccion servicios*/
.layout__services {
    position: relative;
    margin: 5rem 7rem -1rem;
    z-index: 1;
}

.services__grid {
    max-width: var(--mx-width);
    margin: 0 auto;
}

.services__header {
    margin-bottom: 2rem;
    text-align: left;
}

.services__subtitle,
.benefits__subtitle,
.estadistica__subtitle,
.reviews__subtitle {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-subtitle);
    margin-bottom: 1.5rem;
}

.services__title,
.benefits__title,
.estadistica__title,
.reviews__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-titles);
    transition: all 300ms ease-in-out;

}

.services__list {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.services__item {
    width: 33%;
    height: 100%;
    padding: 3rem 3rem;
    margin-bottom: 4rem;
    border-radius: 3rem;
    background: linear-gradient(180deg, var(--color-bg-services), rgba(255, 255, 255, 0));
    background-color: var(--color-secondary);
    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__item:hover {
    background-color: var(--color-bg-services);
}

.services__container-img {
    margin-right: 2.5rem;
    max-width: 5.5rem;
}

.services__contenido {
    flex: 1;
}

.service__title {
    color: var(--color-titles);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3rem;
}

.services__description {
    font-size: 1.6rem;
    overflow: hidden;
    margin-bottom: 3rem;
    text-align: justify;
}

.services__more {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 500;
    padding-left: 5rem;
    transition: all 300ms ease-in-out;
}

.services__more::before {
    content: "";
    width: 3.4rem;
    height: 1px;
    background-color: var(--color-text-body);
    position: absolute;
    top: 50%;
    left: 0;
}

.servics__more:hover,
.services__title:hover,
.benefits__title:hover {
    color: var(--color-primary);
}

.services__more:hover::before {
    background-color: var(--color-primary);
}

/*Escalonado de las tarjetas de servicios*/
.services__item--bottom {
    margin-top: 20rem;
}

.services__item--middle {
    margin-top: 10rem;
}

/*Formas detrás de los servicios*/
.service-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
}

.service-shapes__shape1 {
    top: 4%;
    right: 9%;
}

.service-shapes__shape2 {
    top: 20%;
    left: 52%;
}

.service-shapes__shape3 {
    top: 34%;
    left: 5%;
}

/*Estilos de proyectos*/
.layout__benefits {
    position: relative;
    background-color: var(--color-bg-projects);
    padding: 5rem 7rem;
    z-index: 1;

}

.benefits__grid {
    max-width: var(--mx-width);
    margin: 0 auto;

}

.benefits__header {
    margin-bottom: 4rem;
}

.benefits__subtitle {
    font-size: 2rem;
    font-weight: 500;
    text-align: left;
    color: var(--color-subtitle);
    margin-bottom: 1.5rem;
}

.benefits__categories {
    display: flex;
    flex-direction: row;
    gap: 7rem;
    margin-bottom: 5.5rem;
}

.categories__item {
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.8rem 0;
    transition: all 100ms linear;
}

.categories__item--active,
.categories__item:hover {
    border-bottom: 3px solid var(--color-primary);
}

.benefits__beneficio {
    flex-basis: 47%;
}

.benefits__all {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 4rem;
}

.benefits__beneficio {
    width: calc(50% - 4rem);
}

.benefits__container-img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.benefits__img {
    width: 100%;
    transition: all 1s ease-in-out;
}

.benefits__beneficio:hover .benefits__img {
    transform: scale(1.2);
}

.benefits__contenido {
    padding: 4rem 4rem;
    background-color: var(--color-secondary);
    border-radius: 0 0 30px 30px;
}

.contenido__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-titles);
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
}
.contenido__link-title--caja1{
    padding-bottom: 2.5rem;
}

.contenido__title:hover {
    color: var(--color-banner);
}

.benefits__tag {
    font-size: 1.6rem;
    text-align: justify;
}

/*Benefit shapes*/
.beneficio-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.beneficio-shapes--shape1 {
    top: 2%;
    right: 11%;
}

.beneficio-shapes--shape2 {
    top: 7%;
    right: 35%;
}

.beneficio-shapes--shape3 {
    top: 55%;
    left: 4%;
}

/*Sección de Estadisticas*/

.layout__estadistica {
    background-color: var(--color-bg-estadisticas);

}

.estadistica__container {
    max-width: var(--mx-width);
    margin: 0 auto;
    margin-bottom: 3rem;
    padding-bottom: 5rem;
}

.estadistica__header,
.estadistica__container-icon {
    text-align: center;
}

.estadistica__title {
    font-size: 6rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    padding-top: 2.5rem;

}

.estadistica__container-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 47%;
    margin-top: -1%;
    pointer-events: none;
    z-index: 1;
    background-color: var(--color-secondary);
    width: 4rem;
    /* Ancho del contenedor igual al tamaño del icono */
    height: 4rem;
    /* Alto del contenedor igual al tamaño del icono */
    border-radius: 50%;

}

.estadistica__icon {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-heart);
}

.estadistica__subtitle {
    font-size: 2rem;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.estadistica__progress {
    display: flex;
    flex-direction: row;
    gap: 3rem;

}

.estadistica__stat {
    width: 25%;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 2rem;
    padding: 4rem 3rem;
}

.estadistica__stat:hover {
    background: linear-gradient(175deg, var(--color-bg-estadisticas), var(--color-hover-dark));
    border: 1px solid var(--color-hover-dark);
}

.stat__icon {
    margin-bottom: 2rem;
}

.stat__icon>img {
    margin: 0 auto;
    text-align: center;
    height: 45px;
}

.stat__count {
    display: inline-block;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat__title {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-secondary);
}

/*wrapper*/
.layout__wrapper {
    display: flex;
}
.layout__reviews {
    flex: 70%; /* Ocupa el 70% del ancho disponible */
    /* Estilos adicionales */
}

.layout__sidebar {
    flex: 30%; /* Ocupa el 30% del ancho disponible */
    /* Estilos adicionales */
}

.sidebar__container img {
    width: 100%; /* Ajusta la imagen al ancho del sidebar */
}
/*Estilos para las reviews*/

.layout__reviews {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 6rem;
}

.reviews__grid {
    max-width: var(--mx-width);
    margin: 0 auto;
}

.reviews__header {
    text-align: left;
    margin-bottom: 4rem;
}

.reviews__description {
    margin-top: 3rem;
    width: 70%;
    font-size: 1.6rem;;

}

.reviews__container {
    display: flex;
    gap: 3rem;
}


.review__company {
    display: inline-block;
    margin-bottom: 2rem;
}

.review__description {
    padding: 2rem;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 2rem;
    text-align: justify;
}

.review__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.author__container-img {
    overflow: hidden;
}

.author__img {
    border-radius: 50%;
    /* Hace que la imagen sea un círculo */
    width: 50px;
    /* Ajusta el ancho deseado */
    height: 50px;
}

.author__content {
    flex: 1;
}

.author__name {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-bg-dark);
    margin-bottom: 0.3rem;
}

.author__country {
    display: block;
    font-size: 1.5rem;
    color: var(--color-text-body);
    opacity: 0.7rem;
}

.review-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 6.8%;
    right: 35%;
}

/*Estilos de contacto*/
.layout__contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 4rem 0 10rem;
}

.layout__contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50rem;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    z-index: -1;
}

.contact__container {
    max-width: var(--mx-width);
    margin: 0 auto;
    overflow: hidden;
}

.contact__header {
    margin-bottom: 0.6rem;
    text-align: center;
}

.contact__subtitle {
    display: inline-block;
    color: var(--color-bg-btn);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact__title {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 5.5rem;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-secondary);
}

.contact__btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2.3rem 3rem;
    background-color: var(--color-secondary);
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    transition: all 300ms ease-in-out;
}

.contact__btn:hover {
    background-color: var(--color-bg-btn);
    color: var(--color-banner);
}

.contact__imagenes {
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--color-secondary);
}

.contact__thumb {
    position: relative;
    display: inline-block;
}

.contact__thumb--chat {

    margin-right: -18rem;
    margin-bottom: -1rem;
}

.contact__thumb--laptop {
    position: absolute;
    bottom: 0;
    left: 13rem;
}

.contact__thumb--mobile {
    position: absolute;
    bottom: 0;
    right: 8rem;
}

/*Formas shapes de la seccion contacto*/

.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: 17%;
    animation: moveShape3 25s infinite;
}

.backshapes--shape5 {
    top: 50%;
    right: 21%;
    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-between;
}

.social__img {
    display: inline-block;
    color: var(--color-text-body);
    font-size: 3rem;
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
}

.social__link:hover>.social__img {
    color: var(--color-primary);
}

.footer__main {
    display: flex;
    flex-direction: row;
}

.footer__fleft {
    flex-basis: 50%;
}

.fleft__container {
    border-right: 1px solid var(--grisClaro);
    padding-left: 8rem;
    padding-right: 3rem;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    margin-left: 1rem;
}

.fleft__title {
    display: inline-block;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-titles);
    margin-bottom: 2rem;
}

.fleft__subtitle {
    font-size: 1.6rem;
    margin-bottom: 4rem;
}

.fleft__group {
    position: relative;
    width: 100%;
    background-color: var(--color-secondary);
    border-radius: 20px;
    height: 5rem;
    padding: 1rem;
    box-shadow: 0 24px 48px -15px #d2d8d8;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleft__mail-icon {
    display: inline-block;
    margin-left: 1rem;
    font-size: 2rem;
}

.fleft__form-control {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    height: auto;
    border: none;
    outline: none;
    color: var(--color-titles);
    margin-left: 1rem;
    flex: 1;
}

.fleft__btn {
    cursor: pointer;
    border: none;
    outline: none;
    height: 4.2rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 16px;
    padding: 0.5rem 2rem;
    transition: all 300ms ease-in-out;
}

.fleft__btn:hover {
    background-color: var(--color-banner);
}

.footer__fright {
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
}

.footer__widget {
    padding: 1rem;
    margin-bottom: 1rem;
    flex-basis: 15%;
}

.footer__widget--25 {
    flex-basis: 30%;
}

.footer__widget--1 {
    padding-left: 2rem
}

.widget__title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-titles);
    margin-bottom: 2.3rem;
}

.widget__link {
    font-size: 1.6rem;
    padding: 0.5rem 0;
    display: inline-block;
    transition: all 300ms linear;
}

.widget__link:hover {
    color: var(--color-banner);
}

/*Footer final*/
.footer__bottom {
    display: flex;
    font-size: 1.6rem;
    border-top: 1px solid var(--grisClaro);
    padding: 2.5rem 0;

}

.footer__copyright {
    flex-basis: 50%;
    display: flex;
    justify-content: end;
}

.footer__copyright>a {
    display: inline;
}

.footer__languages {
    flex-basis: 71%;
    padding-left: 1rem;

}

.languages__flink {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0;

    color: var(--color-text-body);
}

.languages__title {
    padding-bottom: 1rem;
    font-weight: 500;
}

.languages__lang {
    transition: all 300ms ease-in-out;
}

.languages__lang:hover {
    color: var(--color-banner);
}

/*Navegación Responsive*/
.navbar__mobile-btn {
    display: block;
}

.mobile-btn__wrap {
    height: 5rem;
    width: 5rem;
    background-color: var(--color-primary);
    border: none;
    border-radius: 3.2rem;
    transition: all 300ms ease-in-out;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-btn__line {
    width: 2rem;
    height: 0.2rem;
    background-color: var(--color-secondary);
    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;
}

.menu-mobile {
    visibility: hidden;
    opacity: 0;

    position: fixed;
    top: 0;
    left: -300px;
    z-index: 10;
    width: 30rem;
    height: 100%;
    background-color: var(--color-secondary);
    padding: 3rem 1rem;
    padding-top: 0;
    box-shadow: 0px 0px 85px rgba(0, 0, 0, 0.5);
    overflow-y: auto;

    transition: all 500ms ease-in-out;
}

.menu-mobile--show {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.menu-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 1rem;
    padding: 2rem 0rem;
    border-bottom: 1px solid var(--color-hover-dark);
}

.menu-mobile__container-logo {
    width: 15rem;
}

.menu-mobile__link-logo {
    width: 15rem;
}

.menu-mobile__close {
    background-color: transparent;
    height: 3rem;
    width: 3rem;
    border: 2px solid var(--grisClaro);
    border-radius: 1rem;
    color: var(--color-text-body);
    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(--grisClaro);
    margin: 0 1rem;
}

.menu-mobile__link {
    position: relative;
    height: 5rem;
    line-height: 5rem;
    color: var(--color-text-body);
    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-mobile__icon {
    font-size: 1.4rem;
}

.menu-mobile__submenu-mobile {
    display: block;
    visibility: visible;
    opacity: 1;

    min-width: 100%;
    padding: 0;
    padding-bottom: 1rem;
}

.submenu-mobile__link {
    display: none;
    text-decoration: none;

    position: relative;
    padding: 0.7rem 1rem;
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--color-text-body);
}

/*Estilos boton modo oscuro*/
.switcher {
    position: fixed;
    top: 15rem;
    left: 0;
    background-color: var(--color-primary);
    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-secondary);
    font-size: 1.8rem;
    height: 4rem;
    width: 4rem;
    line-height: 3.6rem;
}

.switcher__icon-dark{
    display: none;
}

/* Definir las animaciones */
/* Inicialmente, el elemento está oculto y desplazado */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 660ms ease, transform 1000ms cubic-bezier(0, 0, 0.1, 1);
  }
  
  /* Estado visible al aplicar la clase adicional */
.animate-visible {
    opacity: 1;
    transform: translateY(0);
  }
 @keyframes aparecer {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
 }
.ocultar{
    opacity: 0;
}

.animar{
    animation: aparecer 1.3s;
}
   /* terminan animaciones */