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

/* ==================================
   INFORMACIÓN ADICIONAL DE NONO
================================== */

.informacion-adicional-nono {
    padding: 110px 8%;
    background-color: #ffffff;
}

.encabezado-informacion-adicional {
    max-width: 760px;
    margin-bottom: 65px;
}

.encabezado-informacion-adicional span {
    display: block;
    margin-bottom: 12px;
    color: #35ac62;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.encabezado-informacion-adicional h2 {
    margin-bottom: 18px;
    color: #10552e;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.encabezado-informacion-adicional p {
    max-width: 680px;
    color: #4f5d54;
    font-size: 1.05rem;
    line-height: 1.8;
}

.lista-informacion-nono {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.bloque-informativo-nono {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 65px;
}

.bloque-informativo-nono.bloque-inverso {
    grid-template-columns: 0.9fr 1.1fr;
}

.bloque-inverso .imagen-informativa-nono {
    order: 2;
}

.bloque-inverso .texto-informativo-nono {
    order: 1;
}

.imagen-informativa-nono {
    min-height: 430px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(16, 85, 46, 0.16);
}

.imagen-informativa-nono img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bloque-informativo-nono:hover img {
    transform: scale(1.05);
}

.texto-informativo-nono span {
    display: block;
    margin-bottom: 12px;
    color: #35ac62;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.texto-informativo-nono h3 {
    margin-bottom: 20px;
    color: #10552e;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.texto-informativo-nono p {
    color: #4f5d54;
    font-size: 1rem;
    line-height: 1.9;
}
:root {
    --verde-principal: #2D6A4F;
    --verde-secundario: #40916C;
    --verde-claro: #74C69D;
    --verde-musgo: #1B4332;
    --verde-bosque: #081C15;
    --texto-secundario: #D8F3DC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--verde-bosque);
    color: white;
    overflow-x: hidden;
}

@media (max-width: 900px) {
    .bloque-informativo-nono,
    .bloque-informativo-nono.bloque-inverso {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .bloque-inverso .imagen-informativa-nono,
    .bloque-inverso .texto-informativo-nono {
        order: initial;
    }
}

@media (max-width: 600px) {
    .informacion-adicional-nono {
        padding: 80px 6%;
    }

    .lista-informacion-nono {
        gap: 60px;
    }

    .imagen-informativa-nono,
    .imagen-informativa-nono img {
        min-height: 300px;
    }

    .imagen-informativa-nono {
        border-radius: 22px;
    }
}
/* NAVBAR */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 28, 21, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(116,198,157,0.45));
}

.menu {
    display: flex;
    align-items: center;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: white;
    margin-left: 35px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 8px;
    transition: 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--verde-claro);
    transition: 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: var(--verde-claro);
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* HERO TITLE ANIMADO */

.hero-title {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 1000;
    line-height: 0.68;
    letter-spacing: 10px;
    text-transform: uppercase;
    cursor: default;
}

.title-nono,
.title-turismo {
    display: block;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-nono {
    color: white;
    font-size: clamp(90px, 13vw, 190px);
    animation: revealTop 1.3s ease forwards;
}

.title-turismo {
    color: #74C69D;
    font-size: clamp(70px, 11vw, 170px);
    animation: revealBottom 1.3s ease 0.35s forwards;
}
html {
    scroll-behavior: smooth;
}

#mas-sobre-nono {
    scroll-margin-top: 100px;
}
@keyframes revealTop {
    0% {
        opacity: 0;
        transform: translateY(-80px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes revealBottom {
    0% {
        opacity: 0;
        transform: translateY(80px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
/* ==========================
   VIDEO DE FONDO DEL HOME
========================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.hero-background-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;
}

/* Oscurece el video para que el texto sea visible */

.hero-video-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 14, 0.78) 0%,
            rgba(3, 20, 14, 0.42) 48%,
            rgba(3, 20, 14, 0.22) 100%
        );
}

/* Mantiene el contenido sobre el video */

.hero-content {
    position: relative;
    z-index: 2;
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layer {
    position: absolute;
    inset: 0;
}

.layer-back {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.layer-back video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.layer-mid {
    background:
        radial-gradient(circle at 20% 30%, rgba(116,198,157,.15), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(64,145,108,.15), transparent 35%);
    z-index: 2;
}

.layer-front {
    background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1200px;
    padding: 20px;
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 1000;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: 4px;
}

.title-white {
    display: block;
    color: #ffffff;
    font-size: clamp(90px, 15vw, 190px);
}

.title-green {
    display: block;
    color: #00C98B;
    font-size: clamp(60px, 14vw, 175px);
}
.hero-quote {

    margin-top: 35px;

    font-size: clamp(24px, 3vw, 42px);

    color: white;

    font-family: "Segoe Script", cursive;

    font-style: italic;

    text-shadow: 0 8px 22px rgba(0,0,0,.55);

    animation: quoteFloat 4s ease-in-out infinite;
}

@keyframes quoteFloat {

    0% {
        transform:
            translateY(0px)
            rotate(-0.5deg);
    }

    50% {
        transform:
            translateY(-10px)
            rotate(0.5deg);
    }

    100% {
        transform:
            translateY(0px)
            rotate(-0.5deg);
    }

}

.hero-quote {

    animation:
        quoteFloat 4s ease-in-out infinite;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,.15));
}
/* ==================================
   IMÁGENES AMPLIABLES
================================== */

.imagen-ampliable {
    cursor: zoom-in;
}

/* Fondo del visor */

.visor-imagen {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background-color: rgba(0, 15, 9, 0.92);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

/* Estado abierto */

.visor-imagen.abierto {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Contenedor de imagen y descripción */

.contenido-visor {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 1200px;
    max-height: 90vh;
    margin: 0;

    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.visor-imagen.abierto .contenido-visor {
    transform: scale(1);
}

/* Imagen ampliada */

.contenido-visor img {
    display: block;

    max-width: 100%;
    max-height: 80vh;

    border-radius: 18px;

    object-fit: contain;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

/* Descripción inferior */

.contenido-visor figcaption {
    margin-top: 18px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

/* Botón cerrar */

.cerrar-visor {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    color: #ffffff;
    background-color: rgba(16, 85, 46, 0.55);

    font-size: 2rem;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.cerrar-visor:hover {
    background-color: #35ac62;
    transform: rotate(90deg);
}

/* Evita mover la página cuando el visor está abierto */

body.visor-abierto {
    overflow: hidden;
}

@media (max-width: 600px) {
    .visor-imagen {
        padding: 65px 15px 25px;
    }

    .cerrar-visor {
        top: 15px;
        right: 15px;

        width: 44px;
        height: 44px;

        font-size: 1.7rem;
    }

    .contenido-visor img {
        max-height: 75vh;
        border-radius: 12px;
    }

    .contenido-visor figcaption {
        font-size: 0.85rem;
    }
}
/* Imagen que se puede ampliar */

.imagen-ampliable {
    cursor: pointer;
}

/* Fondo oscuro del visor */

.visor-imagen {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background-color: rgba(0, 0, 0, 0.9);
}

/* Cuando el visor está abierto */

.visor-imagen.abierto {
    display: flex;
}

/* Imagen ampliada */

.visor-imagen img {
    max-width: 90%;
    max-height: 85vh;

    border-radius: 16px;
    object-fit: contain;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Botón cerrar */

.cerrar-visor {
    position: absolute;
    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    color: white;
    background-color: #35ac62;

    font-size: 30px;
    cursor: pointer;
}

.cerrar-visor:hover {
    background-color: #10552e;
}
.hero-quote {
    margin-top: 35px;
    font-size: clamp(24px, 3vw, 42px);
    color: white;
    font-family: "Segoe Script", cursive;
    font-style: italic;
    text-shadow: 0 8px 22px rgba(0,0,0,.55);
}
html{
    scroll-behavior: smooth;
}
.scroll-indicator {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
}

.scroll-indicator p {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 5px;
}

.scroll-indicator span {
    display: block;
    font-size: 28px;
    color: #ffffff;
    animation: arrowFloat 1.6s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: .5;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

.eyebrow {
    color: var(--texto-secundario);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
 
@font-face {

    font-family: "Montserrat";

    src: url("../fonts/Montserrat-VariableFont_wght.ttf")
         format("truetype");

    font-weight: 100 900;

    font-style: normal;
}
.hero h1 {

    font-family: "Montserrat", sans-serif;

    font-size: clamp(106px, 20vw, 200px);

    font-weight: 1000;

    letter-spacing: 0.0px;

    line-height: 1;
}


.hero h2 {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 300;
}

.hero-buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    margin: 10px;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--verde-principal);
    color: white;
}

.btn-secondary {
    border: 1px solid var(--verde-claro);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(116,198,157,.25);
}

/* ==========================
   SCROLL INDICATOR
========================== */

.scroll-indicator {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 100;

    cursor: pointer;
}

.mouse-outline {

    width: 42px;
    height: 70px;

    border: 3px solid rgba(255,255,255,.9);

    border-radius: 30px;

    display: flex;

    justify-content: center;
    align-items: center;

    backdrop-filter: blur(4px);
}

.arrow-down {

    font-size: 34px;

    color: white;

    animation: arrowFloat 1.8s infinite ease-in-out;
}

@keyframes arrowFloat {

    0% {
        transform: translateY(-6px);
        opacity: 0.4;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }

    100% {
        transform: translateY(-6px);
        opacity: 0.4;
    }

}

/* ==========================
   CONOCE NONO - ESTILO OSCURO E INMERSIVO
========================== */

.conoce-section {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 0;

    background: #03140e;

    display: flex;
    align-items: stretch;
}
/* CONTENEDOR GENERAL */

.conoce-container {
    width: 100%;
    max-width: none;
    min-height: 100svh;

    margin: 0;

    display: grid;
    grid-template-columns: 60% 40%;

    background: #03140e;

    border-radius: 0;
    overflow: hidden;

    box-shadow: none;
}

/* ==========================
   CARRUSEL
========================== */
.conoce-carousel {
    position: relative;

    width: 100%;
    height: 100svh;
    min-height: 100svh;

    overflow: hidden;
    cursor: grab;
}

.conoce-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* IMÁGENES */

.conoce-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;
    transform: scale(1.08);

transition:
    opacity 1.8s ease,
    transform 9s ease;

}

.conoce-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* DESVANECIDO FUERTE HACIA LA DERECHA */

.conoce-carousel::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 4;

    background:
        linear-gradient(
            to right,
            rgba(3, 20, 14, 0) 0%,
            rgba(3, 20, 14, 0.05) 35%,
            rgba(3, 20, 14, 0.45) 60%,
            rgba(3, 20, 14, 0.85) 82%,
            #03140e 100%
        );

    pointer-events: none;
}

/* SOMBRA INFERIOR DE LA IMAGEN */

.conoce-carousel::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.48),
            transparent 45%
        );

    pointer-events: none;
}

/* ==========================
   FLECHAS DEL CARRUSEL
========================== */

.carousel-arrow {
    position: absolute;
    top: 50%;

    z-index: 8;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(3, 20, 14, 0.48);
    color: #ffffff;

    font-size: 38px;
    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.carousel-arrow:hover {
    background: #8acb63;
    color: #03140e;

    transform:
        translateY(-50%)
        scale(1.1);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* CENTRAR EL SÍMBOLO DENTRO DEL BOTÓN */

.carousel-arrow span {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}

/* CORRECCIÓN VISUAL DE LAS FLECHAS */

.carousel-arrow.prev span {
    transform: translate(-1px, -2px);
}

.carousel-arrow.next span {
    transform: translate(1px, -2px);
}

/* ==========================
   PUNTOS DEL CARRUSEL
========================== */

.carousel-dots {
    position: absolute;

    left: 50%;
    bottom: 35px;

    z-index: 8;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 11px;
}

.dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.dot.active {
    width: 40px;

    border-radius: 20px;

    background: #8acb63;
}

/* ==========================
   CONTENIDO DERECHO
========================== */

.conoce-content {
    position: relative;

    padding: 85px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(116, 198, 157, 0.10),
            transparent 35%
        ),
        #03140e;

    overflow: hidden;
}

/* TEXTURA TOPOGRÁFICA SUTIL */

.conoce-content::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-radial-gradient(
            circle at 95% 5%,
            rgba(138, 203, 99, 0.13) 0,
            rgba(138, 203, 99, 0.13) 1px,
            transparent 2px,
            transparent 20px
        );

    opacity: 0.18;

    pointer-events: none;
}

.conoce-content {
    position: relative;

    width: 100%;
    min-height: 100svh;
    box-sizing: border-box;

    padding: 70px clamp(35px, 5vw, 90px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(116, 198, 157, 0.10),
            transparent 35%
        ),
        #03140e;

    overflow: hidden;
}

/* ETIQUETA CONOCE NONO */

.conoce-content .section-label {
    color: #8acb63;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 5px;
    text-transform: uppercase;

    margin-bottom: 28px;
}

.conoce-content .section-label::after {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin-top: 18px;

    background: #8acb63;
}


/* TÍTULO MÁS PEQUEÑO Y DELGADO */

.conoce-content h2 {
    width: 100%;
    max-width: 560px;

    margin: 0 0 30px;

    color: #ffffff;

    font-size: clamp(38px, 3.8vw, 62px);
    font-weight: 700;

    line-height: 1.05;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.conoce-content h2 span {
    display: block;
    color: #8acb63;
    font-weight: 600;
}


/* DESCRIPCIÓN */

.conoce-content p {
    max-width: 520px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 18px;
    line-height: 1.85;
}

/* ==========================
   BOTÓN DESCUBRIR ACTIVIDADES
========================== */

.conoce-link {
    width: fit-content;

    margin-top: 40px;
    padding: 16px 30px;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #8acb63,
            #5da94e
        );

    color: #ffffff;

    text-decoration: none;
    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 14px 35px rgba(93, 169, 78, 0.28);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.conoce-link:hover {
    transform: translateY(-5px);

    box-shadow:
        0 22px 45px rgba(93, 169, 78, 0.40);
}

.conoce-link span {
    transition: transform 0.3s ease;
}

.conoce-link:hover span {
    transform: translateX(8px);
}

/* ANIMACIÓN AL CAMBIAR EL TEXTO */

.content-change {
    animation: contentChange 0.5s ease;
}

@keyframes contentChange {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1000px) {

    .conoce-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .conoce-carousel {
        height: 65svh;
        min-height: 500px;
    }

    .conoce-content {
        min-height: auto;
        padding: 75px 45px;
    }

    .conoce-carousel::after {
        background:
            linear-gradient(
                to bottom,
                rgba(3, 20, 14, 0) 25%,
                rgba(3, 20, 14, 0.65) 75%,
                #03140e 100%
            );
    }
}

@media (max-width: 600px) {

    .conoce-carousel {
        height: 55svh;
        min-height: 380px;
    }

    .conoce-content {
        padding: 55px 25px 70px;
    }

    .conoce-content h2 {
        font-size: clamp(40px, 13vw, 58px);
        letter-spacing: -2px;
    }

    .conoce-content p {
        font-size: 16px;
    }
}


/* ==========================
   ACTIVIDADES INMERSIVAS
========================== */

.experiencias-section {
    position: relative;

    width: 100%;
    min-height: 100svh;

    padding: 70px 6%;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(3, 20, 14, 0.55),
            rgba(3, 20, 14, 0.78)
        ),
        url("img/fondo-actividades.jpg") center / cover no-repeat;

    color: #ffffff;

    overflow: hidden;
}

/* CAPA OSCURA */

.experiencias-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(65, 120, 72, 0.08),
            transparent 45%
        ),
        linear-gradient(
            to right,
            rgba(2, 17, 12, 0.82) 0%,
            rgba(2, 17, 12, 0.42) 45%,
            rgba(2, 17, 12, 0.62) 100%
        );

    pointer-events: none;
}

/* CONTENEDOR */

.experiencias-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(700px, 2fr);
    gap: 55px;

    align-items: center;
}

/* ==========================
   COLUMNA IZQUIERDA
========================== */

.experiencias-intro {
    max-width: 450px;
}

.experiencias-label {
    margin-bottom: 26px;

    color: #8acb63;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1px;
}

.experiencias-intro h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 3.5vw, 60px);
    font-weight: 650;

    line-height: 1.04;
    letter-spacing: -2px;
}

.experiencias-intro h2 span {
    display: block;
    color: #8acb63;
}

.experiencias-line {
    width: 70px;
    height: 2px;

    margin: 30px 0;

    background: #8acb63;
}

.experiencias-description {
    max-width: 390px;

    margin: 0 0 36px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.8;
}

/* BOTÓN PRINCIPAL */

/* VIDEO DENTRO DE LAS TARJETAS */

.experiencia-media {
    position: relative;
    width: 100%;
    height: 430px;
    min-height: 430px;
    flex-shrink: 0;
    overflow: hidden;
}

.experiencia-preview-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);

    transition:
        transform 0.8s ease,
        filter 0.4s ease;
}

.experiencia-card:hover .experiencia-preview-video {
    transform: scale(1.1);
    filter: brightness(1.08);
}

.experiencias-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.experiencia-card {
    position: relative;
    min-height: 650px;
    display: grid;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            rgba(9, 43, 31, 0.38),
            rgba(2, 19, 13, 0.96)
        );

    border: 1px solid rgba(138, 203, 99, 0.36);
    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.experiencia-card:hover {
    transform: translateY(-14px);

    border-color: rgba(138, 203, 99, 0.85);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.48),
        0 0 32px rgba(138, 203, 99, 0.16);
}

/* NÚMERO */

.experiencia-number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 8;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(3, 20, 14, 0.72);
    border: 1px solid rgba(138, 203, 99, 0.24);

    color: #8acb63;

    font-family: "Montserrat", sans-serif;
    font-size: 25px;
   
      
    backdrop-filter: blur(12px);
}

/* IMAGEN */


.experiencia-media {
    position: relative;
    width: 100%;
    height: 300px;
    min-height: 300px;
    flex-shrink: 0;

    overflow: hidden;
}

.experiencia-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.03);

    transition: transform 1s ease;
}


.experiencia-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(2, 17, 12, 0.04) 20%,
            rgba(2, 17, 12, 0.32) 65%,
            #03140e 100%
        );
}

/* PLAY */

.experiencia-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 6;

    width: 72px;
    height: 72px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(138, 203, 99, 0.85);

    background: rgba(3, 20, 14, 0.46);
    color: #ffffff;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transform: translate(-50%, -50%);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.experiencia-play span {
    display: block;
    transform: translateX(2px);

    font-size: 24px;
}

.experiencia-play:hover {
    background: #8acb63;
    color: #03140e;

    transform:
        translate(-50%, -50%)
        scale(1.12);
}

/* TEXTO DE LA TARJETA */

.experiencia-content {
    padding: 24px 34px 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    gap: 12px;
}


.experiencia-content {
    padding-top: 24px;
}
.experiencia-content h3 {
    margin: 0;

   font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 400;

    color: #ffffff;
}


.experiencia-content p {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.65;
}

.experiencia-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 15px;
margin-top: 10px;
    color: #9ee56f;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.6px;
}

.experiencia-link span {
    transition: transform 0.3s ease;
}

.experiencia-link:hover span {
    transform: translateX(7px);
}

/* ==========================
   MODAL DE VIDEO
========================== */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    padding: 30px;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.9);

    backdrop-filter: blur(14px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: min(1000px, 92vw);

    border-radius: 22px;
    overflow: hidden;

    background: #000000;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.65);
}

.video-modal video {
    display: block;

    width: 100%;
    max-height: 82vh;

    background: #000000;
}

.video-modal-close {
    position: absolute;
    top: 24px;
    right: 32px;

    width: 52px;
    height: 52px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(3, 20, 14, 0.75);
    color: #ffffff;

    font-size: 34px;

    cursor: pointer;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1250px) {

    .experiencias-section {
        padding: 80px 4%;
    }

    .experiencias-container {
        grid-template-columns: 1fr;
    }

    .experiencias-intro {
        max-width: 760px;
    }

    .experiencias-intro h2 span {
        display: inline;
    }

    .experiencia-card {
        min-height: 570px;
    }
}

@media (max-width: 900px) {

    .experiencias-cards {
        grid-template-columns: 1fr;
    }

   .experiencia-card {
    height: auto;
    min-height: 0;
}

    .experiencia-media {
        height: 360px;
    }
}

@media (max-width: 600px) {

    .experiencias-section {
        padding: 70px 18px;
    }

    .experiencias-intro h2 {
        font-size: 45px;
    }

    .experiencias-description {
        font-size: 16px;
    }

    .experiencia-card {
        min-height: 520px;
        border-radius: 20px;
    }

    .experiencia-media {
        height: 320px;
    }

    .experiencia-content {
        padding: 0 22px 24px;
    }

    .experiencia-content h3 {
        font-size: 27px;
    }
}



/* ==========================
   EMPRENDIMIENTOS
========================== */

.emprendimientos-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    padding: 100px 5% 80px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(91, 189, 108, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(138, 203, 99, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #03140e 0%,
            #061d15 100%
        );

    overflow: hidden;
}

.emprendimientos-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-radial-gradient(
            circle at 85% 10%,
            rgba(138, 203, 99, 0.08) 0,
            rgba(138, 203, 99, 0.08) 1px,
            transparent 2px,
            transparent 22px
        );

    opacity: 0.16;
    pointer-events: none;
}

/* ==========================
   ENCABEZADO
========================== */

.emprendimientos-header {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin-bottom: 32px;
}

.emprendimientos-label {
    margin-bottom: 14px;

    color: #8acb63;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.emprendimientos-header h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 74px);
    font-weight: 700;

    line-height: 1.05;
    letter-spacing: -2px;
}

.emprendimientos-header h2 span {
    color: #8acb63;
}

.emprendimientos-description {
    max-width: 850px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.7;
}

/* ==========================
   BOTONES DE CATEGORÍAS
========================== */

.emprendimientos-categorias {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 30px;
}

.categoria-btn {
    padding: 13px 22px;

    border: 1px solid rgba(138, 203, 99, 0.28);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.categoria-btn:hover {
    transform: translateY(-3px);
    border-color: #8acb63;
}

.categoria-btn.active {
    background: linear-gradient(
        135deg,
        #9ee56f,
        #5bbd6c
    );

    color: #03140e;
    border-color: transparent;

    box-shadow:
        0 10px 25px rgba(91, 189, 108, 0.25);
}

/* ==========================
   MAPA + TARJETA LATERAL
========================== */

.emprendimientos-main {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);

    gap: 28px;
    align-items: stretch;
}

/* CONTENEDOR DEL MAPA */

.mapa-wrapper {
    position: relative;

    width: 100%;
    min-height: 620px;

    border: 1px solid rgba(138, 203, 99, 0.22);
    border-radius: 28px;

    overflow: hidden;

    background: #0b2118;

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.38);
}

/* IMPORTANTE: ESTE ID DEBE COINCIDIR CON EL HTML */

#map {
    width: 100%;
    height: 620px;

    z-index: 1;

    filter:
        saturate(0.9)
        contrast(1.02);
}

/* ==========================
   TARJETA DE INFORMACIÓN
========================== */

.emprendimiento-info-card {
    position: relative;

    min-height: 620px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(138, 203, 99, 0.28);
    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(21, 55, 40, 0.92),
            rgba(5, 24, 17, 0.98)
        );

    backdrop-filter: blur(16px);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(138, 203, 99, 0.10);
}

.emprendimiento-info-card img {
    width: 100%;
    height: 245px;

    display: block;

    object-fit: cover;
    object-position: center;
}

.info-content {
    flex: 1;

    padding: 26px;

    display: flex;
    flex-direction: column;
}

.info-badge {
    width: fit-content;

    margin-bottom: 16px;
    padding: 7px 13px;

    border-radius: 50px;

    background: rgba(138, 203, 99, 0.12);
    color: #9ee56f;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
}

.info-subtitle {
    margin-bottom: 18px;

    color: #8acb63;

    font-size: 15px;
    font-weight: 600;
}

.info-text {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 16px;
    line-height: 1.7;
}

.info-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-bottom: 24px;
}

.info-features span {
    padding: 9px 13px;

    border: 1px solid rgba(138, 203, 99, 0.18);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;
}

.info-btn {
    width: 100%;

    margin-top: auto;
    padding: 16px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #9ee56f,
        #5bbd6c
    );

    color: #03140e;

    text-decoration: none;
    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 14px 30px rgba(91, 189, 108, 0.23);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.info-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(91, 189, 108, 0.34);
}

.close-info {
    position: absolute;
    top: 14px;
    right: 14px;

    z-index: 5;

    width: 38px;
    height: 38px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);
    color: #03140e;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

/* ==========================
   EMPRENDIMIENTOS DESTACADOS
========================== */

.emprendimientos-destacados {
    position: relative;
    z-index: 2;

    margin-top: 36px;
}

.destacados-head {
    margin-bottom: 20px;
}

.destacados-head h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 30px;
    font-weight: 600;
}

.destacados-head p {
    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 15px;
}

.destacados-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.destacado-card {
    position: relative;

    height: 245px;

    overflow: hidden;

    border: 1px solid rgba(138, 203, 99, 0.20);
    border-radius: 22px;

    background: #0a2118;

    cursor: pointer;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.destacado-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.destacado-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3, 20, 14, 0.98) 0%,
            rgba(3, 20, 14, 0.42) 58%,
            rgba(3, 20, 14, 0.08) 100%
        );
}

.destacado-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;

    z-index: 2;
}

.destacado-content h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 600;
}

.destacado-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 14px;
}

.destacado-tag {
    display: inline-block;

    margin-bottom: 10px;
    padding: 6px 11px;

    border-radius: 50px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.destacado-card:hover {
    transform: translateY(-10px);

    border-color: #8acb63;

    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.38),
        0 0 26px rgba(138, 203, 99, 0.15);
}

.destacado-card:hover img {
    transform: scale(1.09);
}

/* COLORES DE LAS ETIQUETAS */

.destacado-tag.gastronomia {
    background: rgba(255, 195, 80, 0.18);
    color: #ffd16b;
}

.destacado-tag.alojamiento {
    background: rgba(120, 165, 255, 0.18);
    color: #a9c5ff;
}

.destacado-tag.experiencia {
    background: rgba(205, 120, 255, 0.18);
    color: #dfadff;
}

.destacado-tag.servicios {
    background: rgba(95, 220, 235, 0.18);
    color: #9aeaf3;
}

/* ANIMACIONES */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */

.footer {
    background: #06110A;
    padding: 60px 20px;
    text-align: center;
}

.footer-logo {
    width: auto;
    height: 95px;
    object-fit: contain;
    display: block;
    margin-bottom: 22px;
}
.footer-columna p {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.footer-columna a {
    margin-bottom: 18px;
}

.footer p {
    color: var(--texto-secundario);
    margin: 8px 0;
}

/* RESPONSIVE */

@media(max-width: 1000px) {
    .actividades-grid,
    .conoce-container {
        grid-template-columns: 1fr;
    }

    .video-box {
        height: 340px;
    }

    .main-photo-card {
        width: 100%;
    }
}

@media(max-width: 900px) {
    .navbar {
        padding: 20px 25px;
    }

    .menu {
        position: absolute;
        top: 95px;
        right: 25px;
        width: 260px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        background: rgba(8,28,21,0.96);
        border: 1px solid rgba(116,198,157,0.25);
        border-radius: 22px;
        backdrop-filter: blur(14px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: 0.35s ease;
    }

    .menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu a {
        margin-left: 0;
    }

    .menu-btn {
        display: block;
    }
}

@media(max-width: 600px) {
    .conoce-section,
    .actividades-section,
    .emprendimientos-section {
        padding: 90px 24px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .floating-photo-card {
        width: 135px;
        height: 185px;
        right: 12px;
        top: 100px;
    }

    .conoce-next-btn {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .video-box {
        height: 250px;
    }

    .mapa-container {
        height: 680px;
    }

    .mapa-card-info {
        top: auto;
        bottom: 25px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 50px);
    }

    .mapa-card-info.active {
        transform: translateX(-50%) translateY(-8px);
    }
}
/* ====================================
   EMPRENDIMIENTOS LOCALES
==================================== */

.seccion-emprendimientos {
    min-height: 100vh;
    padding: 100px 6%;
    background-color: #f2f8f4;
    font-family: "Montserrat", sans-serif;
}

.encabezado-emprendimientos {
    max-width: 850px;
    margin-bottom: 40px;
}

.etiqueta-emprendimientos {
    display: block;
    margin-bottom: 15px;
    color: #35ac62;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.encabezado-emprendimientos h2 {
    margin-bottom: 20px;
    color: #10552e;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.encabezado-emprendimientos h2 span {
    display: block;
    color: #35ac62;
}

.encabezado-emprendimientos p {
    max-width: 720px;
    color: #536158;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Filtros */

.filtros-emprendimientos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.filtro-emprendimiento {
    padding: 13px 25px;
    border: 1px solid #10552e;
    border-radius: 30px;

    color: #10552e;
    background-color: transparent;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.filtro-emprendimiento:hover,
.filtro-emprendimiento.activo {
    color: #ffffff;
    background-color: #10552e;
    transform: translateY(-2px);
}

/* Distribución */

.contenido-emprendimientos {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 30px;
    align-items: start;
}

/* Mapa */

.mapa-nono {
    width: 100%;
    height: 650px;
    min-height: 650px;

    overflow: hidden;
    border: 4px solid #ffffff;
    border-radius: 28px;

    background-color: #dce8df;

    box-shadow: 0 18px 45px rgba(16, 85, 46, 0.15);
}

/* Lista de tarjetas */

.lista-tarjetas-emprendimientos {
    display: flex;
    flex-direction: column;
    gap: 20px;

    max-height: 650px;
    padding-right: 10px;

    overflow-y: auto;
}

/* Tarjeta */

.tarjeta-emprendimiento {
    flex-shrink: 0;
    height: auto;
    min-height: auto;

    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;

    color: #ffffff;
    background-color: #10552e;

    box-shadow: 0 15px 35px rgba(16, 85, 46, 0.18);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.tarjeta-emprendimiento img {
    display: block;
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    object-fit: cover;
}

.contenido-tarjeta-emprendimiento {
    display: flex;
    flex-direction: column;

    height: auto;
    padding: 24px;
}

.tarjeta-emprendimiento h3 {
    margin-bottom: 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
}

.tarjeta-emprendimiento p {
    display: block;

    height: auto;
    max-height: none;
    margin-bottom: 18px;

    overflow: visible;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.9rem;
    line-height: 1.65;

}

@media (max-width: 600px) {
    .lista-tarjetas-emprendimientos {
        max-height: none;
        padding-right: 0;
        overflow-y: visible;
    }

    .tarjeta-emprendimiento {
        height: auto;
    }

    .tarjeta-emprendimiento img {
        height: 210px;
    }

    .contenido-tarjeta-emprendimiento {
        padding: 22px;
    }
}

.boton-ubicacion {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 20px;
    border-radius: 25px;

    color: #10552e;
    background-color: #ffffff;

    font-size: 0.85rem;
    font-weight: 700;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.boton-ubicacion:hover {
    color: #ffffff;
    background-color: #35ac62;
}

/* Marcador personalizado */

.marcador-nono {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border: 3px solid #ffffff;
    border-radius: 50%;

    color: #ffffff;
    background-color: #35ac62;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 0 0 6px rgba(53, 172, 98, 0.22),
        0 7px 18px rgba(16, 85, 46, 0.35);
}

/* ==============================
   FOOTER NONO TURISMO
============================== */

.footer-nono {
    padding: 80px 6% 30px;
    color: #ffffff;
    background-color: #10552e;
    font-family: "Montserrat", sans-serif;
}

.footer-contenedor {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.footer-logo {
    width: 160px;
    margin-bottom: 22px;
}

.footer-marca p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-columna h3 {
    margin-bottom: 20px;
    color: #8be0a9;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-columna a,
.footer-columna p {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-columna a:hover {
    color: #35ac62;
    transform: translateX(5px);
}

.footer-final {
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.footer-final p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 950px) {
    .footer-contenedor {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-nono {
        padding: 65px 6% 28px;
    }

    .footer-contenedor {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-final {
        text-align: left;
    }
}
.popup-nono {
    font-family: "Montserrat", sans-serif;
}

.popup-nono strong {
    color: #10552e;
}

/* Barra de desplazamiento */

.lista-tarjetas-emprendimientos::-webkit-scrollbar {
    width: 7px;
}

.lista-tarjetas-emprendimientos::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #dce9e0;
}

.lista-tarjetas-emprendimientos::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #35ac62;
}

/* Tablet */

@media (max-width: 950px) {
    .contenido-emprendimientos {
        grid-template-columns: 1fr;
    }

    .mapa-nono {
        height: 520px;
        min-height: 520px;
    }

    .lista-tarjetas-emprendimientos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        max-height: none;
        overflow: visible;
    }
}

/* ==============================
   BURBUJA FLOTANTE DE CLIMA
============================== */

.burbuja-clima {
    position: fixed !important;
    right: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999999 !important;

    display: flex !important;
    align-items: center;
    gap: 12px;

    min-width: 215px;
    max-width: 260px;
    padding: 14px 18px;

    border: 1px solid rgba(53, 172, 98, 0.35);
    border-radius: 24px;

    color: #ffffff;
    background-color: rgba(16, 85, 46, 0.95);

    box-shadow: 0 16px 35px rgba(16, 85, 46, 0.28);
    backdrop-filter: blur(12px);

    font-family: "Montserrat", sans-serif;
    cursor: pointer;

    transition:
        min-width 0.3s ease,
        max-width 0.3s ease,
        padding 0.3s ease,
        border-radius 0.3s ease,
        transform 0.3s ease;
}

.burbuja-clima:hover {
    transform: translateY(-50%) scale(1.03) !important;
}

.icono-clima {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border-radius: 50%;

    color: #10552e;
    background-color: #ffffff;

    font-size: 1.4rem;
}

.info-clima {
    display: flex;
    flex-direction: column;
    gap: 3px;

    overflow: hidden;
    opacity: 1;
    max-width: 170px;

    transition:
        opacity 0.25s ease,
        max-width 0.3s ease;
}

.info-clima span {
    color: #8be0a9;
    font-size: 0.75rem;
    font-weight: 700;
}

.info-clima strong {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.info-clima small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    white-space: nowrap;
}

/* Estado cerrado: solo icono */

.burbuja-clima.cerrada {
    min-width: 58px;
    max-width: 58px;
    width: 58px;
    height: 58px;

    padding: 6px;
    border-radius: 50%;
}

.burbuja-clima.cerrada .info-clima {
    max-width: 0;
    opacity: 0;
}

/* Celular */

@media (max-width: 600px) {
    .burbuja-clima {
        right: 14px !important;
        top: auto !important;
        bottom: 18px !important;
        transform: none !important;

        min-width: 190px;
        max-width: 220px;

        padding: 12px 14px;
        border-radius: 20px;
    }

    .burbuja-clima:hover {
        transform: scale(1.03) !important;
    }

    .burbuja-clima.cerrada {
        min-width: 54px;
        max-width: 54px;
        width: 54px;
        height: 54px;

        padding: 6px;
        border-radius: 50%;
    }

    .icono-clima {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .info-clima strong {
        font-size: 1.1rem;
    }

    .info-clima small {
        font-size: 0.66rem;
    }
}


/* Celular */

@media (max-width: 600px) {
    .burbuja-clima {
        right: 14px !important;
        top: auto !important;
        bottom: 18px !important;
        transform: none !important;

        min-width: 185px;
        padding: 12px 14px;
        border-radius: 20px;
    }

    .icono-clima {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .info-clima strong {
        font-size: 1.1rem;
    }

    .info-clima small {
        font-size: 0.66rem;
    }
}

/* Teléfono */

@media (max-width: 620px) {
    .seccion-emprendimientos {
        padding: 75px 5%;
    }

    .filtros-emprendimientos {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .filtro-emprendimiento {
        flex-shrink: 0;
    }

    .mapa-nono {
        height: 420px;
        min-height: 420px;
        border-radius: 20px;
    }

    .lista-tarjetas-emprendimientos {
        grid-template-columns: 1fr;
    }
}