/*variables*/
:root {
  --mx-width: 1320px;

  /* Colores principales */
  --color-primary: #0d1b2a;           /* Azul oscuro profesional */
  --color-secundary: #ffffff;         /* Blanco puro para contrastes */
  --color-banner: #1b263b;            /* Azul más claro para banners */
  --color-bg_btn: #e0c097;            /* Dorado suave para botones */
  
  /* Tipografía y cuerpo */
  --color-title: #d4af37;             /* Dorado elegante para títulos */
  --color-subtitle: #829ab1;          /* Azul grisáceo para subtítulos */
  --color-text-body: #4a4e69;         /* Gris violeta muy profesional */
  --color-text-description: #6c757d;  /* Gris medio para textos secundarios */
  
  /* Fondos */
  --color-bg-services: #f9f9f9;       /* Blanco grisáceo para tarjetas */
  --color-bg-projects: #f1f3f5;       /* Fondo neutro para secciones */
  --color-bg-dark: #212529;           /* Fondo oscuro profesional */
  --color-hover-dark: #343a40;        /* Hover más claro que el dark */
  
  /* Bordes */
  --color-borders: #dee2e6;           /* Gris claro para separaciones */
}


/*estilos generales*/
html {
    font-size: 10px;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-body);

}

/*estructura*/
.layout {
    width: 100%;
    min-width: 1200px;
    height: 100%;
}

/*estilos menu navegacion y cabecera de la web*/
.layout__menu {
    width: 100%;
    padding: 3.5rem 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%);

}

.navbar__logo {
    width: 300px;
}

.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-text-body);
    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: var(--color-primary);
}

.nav__title::before {
    content: "";
    height: 0.2rem;
    width: 0;
    background-color: var(--color-primary);
    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: 4px;
    background-color: var(--color-secundary);
    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__item:nth-child(4) {
    transition-delay: 400ms;
}

.submenu__item:nth-child(5) {
    transition-delay: 500ms;
}

.submenu__item:nth-child(6) {
    transition-delay: 600ms;
}

.submenu__title {
    display: block;
    position: relative;
    font-size: 1.5rem;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 0.7rem 1.5rem;
    transition: all 300ms ease;
}

.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:hover {
    color: var(--color-primary);
}

/*tachar los elementos del submenu*/
.submenu__title::after {
    content: "";
    height: 0.1rem;
    width: 0;
    position: absolute;
    top: 75%;
    left: 0;
    background-color: var(--color-primary);
    transition: all 300ms ease-in-out;
}

.submenu__title:hover::after {
    width: 100%;
}

/*estilos para el banner*/
.layout__banner {
    position: relative;
    min-height: 60rem;
    margin: 0 3rem;
    padding-right: 0;
    padding-left: 10rem;
    padding-top: 15rem;
    padding-bottom: 20rem;
    border-radius: 6rem;
    overflow: hidden;
    background-color: var(--color-title);
    z-index: 1;
}

.banner__content {
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 1.5rem;
    z-index: 3;
}

.banner__title {
    font-size: 8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 10rem 0rem 5rem 22rem;
}

.lema{
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--color-primary);
    margin: -22rem 0rem 5rem 30rem;

}

.lema-2{
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--color-primary);
    margin: -6rem 0rem 5rem 30rem;
}

.banner__btn {
    display: inline-block;
    padding: 2.5rem 4.5rem;
    margin: 7rem 0 5rem 22rem;
    border-radius: 20px;
    background-color: var(--color-secundary);
    color: var(--color-primary);
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    box-shadow: 0px 45px 80px -25px var(--color-primary);
    transition: all 300ms ease-in-out;
}

.banner__btn:hover {
    background-color: var(--color-primary);
    color: var(--color-secundary);
}

.shapes__item {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}


.shapes__item--shape1 {
    position: absolute; /* clave para posicionar bien */
    bottom: 0;
    right: 1%; /* separada un poco del borde */
    text-align: right;

    animation-name: showRight;
    animation-duration: 1s;

    transform: translateY(15%); /* da un efecto suave desde abajo */
}

.shapes__item--shape1 img {
    max-height: 100vh; /* la hace grande sin pasarse del alto de pantalla */
    height: auto;
}


@keyframes showRight {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.shapes__item--shape2 {
    bottom: 0;
    left: 4%;
    top: 30%;
    text-align: left;

    animation-name: showLeft;
    animation-duration: 1s;

    transform: translateY(10%);
    transform: translateX(-30%);
}

@keyframes showLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}


/*estilos seccion servicios*/
.layout__services {
    position: relative;
    /* Ajustado para que no sea tan excesivo el margen en pantallas pequeñas */
    margin: 14rem 5% 8rem 5%; 
    z-index: 1;
}

.services__grid {
    max-width: 1320px;
    margin: 0 auto;
}

/* Título a la izquierda */
.services__header {
    margin-bottom: 4rem;
    text-align: left; /* Título alineado a la izquierda */
}

.services__subtitle,
.visas__subtitle,
.reviews__subtile,
.news__subtitle{
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.services__title,
.visas__title,
.stats__title,
.reviews__title{
    font-size: 6.7rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
}

/* Ajuste de la lista para 4 elementos */
.services__list {
    display: grid;
    /* Crea 4 columnas iguales */
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    align-items: start; /* Importante para el efecto escalonado */
}

.services__service {
    /* Quitamos el width: 90% para que el grid controle el tamaño */
    padding: 6rem 3rem; /* Ajustado para que quepan mejor los 4 */
    border-radius: 3rem;
    background: linear-gradient(180deg, #f8f8f8, rgba(255, 255, 255, 0));
    background-color: var(--color-secundary);
    border: 1px solid rgba(248, 248, 248, 0.3);
    transition: all 300ms ease-in-out;
    
    display: flex;
    flex-direction: column; /* Cambiado a columna para mejor lectura en 4 cards */
    height: 100%;
}

.services__service:hover {
    transform: translateY(-5px);
}

.service__container-img {
    margin-bottom: 2.5rem;
    max-width: 6.5rem;
}

.service__content {
    flex: 1;
}

.service__title {
    color: var(--color-primary);
    font-size: 2.2rem; /* Un poco más pequeño para que no rompa en 4 columnas */
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2rem;
}

/* ESCALONADO DE LAS TARJETAS (Ahora para 4) */
/* Si quieres el efecto de escalera: */
.services__list article:nth-child(1) { margin-top: 15rem; } /* Más baja */
.services__list article:nth-child(2) { margin-top: 10rem; }
.services__list article:nth-child(3) { margin-top: 5rem; }
.services__list article:nth-child(4) { margin-top: 0rem; }  /* Más alta */

/* Formas decorativas (Shapes) */
.service-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.service-shapes--shape1 { top: -50px; right: 5%; }
.service-shapes--shape2 { top: 10%; left: 50%; }
.service-shapes--shape3 { top: 40%; left: 5%; }

/* Responsivo: Si la pantalla es pequeña, se ponen de a 2 o de a 1 */
@media (max-width: 1200px) {
    .services__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .services__list article { margin-top: 0 !important; } /* Quitamos escalonado en móvil */
}

@media (max-width: 768px) {
    .services__list {
        grid-template-columns: 1fr;
    }
    .services__title {
        font-size: 4rem;
    }
}

.service__more:hover,
.service__title:hover{
    color: var(--color-title);
}



/*Estilos de proyectos*/
.layout__visas{
    position: relative;
    background-color: var(--color-bg-projects);
    padding: 14rem 10rem;
    z-index: 1;
}

.visas__grid{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.visas__header{
    margin-bottom: 4rem;
}

.visas__subtitle{
    text-transform: capitalize;
}

.visas__categories{
    display: flex;
    flex-direction: row;
    gap: 7rem;
    margin-bottom: 5.5rem;
}

.categories__item {
    position: relative;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.8rem 0;
    transition: all 150ms ease-in-out;
}

.categories__item--active,
.categories__item:hover{
    border-bottom: 2px solid var(--color-primary);
}

.visas__all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.visas__visa {
  width: 70%;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--color-secundary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.visas__visa:hover .visa__img {
  transform: scale(1.08);
}

.visas__container-img {
  width: 100%;
}

.visa__img {
  width: 100%;
  display: block;
  transition: all 800ms ease-in-out;
}

.visa__content {
  padding: 2rem 1.5rem;
}


.visa__title{
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
}

.visa__title:hover{
    color: var(--color-title);
}

.visa__tags{
    font-size: 1.7rem;
}

.visa-shapes__item{
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.visa-shapes--shape1{
    top: 4%;
    right: 11%;
}

.visa-shapes--shape2{
    top: 8%;
    right: 15%;
}

.visa-shapes--shape3{
    top: 38%;
    left: 5%;
}

/*Estilos para estadisticas*/
.layout__stats{
    background-color: var(--color-bg-dark);
    padding: 14rem 11rem;
}

.stats__container{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.stats__header{
    text-align: center;
}

.stats__title{
    font-size: 6.4rem;
    color: var(--color-secundary);
    margin-bottom: 3rem;
}

.stats__subtitle{
    color: var(--color-title);
}

.stats__description{
    font-size: 1.8rem;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 4rem;
    color: var(--color-text-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{
    margin: 0 auto;
    text-align: center;
}

.stat__count{
    display: inline-block;
    font-size: 6.4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-title);
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat__title{
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-secundary);
}

/* Estilos para las reviews */
.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__swiper {
    position: relative;
    padding: 2rem 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white; /* opcional si quieres tarjetas blancas */
    border-radius: 1rem;
    padding: 5rem 3rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

/* Oculta las flechas en móviles si quieres */
@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.review__company {
    display: inline-block;
    margin-bottom: 3rem;
}

.review__description {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-body);
    margin-bottom: 4rem;
}

.review__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.author__container-img {
    border-radius: 3.5rem;
    overflow: hidden;
    width: 7rem;
    height: 7rem;
}

.author__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__content {
    flex: 1;
}

.author__name {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--color-bg-dark);
    margin-bottom: 0.3rem;
}

.author__description {
    display: block;
    font-size: 1.5rem;
    color: var(--color-text-description);
    opacity: 0.7;
}

/* Swiper controles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-text-body);
}

.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
}

/* Elementos decorativos */
.review-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 140px;
    right: 40%;
}

/*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__title{
    color: var(--color-secundary);
    margin-bottom: 3rem;
}

.news__subtitle{
    color: var(--color-title);
}

.news__description{
    text-align: center;
    margin: 0 auto;
}

.news__list{
    display: flex;
}

.news__new{
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 2rem;
    padding-left: 0;
    border-top: 1px solid var(--color-text-body);
    border-bottom: 1px solid var(--color-text-body);
    transition: all 300ms ease-in-out;
}

.news__new:hover{
    border-top-color: var(--color-primary);
}

.news__new:last-child{
    border-left: 1px solid var(--color-text-body);
    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;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-secundary);
    margin-bottom: 2rem;
    transition: all 300ms ease-in-out;
}

.new__title:hover,
.new__more:hover{
    color: var(--color-title);
}

.new__description{
    font-size: 1.7rem;
    font-weight: normal;
    color: var(--color-text-description);
    margin-bottom: 3rem;
}

.new__more{
    display: inline-block;
    font-weight: 700;
    color: #e3e6e9;
    font-size: 1.7;
    transition: all 300ms ease-in-out;
}

.new__icon{
    font-size: 1.3rem;
    vertical-align: middle;
}

.new-shapes__item{
    position: absolute;
    z-index: -1;
}

.layout__news{
    background-color: var(--color-bg-dark);
    padding: 14rem 11rem;
}

.news__description{
    color: var(--color-text-description);
}

/*estilos de contacto*/
.layout__contact{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    padding-top: 14rem;
    padding-bottom: 10rem;
    
}

.layout__contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 65rem;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-title);
    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{
    display: inline-block;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.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-primary);
}

.contact__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 1.2rem 2.5rem;
    background-color: #25D366; /* Verde WhatsApp */
    color: var(--color-text-body);
    border-radius: 500px;
    font-weight: 700;
    font-size: 1.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.contact__btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

.contact__btn i {
    font-size: 1.9rem;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}



.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;
}


/*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-description);
    font-size: 3rem;
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
}

.social__link:hover > .social__img{
    color: var(--color-text-body);
}

.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{
    font-size: 1.7rem;
    margin-bottom: 4rem;
}

.fleft__group{
    position: relative;
    width: 100%;
    background-color: var(--color-secundary);
    border-radius: 20px;
    height: 7.2rem;
    padding: 1rem;
    padding-right: 5.5rem;
    box-shadow: 0 24px 48px -15px #ddd;

    display: flex;
    align-items: center;
}

.fleft__mail-icon{
    display: inline-block;
    margin-left: 2rem;
}

.fleft__form-control{
    position: relative;
    display: block;
    padding: 0.5rem 1.5rem;
    height: auto;
    border: none;
    outline: none;
    color: var(--color-title);
    margin-left: 1rem;
    flex: 1;
}

.fleft__btn{
    height: 5.2rem;
    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;
}

.fleft__btn:hover{
    background-color: var(--color-banner);
}

.footer__fright{
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
}

.footer__widget{
    margin-bottom: 8rem;
}

.footer__widget--50{
    flex-basis: 50%;
}

.footer__widget--25{
    flex-basis: 25%;
}

.widget__title{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-title);
    margin-bottom: 3rem;
}

.widget__Link{
    font-size: 1.7rem;
    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;
}

.footer__copyright{
    flex-basis: 50%;
}

.copyright__text{
    display: inline-block;
    color: var(--color-text-description);
}

.copyright__text > a { 
    display: inline;
}

.footer__Links{
    flex-basis: 50%;
}

.footer__flinks{
    display: flex;
    justify-content: flex-end;
    gap: 3.5rem;
}

.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-text-description);
    border-radius: 50%;
    position: absolute;
    top: 46%;
    left: -15%;
}

/* ======= MENÚ HAMBURGUESA ======= */
.navbar__mobile-btn {
  display: none;
}

.mobile-btn__wrap {
  height: 5rem;
  width: 5rem;
  background-color: var(--color-text-body);
  border: none;
  border-radius: 3.2rem;
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-btn__line {
  width: 2rem;
  height: 0.2rem;
  background-color: var(--color-secundary);
  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 {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 30rem;
  height: 100%;
  background-color: var(--color-secundary);
  padding: 5rem 1rem 1rem 1rem;
  box-shadow: 0px 0px 85px -35px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  transition: all 300ms ease-in-out;
}

.menu-mobile--active {
  display: block;
  visibility: visible;
  opacity: 1;
}

.menu-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem;
  padding: 2rem 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-text-description);
  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(--color-borders);
  margin: 0 1rem;
}

.menu-mobile__link {
  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 {
  display: none;
  padding-bottom: 1rem;
}

.submenu-mobile__item {
  border-bottom: 1px solid var(--color-borders);
  padding: 0 1rem;
}

.submenu-mobile__link {
  display: block;
  padding: 0.7rem 0;
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--color-text-body);
}


/* ======= ARCO DE LUCES DE NAVIDAD ======= */
.christmas-lights-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -25px;
    text-align: center;
    overflow: hidden;
  }

  .christmas-lights-gif {
    width: 75%;
    max-width: 900px;
    min-width: 400px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
  .lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 2;
    margin: -15px 0 0 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
    top: 0;
    left: 0;
  }

  .lightrope li {
    position: relative;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    width: 12px;
    height: 28px;
    border-radius: 50%;
    margin: 20px;
    display: inline-block;
    background: #00f7a5;
    box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
    -webkit-animation-name: flash-1;
    animation-name: flash-1;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }

  .lightrope li:nth-child(2n+1) {
    background: aqua;
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.5);
    -webkit-animation-name: flash-2;
    animation-name: flash-2;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
  }

  .lightrope li:nth-child(4n+2) {
    background: #f70094;
    box-shadow: 0px 4.6666666667px 24px 3px #f70094;
    -webkit-animation-name: flash-3;
    animation-name: flash-3;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
  }

  .lightrope li:nth-child(odd) {
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
  }

  .lightrope li:nth-child(3n+1) {
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
  }

  .lightrope li:before {
    content: "";
    position: absolute;
    background: #222;
    width: 10px;
    height: 9.3333333333px;
    border-radius: 3px;
    top: -4.6666666667px;
    left: 1px;
  }

  .lightrope li:after {
    content: "";
    top: -14px;
    left: 9px;
    position: absolute;
    width: 52px;
    height: 18.6666666667px;
    border-bottom: solid #222 2px;
    border-radius: 50%;
  }

  .lightrope li:last-child:after {
    content: none;
  }

  .lightrope li:first-child {
    margin-left: -40px;
  }

  @-webkit-keyframes flash-1 {
    0%, 100% {
      background: #00f7a5;
      box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
    }
    50% {
      background: rgba(0, 247, 165, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
    }
  }

  @keyframes flash-1 {
    0%, 100% {
      background: #00f7a5;
      box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
    }
    50% {
      background: rgba(0, 247, 165, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
    }
  }

  @-webkit-keyframes flash-2 {
    0%, 100% {
      background: #69c8ff;
      box-shadow: 0px 4.6666666667px 24px 3px #69c8ff;
    }
    50% {
      background: rgba(105, 200, 255, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(105, 200, 255, 0.2);
    }
  }

  @keyframes flash-2 {
    0%, 100% {
      background: #69c8ff;
      box-shadow: 0px 4.6666666667px 24px 3px #69c8ff;
    }
    50% {
      background: rgba(105, 200, 255, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(105, 200, 255, 0.2);
    }
  }

  @-webkit-keyframes flash-3 {
    0%, 100% {
      background: #ff5e5e;
      box-shadow: 0px 4.6666666667px 24px 3px #ff5e5e;
    }
    50% {
      background: rgba(247, 0, 148, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(255, 94, 94, 0.2);
    }
  }

  @keyframes flash-3 {
    0%, 100% {
      background: #ff5e5e;
      box-shadow: 0px 4.6666666667px 24px 3px #ff5e5e;
    }
    50% {
      background: rgba(255, 94, 94, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(255, 94, 94, 0.2);
    }
  }

  /* ======= EFECTO DE NIEVE ======= */
  .snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  .snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.8;
  }

  .snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
  }

  .snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
  }

  .snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 11s;
    animation-delay: 2s;
  }

  .snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 13s;
    animation-delay: 0.5s;
  }

  .snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 10s;
    animation-delay: 1.5s;
  }

  .snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 12s;
    animation-delay: 0.3s;
  }

  .snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 11s;
    animation-delay: 2.5s;
  }

  .snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 13s;
    animation-delay: 0.8s;
  }

  .snowflake:nth-child(9) {
    left: 15%;
    animation-duration: 10s;
    animation-delay: 1.2s;
  }

  .snowflake:nth-child(10) {
    left: 25%;
    animation-duration: 12s;
    animation-delay: 0.6s;
  }

  .snowflake:nth-child(11) {
    left: 35%;
    animation-duration: 11s;
    animation-delay: 2s;
  }

  .snowflake:nth-child(12) {
    left: 45%;
    animation-duration: 13s;
    animation-delay: 0.4s;
  }

  .snowflake:nth-child(13) {
    left: 55%;
    animation-duration: 10s;
    animation-delay: 1.8s;
  }

  .snowflake:nth-child(14) {
    left: 65%;
    animation-duration: 12s;
    animation-delay: 0.2s;
  }

  .snowflake:nth-child(15) {
    left: 75%;
    animation-duration: 11s;
    animation-delay: 2.2s;
  }

  .snowflake:nth-child(16) {
    left: 85%;
    animation-duration: 13s;
    animation-delay: 0.7s;
  }

  .snowflake:nth-child(17) {
    left: 5%;
    animation-duration: 10s;
    animation-delay: 1.4s;
  }

  .snowflake:nth-child(18) {
    left: 95%;
    animation-duration: 12s;
    animation-delay: 0.9s;
  }

  .snowflake:nth-child(19) {
    left: 90%;
    animation-duration: 11s;
    animation-delay: 2.8s;
  }

  .snowflake:nth-child(20) {
    left: 3%;
    animation-duration: 13s;
    animation-delay: 1.1s;
  }

  .snowflake:nth-child(21) {
    left: 7%;
    animation-duration: 10s;
    animation-delay: 0.5s;
  }

  .snowflake:nth-child(22) {
    left: 12%;
    animation-duration: 12s;
    animation-delay: 2.3s;
  }

  .snowflake:nth-child(23) {
    left: 18%;
    animation-duration: 11s;
    animation-delay: 0.7s;
  }

  .snowflake:nth-child(24) {
    left: 22%;
    animation-duration: 13s;
    animation-delay: 1.6s;
  }

  .snowflake:nth-child(25) {
    left: 28%;
    animation-duration: 10s;
    animation-delay: 0.3s;
  }

  .snowflake:nth-child(26) {
    left: 33%;
    animation-duration: 12s;
    animation-delay: 2.1s;
  }

  .snowflake:nth-child(27) {
    left: 38%;
    animation-duration: 11s;
    animation-delay: 0.9s;
  }

  .snowflake:nth-child(28) {
    left: 43%;
    animation-duration: 13s;
    animation-delay: 1.3s;
  }

  .snowflake:nth-child(29) {
    left: 48%;
    animation-duration: 10s;
    animation-delay: 0.1s;
  }

  .snowflake:nth-child(30) {
    left: 53%;
    animation-duration: 12s;
    animation-delay: 2.6s;
  }

  @keyframes snowfall {
    0% {
      transform: translateY(0) translateX(0) rotate(0deg);
      opacity: 0.8;
    }
    100% {
      transform: translateY(100vh) translateX(50px) rotate(360deg);
      opacity: 0;
    }
  }

  .snowflake::before {
    content: "❄";
  }



