*{
    font-family: 'Poppins', sans-serif;
}

body.lightboxEnabled {
    overflow: hidden;
}

.gris{
    background-color: #d9d9d9;
}

html{
    scroll-behavior: smooth;
}

h2{
    font-weight: 700;
    font-size: 64px;
}

h3{
    font-weight: 700;
    font-size: 36px;
}

h4{
    font-weight: 600;
    font-size: 32px;
}

h5{
    font-weight: 500;
    font-size: 25px;
}

.h5-regular{
    font-weight: 400;
    font-size: 25px;
}

.h5-peq-regular{
    font-weight: 400;
    font-size: 22px;
}

p{
    font-size: 20px;
    font-weight: 400;
}

.semi{
    font-weight: 600;
}

.sub-amarillo{
    color: #ff9100;
}


.boton{
    background-color: #FF9100;
    border-radius: 32px;
    color: #d9d9d9;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid #d9d9d9;
}

.scroll{
    background-color: #FF9100;
    border-radius: 32px;
    font-weight: 600;
    font-size: 24px;
    text-decoration: none;
    color: #d9d9d9;
} 


.boton:hover{
    background-color: #d9d9d9;
    border-radius: 32px;
    color: #FF9100;
    font-weight: 600;
    font-size: 20px;
    border: 2px solid #FF9100;
}

.boton:active{
    background-color: #d9d9d9;
    border-radius: 32px;
    color: #FF9100;
    font-weight: 600;
    font-size: 20px;
    border: 2px solid #FF9100;
}

.scroll:hover{
    background-color: #d9d9d9;
    border-radius: 32px;
    color: #FF9100;
    font-weight: 600;
    font-size: 24px;
}

.scroll:active{
    background-color: #d9d9d9;
    border-radius: 32px;
    color: #FF9100;
    font-weight: 600;
    font-size: 24px;
}

/*nav*/
.navbar{
    background-color: #000B30;
}

.navbar-toggler {
    border: none;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("/iconos/menu-h.svg");
    width: 30px;
    height: 30px;
}
.navbar-toggler:focus{
    box-shadow: none;
}

.navbar a{
    color: #d9d9d9;
    font-size: 20px;
    font-weight: 600;
}


.home img{
    width: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 10px;
}


.navbar a:hover{
    color: #FF9100;
}


.nav-link.active {
    color: #FF9100 !important;
}

.navbar a:focus,
.navbar a:active {
    outline: none;
    box-shadow: none;
    color: #FF9100 !important;
}

.nav-link a:focus,
.nav-link a:active {
    outline: none;
    box-shadow: none;
    color: #FF9100  !important;
}
.nav-item a:focus,
.nav-item a:active {
    outline: none;
    box-shadow: none;
    color: #FF9100 !important;
}



.dropdown-menu {
    background-color: #d9d9d9;
    border: none;
    border-top-left-radius: 0%;
    border-top-right-radius: 0%;
    
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: #FF9100 !important;
    color: #fff !important; /* opcional, para asegurar contraste */
}

.dropdown-item.active{
    background-color: #FF9100;
}


.dropdown-menu a {
    color: #272727;
    font-weight: 500;
}

/*inicio*/

/*sección hero*/
.hero {
    height: 100vh;
    background-image: url(/imagenes/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-logo {
    width: 50rem; /* Ajusta según necesites */
}

/*seccion sobre nosotros*/
.sobre-nosotros{
    color: #d9d9d9;
    /*height: 97vh;*/
    background-color: #000B30;
}

.boton-nosotros{
    background-color: #FF9100;
    border-radius: 32px;
    color: #d9d9d9;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}


.boton-nosotros:hover{
    background-color: #d9d9d9;
    border-radius: 32px;
    color: #FF9100;
    font-weight: 600;
    font-size: 20px;
}

.boton-nosotros:active{
    background-color: #d9d9d9;
    border-radius: 32px;
    color: #FF9100;
    font-weight: 600;
    font-size: 20px;
}



/*destinos*/
.nuestros-destinos{
    color: #272727;
    /*height: 90vh;
    min-height: 50rem;*/
    background-color: #d9d9d9;
}


/*cards*/
.parent{
	display: grid;
	grid-template-rows: repeat(9, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	width: 100%;
	/*height: 650px;*/
    height: 43rem;
}

.naturales, .naturales-prot, .pueblos, .ciudades{
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* color semitransparente */
    backdrop-filter: blur(3px);    /* efecto de blur solo al fondo */
    opacity: 0;
    transition: opacity;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.overlay h5 {
    color: #d9d9d9;
    z-index: 1;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.naturales:hover .overlay,
.naturales-prot:hover .overlay,
.pueblos:hover .overlay,
.ciudades:hover .overlay{
    opacity: 1;
}


.naturales:hover .overlay h5,
.naturales-prot:hover .overlay h5,
.pueblos:hover .overlay h5,
.ciudades:hover .overlay h5{
    opacity: 1;
    transform: translateY(0);
}


.parent div:hover{
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .7);
}

.pueblos img,
.ciudades img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.naturales img,
.naturales-prot img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.pueblos{
	grid-area: 4 / 1 / 10 / 2;
    border-radius: 16px;
}

.naturales{
	grid-area: 1 / 1 / 4 / 2;
    border-radius: 16px;
}

.ciudades{
	grid-area: 1 / 2 / 7 / 3;
    border-radius: 16px;
}

.naturales-prot{
	grid-area: 7 / 2 / 10 / 3;
    border-radius: 16px;
}

/*tours y paquetes*/
.nuestros-tours{
    /*height: 100vh;
    min-height: 40rem;*/
    background-color: #d9d9d9;
}

.parent-t {
    position: relative;
    border-radius: 16px;
    height: 30vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.parent-t img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* overlay específico para tours */
.overlay-t {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    pointer-events: none;
}

.overlay-t h5 {
    color: white;
    margin: 0;
    z-index: 2;
    backdrop-filter: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* hover behavior */
.parent-t:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .7);
}

.parent-t:hover .overlay-t {
    opacity: 1;
}

.parent-t:hover .overlay-t h5 {
    opacity: 1;
    transform: translateY(0);
}

/*testimonios*/
.nuestros-testim{
    /*height: 100vh;
    min-height: 20rem;*/
    background-color: #d9d9d9;
}

.video video{
    height: 100%;
    width: 100%;
    border-radius: 16px;
}

/*consultoria*/
.nuestra-consultoria{
    /*height: 90vh;
    min-height: 45rem;*/
    background-color: #d9d9d9;
}

.nuestra-consultoria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}


/*contacto*/
.contacto{
    color: #d9d9d9;
    height: 100vh;
    background-color: #000B30;
}

.contacto a{
    color: #d9d9d9;
    text-decoration: none;
}

.contacto a:hover{
    color: #FF9100;
}

.contacto a:active{
    color: #FF9100;
}

.redes{
    width: 90px;
    height: auto;
}

.redes :hover{
    transform: scale(1.2);
}

.redes :active{
    transform: scale(1.2);
}

.redes-cont{
    width: 70px;
    height: auto;
}


/*footer*/
footer{
    background-color: #000821;
}

footer img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer h5{
    color: #d9d9d9;
    font-size: 25px;
    font-weight: 500;
}

.footer-list{
    color: #d9d9d9;
}

.footer-list li + li {
    margin-top: 0.5rem;
}
.footer-list a {
    text-decoration: none;
    color: #d9d9d9;
    font-size: 20px;
    font-weight: 400;
}
.footer-list a:hover {
    color: #FF9100; 
}
.footer-list a:active {
    color: #FF9100; 
}



/*Página nosotros*/
/*info nosotros*/
.info-nosotros{
    color: #272727;
    /*height: 100vh;*/
    background-color: #d9d9d9;
}

.info-nosotros img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/*mision-vision*/
.mision-vision{
    color: #272727;
    /*height: 60vh;*/
    background-color: #d9d9d9;
}

.mision-vision img {
    width: 20%;
}

/*valoress*/
.valores{
    color: #272727;
    /*height: 90vh;*/
    background-color: #d9d9d9;
}

/*aliados*/
.aliados{
    color: #272727;
    /*height: 60vh;*/
    background-color: #d9d9d9;
}

.arriba img {
    width: 80%;
    height: auto;
}

.abajo img {
    width: 100%;
    height: auto;
}

                                                                                    /*PAGINA DESTINOS*/
                                                                                    /*scrolls*/
.menu-scrolls{
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 205px;
    transform: translateY(-120px);
    z-index: 3;
}

/*menu scroll ciudades también funciona con areas naturales PROTEGIDAS*/
.menu-scrolls-ciudades{
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 205px;
    transform: translateY(-120px);
    z-index: 3;
}


                                                                    /*scrolls pueblos*/
#tlalpujahua {
    scroll-margin-top: 184px;
}
#oro {
    scroll-margin-top: 184px;
}
#angangueo {
    scroll-margin-top: 185px;
}
#patzcuaro {
    scroll-margin-top: 184px;
}
#bravo {
    scroll-margin-top: 184px;
}

                                                                    /*scrolls ciudades*/
#morelia{
    scroll-margin-top: 184px;
}
#san-miguel {
    scroll-margin-top: 184px;
}

                                                                    /*scrolls areas naturales*/
#luciernagas{
    scroll-margin-top: 184px;
}
#laguna-larga {
    scroll-margin-top: 184px;
}
#paricutin {
    scroll-margin-top: 184px;
}

                                                                    /*scrolls areas naturales protegidas*/
#monarca {
    scroll-margin-top: 184px;
}
#uruapan {
    scroll-margin-top: 184px;
}

/*separadores*/
.separador-destino-inicial,
.separador-destino {
    color: #d9d9d9;
    height: 14rem;
    position: relative;
    overflow: hidden;
}

.separador-destino-inicial {
    margin-top: -100px;
}

                                                    /*Pueblos mágicos*/
.hero-pueblos{
    color: #d9d9d9;
    height: 100vh;
    /*height: 67rem;*/
    background-image: url(/imagenes/pueblos/heroish-pueblos.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}


                /* Tlalpujahua*/
.bg-tlalpujahua {
    background-image: url('/imagenes/pueblos/tlalpujahua/banner-tlalpu.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.bg-tlalpujahua h3 {
    z-index: 2;
}
/* PARALLAX MEJORADO**
.bg-tlalpujahua-img {
    background-image: url('/imagenes/pueblos/tlalpujahua/banner-tlalpu.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    transform: translateY(-25%);
    z-index: 1;
    will-change: transform;
}

.bg-tlalpujahua {
    position: relative;
    width: 100%;
    height: 14rem;
    z-index: 2;
}

.bg-tlalpujahua h3 {
    z-index: 3;
    color: white;
}*/

/*Imagenes Tlalpujahua*/
.grid-tlalpu {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
    height: 90vh;
}

.foto-tlalpu-1 {
	grid-area: 1 / 1 / 3 / 2;
}
.foto-tlalpu-2 {
	grid-area: 1 / 2 / 2 / 3;
}
.foto-tlalpu-3 {
	grid-area: 3 / 1 / 5 / 2;
}
.foto-tlalpu-4 {
	grid-area: 2 / 2 / 4 / 3;
}
.foto-tlalpu-5 {
	grid-area: 5 / 1 / 6 / 2;
}
.foto-tlalpu-6 {
	grid-area: 4 / 2 / 6 / 3;
}

.grid-tlalpu img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

                /* El Oro*/
.bg-oro {
    background-image: url('/imagenes/pueblos/oro/banner-oro.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.grid-oro {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	height: 70vh;
}

.grid-oro img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-oro-1{
    grid-area: 1 / 1 / 4 / 2;
}
.foto-oro-2{
    grid-area: 1 / 2 / 3 / 3;
}
.foto-oro-3{
    grid-area: 4 / 1 / 6 / 2;
}
.foto-oro-4{
    grid-area: 3 / 2 / 6 / 3;
}

                /* Angangueo*/
.bg-angan {
    background-image: url('/imagenes/pueblos/angangueo/banner-angan.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.grid-angan img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

                /*PATZCUARO*/
.bg-patz {
    background-image: url('/imagenes/pueblos/patzcuaro/banner-patz-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.grid-patz img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.grid-patz {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
    height: 110vh;
}

.foto-patz-1 {
	grid-area: 1 / 1 / 3 / 2;
}
.foto-patz-2 {
	grid-area: 1 / 2 / 2 / 3;
}
.foto-patz-3 {
	grid-area: 3 / 1 / 5 / 2;
}
.foto-patz-4 {
	grid-area: 2 / 2 / 4 / 3;
}
.foto-patz-5 {
	grid-area: 5 / 1 / 6 / 2;
}
.foto-patz-6 {
	grid-area: 4 / 2 / 6 / 3;
}

                /*VALLE DE BRAVO*/
.bg-bravo {
    background-image: url('/imagenes/pueblos/bravo/banner-bravo-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.grid-bravo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.grid-bravo {
	display: grid;
	grid-template-rows: repeat(6, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
    height: 70vh;
}

.foto-bravo-1 {
	grid-area: 1 / 1 / 4 / 2;
}
.foto-bravo-2 {
	grid-area: 1 / 2 / 3 / 3;
}
.foto-bravo-3 {
	grid-area: 4 / 1 / 7 / 2;
}
.foto-bravo-4 {
	grid-area: 3 / 2 / 5 / 3;
}
.foto-bravo-5 {
	grid-area: 5 / 2 / 7 / 3;
}


                                                    /*Ciudades Patrimonio*/

.hero-ciudades{
    color: #d9d9d9;
    height: 100vh;
    /*height: 67rem;*/
    background-image: url(/imagenes/ciudades/hero-ciudades.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.separador-destino-inicial-ciudades{
    color: #d9d9d9;
    height: 14rem;
    margin-top: -100px;
    overflow: hidden;
    position: relative;
}

                /* Morelia*/
.bg-morelia {
    background-image: url('/imagenes/ciudades/morelia/img-6.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.grid-morelia {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
    height: 105vh;
}

.grid-morelia img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-morelia-1 {
	grid-area: 1 / 1 / 3 / 2;
}
.foto-morelia-2 {
	grid-area: 1 / 2 / 2 / 3;
}
.foto-morelia-3 {
	grid-area: 3 / 1 / 5 / 2;
}
.foto-morelia-4 {
	grid-area: 2 / 2 / 4 / 3;
}
.foto-morelia-5 {
	grid-area: 5 / 1 / 6 / 2;
}
.foto-morelia-6 {
	grid-area: 4 / 2 / 6 / 3;
}

                /* San MIUGEL ALLENDE*/
.bg-san-miguel{
    background-image: url('/imagenes/ciudades/san-miguel/banner-san-miguel.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}


.grid-san-miguel {
	display: grid;
	grid-template-rows: repeat(8, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
    height: 110vh;
}

.grid-san-miguel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-san-miguel-1 {
	grid-area: 1 / 1 / 3 / 2;
}
.foto-san-miguel-2 {
	grid-area: 1 / 2 / 5 / 3;
}
.foto-san-miguel-3 {
	grid-area: 3 / 1 / 6 / 2;
}
.foto-san-miguel-4 {
	grid-area: 6 / 1 / 9 / 2;
}
.foto-san-miguel-5 {
	grid-area: 5 / 2 / 9 / 3;
}

                                                    /*AREAS NATURALES*/
.hero-naturales{
    color: #d9d9d9;
    height: 100vh;
    /*height: 67rem;*/
    background-image: url(/imagenes/naturales/hero-naturales.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.separador-destino-inicial-naturales{
    color: #d9d9d9;
    height: 14rem;
    margin-top: -100px;
    overflow: hidden;
    position: relative;
}

                /* luciernagas*/
.bg-luciernagas{
    background-image: url('/imagenes/naturales/luciernagas/banner-luciernagas.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}

.grid-luciernagas {
	display: grid;
	grid-template-rows: repeat(8, 1fr);
	grid-template-columns: 1fr;
	gap: 16px;
    height: 125vh;
}

.grid-luciernagas img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-luciernagas-1 {
	grid-area: 1 / 1 / 3 / 2;
}
.foto-luciernagas-2 {
	grid-area: 3 / 1 / 6 / 2;
}
.foto-luciernagas-3 {
	grid-area: 6 / 1 / 9 / 2;
}

                /* LAGUNA LARGA*/
.bg-laguna-larga{
    background-image: url('/imagenes/naturales/laguna-larga/banner-laguna-2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}


.grid-laguna-larga {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	height: 70vh;
}

.grid-laguna-larga img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-laguna-larga-1{
    grid-area: 1 / 1 / 4 / 2;
}
.foto-laguna-larga-2{
    grid-area: 1 / 2 / 3 / 3;
}
.foto-laguna-larga-3{
    grid-area: 4 / 1 / 6 / 2;
}
.foto-laguna-larga-4{
    grid-area: 3 / 2 / 6 / 3;
}

                /* PARICUTIN*/
.bg-paricutin{
    background-image: url('/imagenes/naturales/paricutin/banner-paricutin.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}


.grid-paricutin {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	height: 70vh;
}

.grid-paricutin img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-paricutin-1{
    grid-area: 1 / 1 / 4 / 2;
}
.foto-paricutin-2{
    grid-area: 1 / 2 / 3 / 3;
}
.foto-paricutin-3{
    grid-area: 4 / 1 / 6 / 2;
}
.foto-paricutin-4{
    grid-area: 3 / 2 / 6 / 3;
}

                                                    /*AREAS NATURALES PROTEGIDAS*/

.hero-protegidas{
    color: #d9d9d9;
    height: 100vh;
    /*height: 67rem;*/
    background-image: url(/imagenes/protegidas/naturales-prot-hero-2.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.separador-destino-inicial-protegidas{
    color: #d9d9d9;
    height: 14rem;
    margin-top: -100px;
    overflow: hidden;
    position: relative;
}

                /* Monarca*/
.bg-monarca{
    background-image: url('/imagenes/protegidas/monarca/banner-monarca-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}


.grid-monarca-chincua {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	height: 70vh;
}

.grid-monarca-chincua img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-monarca-chincua-1{
    grid-area: 1 / 1 / 4 / 2;
}
.foto-monarca-chincua-2{
    grid-area: 1 / 2 / 3 / 3;
}
.foto-monarca-chincua-3{
    grid-area: 4 / 1 / 6 / 2;
}
.foto-monarca-chincua-4{
    grid-area: 3 / 2 / 6 / 3;
}


.grid-monarca-rosario {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	height: 70vh;
}

.grid-monarca-rosario img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-monarca-rosario-1{
    grid-area: 1 / 1 / 4 / 2;
}
.foto-monarca-rosario-2{
    grid-area: 1 / 2 / 3 / 3;
}
.foto-monarca-rosario-3{
    grid-area: 4 / 1 / 6 / 2;
}
.foto-monarca-rosario-4{
    grid-area: 3 / 2 / 6 / 3;
}

.grid-monarca-herrada {
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	height: 70vh;
}

.grid-monarca-herrada img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.foto-monarca-herrada-1{
    grid-area: 1 / 1 / 4 / 2;
}
.foto-monarca-herrada-2{
    grid-area: 1 / 2 / 3 / 3;
}
.foto-monarca-herrada-3{
    grid-area: 4 / 1 / 6 / 2;
}
.foto-monarca-herrada-4{
    grid-area: 3 / 2 / 6 / 3;
}


                /* URUAPAN*/
.bg-uruapan{
    background-image: url('/imagenes/protegidas/uruapan/banner-uru-2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 14rem;
}


/*tours*/
.tours-inicio{
    color: #d9d9d9;
    background-image: url(/imagenes/banner-monarca.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-imgs {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.info-tour-tlalpu{
    color: #272727;
    /*height: 100vh;*/
    background-color: #d9d9d9;
}

.info-tour-comb{
    color: #272727;
    /*height: 100vh;*/
    background-color: #d9d9d9;
}

.info-tour-mon{
    color: #272727;
    /*height: 100vh;*/
    background-color: #d9d9d9;
}

.info-tour-esp{
    color: #272727;
    /*height: 100vh;*/
    background-color: #d9d9d9;
}

.separador-tours{
    color: #d9d9d9;
    height: 15vh;
    background-image: url(/imagenes/banner-monarca.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.separador-tours-final{
    color: #d9d9d9;
    background-color: #FF9100;
}

/*PAGINA PAQUETES*/
/*paquetes*/
.info-paquetes{
    color: #272727;
    /*height: 45vh;*/
    background-color: #d9d9d9;
}

.tres-pasos{
    color: #272727;
    /*height: 85vh;*/
    background-color: #d9d9d9;
}

.tres-pasos img{
    width: 90%;
    object-fit: cover;
    border-radius: 16px;
}


/*PAGINA Consultoria*/
/*Consultoria*/
.consultoria-inicio{
    color: #d9d9d9;
    height: 100vh;
    background-image: url(/imagenes/consultoria/hero-consultoria.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.info-consultoria{
    color: #272727;
    /*height: 100vh;*/
    background-color: #d9d9d9;
}

.semblanza-img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}


.redes-consultoria a{
    color: #000B30;
    text-decoration: none;
}

.redes-consultoria a:hover{
    color: #FF9100;
}
.redes-consultoria a:active{
    color: #FF9100;
}

.redes-consultoria img{
    width: 70px;
    height: auto;
}

/*recon-logros*/
.recon-logros{
    color: #d9d9d9;
    /*height: 100vh;*/
    background-color: #000B30;
}

.arriba-recon img {
    height: 10rem;
}

.aifa img{
    width: 15rem;
}

.lucerna img {
    width: 70%;
}

.uaeh img {
    width: 80%;
    margin-bottom: -2px;
}

.unimo img{
    height: 80%;
}

.umb img{
    width: 60%;
}

.univim img{
    width: 70%;
    margin-bottom: -3%;
}

/*metodologia*/
.metodologia{
    color: #272727;
    /*height: 70vh;*/
    background-color: #d9d9d9;
}

.metodologia img{
    height: 8rem;
}

/*servicios*/
.servicios{
    color: #272727;
    /*height: 90vh;*/
    background-color: #d9d9d9;
}

.servicios img{
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .dropdown-menu {
        background-color: #000B30;
        border: none;
        border-top-left-radius: 0%;
        border-top-right-radius: 0%;
    }
    
    .dropdown-menu a {
        color: #d9d9d9;
    }

    h2{
        font-size: 35px;
    }

    h3{
        font-size: 28px;
    }

    h4{
        font-weight: 600;
        font-size: 25px;
    }

    h5{
        font-weight: 500;
        font-size: 20px;
    }
    
    .h5-regular{
        font-weight: 400;
        font-size: 20px;
    }
    

    .h5-peq-regular{
        font-size: 19px;
    }

    p{
        font-size: 19px;
        font-weight: 400;
    }

    .texto-cont p{
        font-size: 17px;
    }

    .boton, .boton:hover, .boton:active{
        font-size: 18px;
    }

    .scroll, .scroll:hover, .scroll:active{
        font-size: 15px;
    }

    .univim img{
        height: auto;
        width: 100%;
    }
}


@media (max-width: 992px) {

    /*inicio*/
/*
    .nuestros-destinos{
        height: 80vh;
    }

    .nuestros-tours{
        height: 80vh;
    }
*/
    .parent{
        height: 25rem;
    }

    .parent-t{
        height: 20rem;
    }
/*
    .nuestros-testim{
        height: 50vh;
    }

    .nuestra-consultoria{
        height: 90vh;
    }
*/

    /*nosotros*/
    /*
    .valores{
        height: 100vh;
    }*/

    /*consultoría*/
    /*
    .info-consultoria{
        height: 150vh;
    }

    .recon-logros{
        height: 130vh;
    }

    .metodologia{
        height: 85vh;
    }

    .servicios{
        height: 80vh;
    }*/
}

@media (min-width: 992px) {
    .dropdown-menu.custom-shadow {
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2); /* igual que shadow-lg */
    }
}

@media (max-width: 768px) {

    /*nosotros*/
/*
    .info-nosotros{
        height: 130vh;
    }

    .mision-vision{
        height: 90vh;
        min-height: 35rem;
    }

    .valores{
        height: 120vh;
    }

    .aliados{
        height: 80vh;
    }*/



    /*consultoría*/
    /*
    .info-consultoria{
        height: 170vh;
    }

    .recon-logros{
        height: 150vh;
    }
*/
    .aifa img{
        margin-left: -9px;
        width: 120%;
    }
/*
    .servicios{
        height: 230vh;
    }
*/
}

@media (max-width: 576px) {

    /*inicio destinos*/
/*
    .nuestros-destinos{
        height: 100vh;
    }
*/
    .parent{
        height: 25rem;
    }
    

    .overlay {
        opacity: 1 !important;
        pointer-events: auto;
    }

    .overlay h5 {
        opacity: 1;
        transform: translateY(0);
    }

    .parent div:hover {
        transform: none;
        box-shadow: none;
    }

    .nuestros-tours h4{
        text-align: left;
    }

    .parent-t {
        height: 60vw;
        padding: 10px;
    }

    .overlay-t {
        opacity: 1 !important;
        pointer-events: auto;
    }

    .overlay-t h5 {
        opacity: 1;
        transform: translateY(0);
    }

    .overlay-t div:hover {
        transform: none;
        box-shadow: none;
    }

    .parent-t:hover {
        transform: none;
        box-shadow: none;
    }


    .aliados h4{
        text-align: center;
    }

    footer{
        text-align: center;
    }

    .footer-list{
        list-style: none;
    }


    .separador-tours{
        text-align: center;
        min-height: 7rem;
    }

    .iconos-redes{
        justify-content: center;
        text-align: center;
    }

    /*PAQUETES*/

    .tres-pasos img{
        width: 100%;
    }
    

    .redes-consultoria a{
        justify-content: center;
    }


    /*logos*/
    .arriba-recon img {
        width: 50%;
    }

    .aifa img{
        margin-left: -9px;
        width: 120%;
    }

    .uaeh img {
        width: 100%;
        margin-bottom: -2px;
    }
    /*
    .metodologia{
        height: 90vh;
        min-height: 50rem;
    }

    .servicios{
        height: 190vh;
        min-height: 90rem;
    }
*/

    /*DESTINOS*/
    .menu-scrolls{
        top: 245px;
        transform: translateY(-160px);
    }

    .menu-scrolls a{
        font-weight: 600;
        font-size: 15px;
    }

    #tlalpujahua {
        scroll-margin-top: 220px;
    }
    #oro {
        scroll-margin-top: 220px;
    }
    #angangueo {
        scroll-margin-top: 220px;
    }
    #patzcuaro {
        scroll-margin-top: 220px;
    }
    #bravo {
        scroll-margin-top: 220px;
    }
    #morelia {
        scroll-margin-top: 160px;
    }
    #san-miguel {
        scroll-margin-top: 160px;
    }
    #luciernagas {
        scroll-margin-top: 220px;
    }
    #laguna-larga {
        scroll-margin-top: 220px;
    }
    #paricutin {
        scroll-margin-top: 220px;
    }


    /*SEPARADORES VERSION MOVIL*/
    .bg-tlalpujahua, .bg-oro, .bg-angan, .bg-patz, .bg-bravo, .bg-luciernagas, .bg-laguna-larga, .bg-paricutin, .bg-monarca, .bg-uruapan, .bg-morelia, .bg-san-miguel{
        background-attachment: scroll;
        width: 100%;
    }

    /*PUEBLOS MAGICOS*/
    .separador-destino-inicial {
        color: #d9d9d9;
        height: 20vh;
        margin-top: -141px;
    }

    .separador-destino{
        color: #d9d9d9;
        height: 20vh;
    }

    /*CIUDADES PATRIMONIO*/
    .menu-scrolls-ciudades{
        top: 205px;
        transform: translateY(-120px);
    }

    .menu-scrolls-ciudades a{
        font-weight: 600;
        font-size: 15px;
    }

    .grid-morelia{
        height: 87vh;
    }

    .grid-san-miguel{
        height: 87vh;
    }

    .separador-destino-inicial-ciudades {
        color: #d9d9d9;
        height: 20vh;
        margin-top: -70px;
    }

    /*AREAS NATURALES*/
    .separador-destino-inicial-naturales{
        height: 20vh;
        margin-top: -141px;
    }

    /*AREAS PROTEGIDAS*/
    .separador-destino-inicial-protegidas{
        height: 20vh;
        margin-top: -93px;
    }
}



