/* Variables CSS */

/* FAMILIA 1: Apparat Normal */
@font-face {
    font-family: 'Apparat';
    src: url('../fonts/fonnts.com-Apparat_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apparat';
    src: url('../fonts/fonnts.com-Apparat_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apparat';
    src: url('../fonts/fonnts.com-Apparat_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* FAMILIA 2: Apparat SemiCondensed */
@font-face {
    font-family: 'Apparat Regular';
    src: url('../fonts/fonnts.com-Apparat_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apparat SemiCond';
    src: url('../fonts/fonnts.com-ApparatSemiCond_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apparat SemiCond';
    src: url('../fonts/fonnts.com-ApparatSemiCond_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apparat SemiCond';
    src: url('../fonts/fonnts.com-ApparatSemiCond_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



/* Aplicación de fuentes */
body {
    font-family: 'Apparat', Arial, sans-serif;
    font-weight: 300; /* Regular por defecto */
}

h1, h3, h4, h5, h6 {
    font-family: 'Apparat SemiCond', sans-serif;
}

h2 {
    font-family: 'Apparat', sans-serif;
    font-weight: 300;
}

p {
    margin-top: 0;
    margin-bottom: 0.3rem;
    font-family: 'Apparat', Arial, sans-serif;
    font-weight: 300; /* Regular por defecto */
    font-size: 15px;
}

.section h2 {
    font-family: 'Apparat', sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 4.8rem;
    letter-spacing: 10px;
    
}

/* Clases auxiliares para diferentes pesos */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: #141B25;
background: linear-gradient(0deg,rgba(20, 27, 37, 0) 0%, rgba(20, 27, 37, 0.26) 100%);
overflow-x: hidden; /* Evitar desbordamiento horizontal */
}

/* Container del header */
.header .container {
    max-width: 1400px !important; /* Override cualquier max-width */
    min-width: auto !important; /* Override cualquier min-width */
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
}



/* Ajustar columnas para evitar desbordamiento */
.header .col-auto {
    flex: 0 0 auto;
    max-width: 100%;
    
}




.header.scrolled {
    background: #141B2565;
    backdrop-filter: blur(20px);
}



.logo {
    height: 90px;
    width: auto;
    padding-right: 100px;
}
.icono {
    height: 40px;
    width: auto;
}

.icon{
    width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    flex-wrap: nowrap;
     gap: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1032;
    position: relative;
    align-items: end;
    justify-content: end;
}

.hamburger span {
    width: 30px;
    height: 1px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    z-index: 1031;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1033;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.menu-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-overlay ul li {
    margin: 2rem 0;
}

.menu-overlay ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.menu-overlay ul li a:hover {
    color: var(--secondary-color);
}


/* Responsive específico */
@media (max-width: 768px) {
    .header .container {
        padding-left: 20px;
        padding-right: 20px;
        min-width: auto;
    }
    
    .icon{
        gap: 10px;
    }
    
    .logo {
        height: 40px;
        padding-right: 20px;
    }
    
    .icono {
        height: 20px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 25px;
    }
    
    footer .col-content p {
    font-size: 16px;
    line-height: 2rem;
}

.header .col-auto {
    flex: 0 0 auto;
    max-width: 100%;

}
}

/* Hero Section */
.hero-section {
    height: 550px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
/* Hero Section - Agregar después de .hero-slide */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141B25;
background: linear-gradient(90deg,rgba(20, 27, 37, 0.15) 0%, rgba(20, 27, 37, 0.35) 15%, rgba(20, 27, 37, 0.75) 84%, rgba(20, 27, 37, 0.89) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.95;
}
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-lineas.svg'); /* Agrega -image y corrige la ruta */
    background-position: top right; /* Sin guión */
    background-size: 50%; /* O cover según necesites */
    background-repeat: no-repeat;
    z-index: 1; /* Cambiar a 1 para que esté entre el fondo y el contenido */
    pointer-events: none; /* Para que no interfiera con interacciones */
    opacity: 0.5;

}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 10px;

}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Section Styles */
.section {
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.section-content {
    position: relative;
    z-index: 2;
    color: white;
}

.bg-color-primary {
    background: var(--primary-color);
}

.bg-color-secondary {
    background: var(--secondary-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Column Styles */
.col-horizontal {
    padding: 4rem 0;
}

.col-vertical {
    padding: 2rem 0;
}

/* Footer */
.footer {
    background: #202731;
    color: white;
    padding: 3rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .menu-overlay {
        max-width: 100%;
    }
    
    .section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hamburger {
        margin-right: 0;
        padding: 10px 0;
    }

    .hero-slide::after {
  display: none;
    }

}


.experiencia-section {
    min-height: 550px;
    padding: 0; /* Eliminar padding del section */
}

.experiencia-content {
    display: flex;
    width: 100%;
    height: 100vh;
}

.experiencia-col {
    flex: 1; /* Cada columna ocupa 50% */
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.experiencia-gradient {
    background: #141B25;
background: linear-gradient(182deg,rgba(20, 27, 37, 0.9) 0%, rgba(20, 27, 37, 1) 100%);
}

.experiencia-image {
    background: url('../img/bg-section-2-min.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.experiencia-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141B25;
    background: linear-gradient(37deg, rgba(20, 27, 37, 0.90) 0%, rgba(20, 27, 37, 0.39) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.experiencia-text {
    padding: 0px;
    z-index: 2;
    position: relative;
    max-width: 500px; /* Controlar ancho del texto */
}

.experiencia-text span{
    display: flex;
    flex-direction: column;
    font-family: 'Apparat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color:#ffffff;
    justify-content: center;
    align-items: center;
}

.experiencia-text h2 {
    color: white;
    margin-bottom: 0;
    font-size: 2.3rem;
    line-height: 2.5rem;
}

.experiencia-text p {
    color: white;
    text-align: justify;
    line-height: 1.2;
    border-left: 1px solid #ffffff;
    padding:0 0 0 25px;
   
}

.ubicacion-section {
    min-height: 550px;
    padding: 0;
    background: url('../img/bg-ubicacion-min.jpg');
    background-position: center center;
    background-size: cover;
}

.ubicacion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141B25;
    background: linear-gradient(37deg,rgba(20, 27, 37, 1) 0%, rgba(20, 27, 37, 0.34) 36%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.ubicacion-content {
    display: flex;
    width: 100%;
    align-items: center; /* Centrar verticalmente */
    padding: 50px 0px;
}

.ubicacion-col {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    /* Padding equivalente al 50% de la sección anterior */
    padding-left: calc(25vw / 2); /* Inicio donde empezaba el título de la columna 1 */
    padding-right: calc(25vw / 2); /* Fin donde terminaba el texto de la columna 2 */
}

.ubicacion-text {
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: none; /* Quitar limitación de ancho */
    padding: 0;
}

.ubicacion-text h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.6rem;
    line-height: 2.9rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
}

.ubicacion-text h3 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
    letter-spacing: 10px;
    text-align: center; /* Alineado a la izquierda */
    font-family: 'Apparat', sans-serif;
    font-weight: 900;
}

.ubicacion-text p {
    color: white;
    text-align: justify;
    line-height: 1.2;
    border-left: 1px solid #ffffff;
    padding: 0 0 0 25px;
}

.ubicacion-text span {
    display: flex;
    flex-direction: column;
    font-family: 'Apparat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
}

.ancho {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: end;
    margin-top: 30px; /* Espaciado con el párrafo */
}

.ancho .iconos-colbun {
    display: flex;
    justify-content: space-around;
    text-align: right;
    width: 500px;
}

.col-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.col-content p{
    font-size: 16px;
}

footer .col-content p{
    font-size: 14px;
}

footer .icono {
    margin-right: 5px;
}

@media (max-width: 768px) {
.experiencia-text h2 {
    color: white;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 2rem;
}
    .ubicacion-text{
        padding: 0px 10px;
    }
    .ubicacion-text h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
}

    .ubicacion-col {
        padding-left: 15px; /* Mismo padding que experiencia-text en móvil */
        padding-right: 15px;
    }

    .ubicacion-text {
        padding: 30px 20px;
    }
    
    .ubicacion-text h2 {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    .ubicacion-text h3 {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }
    
    .ancho .iconos-colbun {
        width: 100%;
        justify-content: space-between;
    }

    .col-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

}

.iconos-colbun{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .experiencia-content {
        flex-direction: column;
        height: auto;
    }
    
    .experiencia-col {
        width: 100%;
        min-height: 50vh;
    }
    
    .experiencia-text {
        padding: 30px 20px;
    }
}


.aventuras-section {
    min-height: 550px;
    padding: 0; /* Eliminar padding del section */
}

.aventuras-content {
    display: flex;
    width: 100%;
    height: 100vh;
}

.aventuras-col {
    flex: 1; /* Cada columna ocupa 50% */
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aventuras-gradient {
    background: #141B25;
background: linear-gradient(182deg,rgba(20, 27, 37, 0.9) 0%, rgba(20, 27, 37, 1) 100%);
}

.aventuras-image {
    background: url('../img/bg-section-2-min.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.aventuras-text {
    padding: 0px;
    z-index: 2;
    position: relative;
    max-width: 500px; /* Controlar ancho del texto */
}

.aventuras-text span{
    display: flex;
    flex-direction: column;
    font-family: 'Apparat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color:#ffffff;
    justify-content: center;
    align-items: center;
}

.aventuras-text h2 {
    color: white;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.aventuras-text h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.aventuras-text p {
    color: white;
    text-align: justify;
    line-height: 1.2;
   
}

.aventuras-p p img{
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .aventuras-content {
        flex-direction: column;
        height: auto;
    }
    
    .aventuras-col {
        width: 100%;
        min-height: 50vh;
    }
    
    .aventuras-text {
        padding: 30px 20px;
    }

    .aventuras-p p{
        font-size: 12px;
    }
}

.aventuras-gallery,
.otra-gallery {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 10; /* Asegurar que esté encima */
}

.gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 11; /* Un nivel más alto */
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 12; /* Asegurar visibilidad */
}

.gallery-slide.active {
    opacity: 1;
    z-index: 13; /* Slide activo encima */
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 14; /* Imagen encima de todo */
    position: relative;
}

/* Dots y controles con z-index alto */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15; /* Dots visibles encima */
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7); /* Más opaco para mejor visibilidad */
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    z-index: 16;
}

.gallery-dot.active {
    background: white;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 15; /* Controles visibles */
    transform: translateY(-50%);
}

/* Asegurar que las columnas no interfieran */
.aventuras-col {
    position: relative;
    z-index: 5; /* Z-index base para columnas */
}

.aventuras-image {
    z-index: 8; /* Columna de imagen más alta */
}

/* Responsive específico para móviles */
@media (max-width: 768px) {
    .aventuras-gallery,
    .otra-gallery {
        z-index: 20; /* Z-index aún más alto en móvil */
        min-height: 300px; /* Altura mínima asegurada */
    }
    
    .gallery-slider {
        z-index: 21;
        min-height: 300px;
    }
    
    .gallery-slide {
        z-index: 22;
        min-height: 300px;
        display: flex;
        align-items: stretch;
    }
    
    .gallery-slide.active {
        z-index: 23;
    }
    
    .gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 24;
        position: relative;
        /* Cambios específicos para eliminar espacios */
        display: block;
        vertical-align: top;
        min-height: 100%;
        max-height: 100%;
    }
    
    .gallery-dots {
        z-index: 25;
        bottom: 15px;
        background: rgba(0, 0, 0, 0.3); /* Fondo para mejor visibilidad */
        padding: 5px 10px;
        border-radius: 20px;
    }
    
    .gallery-dot {
        background: rgba(255, 255, 255, 0.8);
        z-index: 26;
    }
    
    /* Asegurar que overlays no interfieran */
    .aventuras-image::before,
    .aventuras-image::after {
        z-index: 7; /* Por debajo de la galería */
    }
    
    .aventuras-col {
        z-index: 6;
        min-height: auto;
    }
    
    .aventuras-image {
        z-index: 19; /* Alto pero por debajo de la galería */
    }
}




/* ===== SECCIÓN GALERÍA DE FOTOS ===== */
.galeria-section {
    min-height: 550px;
    padding: 0;
    background: #303A49;
background: linear-gradient(335deg,rgba(48, 58, 73, 1) 0%, rgba(24, 29, 36, 1) 86%);
}

.galeria-content {
    display: flex;
    width: 100%;
    height: 100vh;
}

.galeria-col {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Columna de texto - 40% */
.galeria-text-col {
    width: 40%;
    padding: 0 4rem;
}

.galeria-text h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.2rem;
    margin-bottom: 1rem;
}

.galeria-divider {
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 2rem 0;
}

.galeria-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.galeria-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: white;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.nav-item:hover .nav-icon {
    border-color: white;
}

/* Columna de imágenes - 60% */
.galeria-images-col {
    width: 60%;
    justify-content: center;
    overflow: hidden;
}

/* Contenedor de rombos */
.diamond-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

/* Base para todos los rombos */
.diamond {
    position: absolute;
    transform: rotate(45deg);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.diamond:hover {
    border-color: white;
    transform: rotate(45deg) scale(1.05);
}

.diamond-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: rotate(-45deg) scale(1.4);
}

/* Imágenes específicas para cada rombo */
.diamond-1 {
    background-image: url('../img/galeria-colbun-parcelas-05.jpg');
}

.diamond-2 {
    background-image: url('../img/galeria-colbun-parcelas-01.jpg');
}

.diamond-3 {
    background-image: url('../img/galeria-colbun-parcelas-02.jpg');
}

.diamond-4 {
    background-image: url('../img/galeria-colbun-parcelas-03.jpg');
}

.diamond-5 {
    background-image: url('../img/galeria-colbun-parcelas-04.jpg');
}

/* Tamaños y posiciones específicas */
.diamond-large {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 20%;
    transform: rotate(45deg) translateY(-50%);
    z-index: 3;
}

.diamond-medium {
    width: 160px;
    height: 160px;
    z-index: 2;
}

.diamond-top-right {
    top: 10%;
    right: 25%;
}

.diamond-right {
    top: 60%;
    right: 10%;
}

.diamond-small {
    width: 120px;
    height: 120px;
    z-index: 1;
}

.diamond-bottom-left {
    bottom: 20%;
    left: 5%;
}

.diamond-top-far-right {
    top: 25%;
    right: 5%;
}

/* Elementos decorativos */
.deco-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.line-1 {
    width: 1px;
    height: 200px;
    top: 10%;
    right: 40%;
    transform: rotate(25deg);
}

.line-2 {
    width: 150px;
    height: 1px;
    bottom: 30%;
    left: 60%;
    transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .galeria-content {
        flex-direction: column;
        height: auto;
    }
    
    .galeria-text-col,
    .galeria-images-col {
        width: 100%;
        padding: 3rem 2rem;
    }
    
    .galeria-text h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .diamond-gallery {
        height: 400px;
        margin: 2rem 0;
    }
    
    /* Reposicionar rombos para móvil */
    .diamond-large {
        width: 180px;
        height: 180px;
        left: 50%;
        transform: rotate(45deg) translateX(-50%) translateY(-50%);
        display: none;
    }
    .diamond-5{
        display: none;
    }
    .diamond-medium {
        width: 120px;
        height: 120px;
    }
    
    .diamond-small {
        width: 80px;
        height: 80px;
    }
    
    .nav-item {
        flex-direction: row;
        gap: 0.8rem;
    }
}



/*  inicio galeria diamond */
.diamond-section { 
    min-height: 550px;
    padding: 0; /* Eliminar padding del section */

}

.diamond-content {
    display: flex;
    width: 100%;
    height: 100vh;
     background: #141B25;
background: linear-gradient(182deg,rgba(20, 27, 37, 0.9) 0%, rgba(20, 27, 37, 1) 100%);
padding-left: calc(25vw / 2);
padding-right: calc(25vw / 2);
}

.diamond-col1 {
    flex: 0 0 30%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 40% */
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.diamond-col2 {
    flex: 0 0 70%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 40% */
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.diamond-text {
    padding: 0px;
    z-index: 2;
    position: relative;
    max-width: 500px; /* Controlar ancho del texto */
}

.diamond-text span{
    display: flex;
    flex-direction: column;
    font-family: 'Apparat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color:#ffffff;
    justify-content: center;
    align-items: center;
}

.diamond-text h2 {
    color: white;
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 2rem;
}

.diamond-text h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.diamond-text p {
    color: white;
    text-align: justify;
    line-height: 1.2;
   
}

/* Responsive */
@media (max-width: 768px) {
    .diamond-content {
        flex-direction: column;
        height: auto;
    }
    
    .diamond-col1 {
        width: 100%;
        min-height: 50vh;
    }
    .diamond-col2 {
        width: 90%;
        min-height: 50vh;
    }
    
    .diamond-text {
        padding: 30px 20px;
    }
}

@media (min-width:768px){
    .mobile{
        display: none;
    }
}

@media (max-width: 769px){
    .no-mobile{
        display:none;
    }
}

/* masterplan */
/*  inicio galeria diamond */
.masterplan-section {
    min-height: 550px;
    padding: 0; /* Eliminar padding del section */
    background-image: url('../img/banner-principal-colbun-min.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    
}

.masterplan-content {
    display: flex;
    width: 100%;
  
     background: #141B25;
background: linear-gradient(182deg,rgba(20, 27, 37, 0.4) 0%, rgba(20, 27, 37, 0.9) 100%);
padding-left: calc(25vw / 2);
padding-right: calc(25vw / 2);
position: relative;
z-index: 1;
 padding: 50px 0px;
}



.iconos-masterplan{
    position: absolute;
    bottom: 50px;
    left: 0;
    display:flex;
    flex-direction: column;
    padding-left: calc(25vw / 2);
    width: 270px !important;
    text-align: center;
    z-index: 10;
}
.iconos-masterplan span{
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.masterplan-text h2 {
    color: white;
    margin: 40px 0px;
    font-size: 2.6rem;
    line-height: 2.9rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
}

.masterplan-text h3 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
    font-family: 'Apparat', sans-serif;
    font-weight: 900;
}

.masterplan-text p {
    color: white;
    text-align: left;
    line-height: 1.2;
    border-left: 1px solid #ffffff;
    padding: 0 0 0 25px;
}

/* Responsive específico */
@media (max-width: 768px) {
.masterplan-text h2 {
    color: white;
    margin: 40px 0px;
    font-size: 1.5rem;
    line-height: 2.9rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
}

.masterplan-text h3 {
    color: white;
    margin-bottom: 40px;
    font-size: 1.1rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
    font-family: 'Apparat', sans-serif;
    font-weight: 900;
}
}


/* masterplan */
/*  inicio galeria diamond */
.atracciones-section {
    min-height: 550px;
    padding: 0; /* Eliminar padding del section */
        background-image: url('../img/bg-ubicacion-min.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    
}

.atracciones-content {
    display: flex;
    width: 100%;
    height: auto;
     background: #141B25;
background: linear-gradient(182deg,rgba(20, 27, 37, 0.4) 0%, rgba(20, 27, 37, 0.9) 100%);
padding-left: calc(25vw / 2);
padding-right: calc(25vw / 2);
position: relative;
z-index: 1;

}

.atracciones-content::before {
     position: absolute;
    content: '';
     top: 10%;
    left: 15%;
    width: 75%;  /* Agregar ancho */
    height: 75%; /* Agregar alto */
    background-image: url('../img/atracciones.svg');
    background-position: center center;
    background-size: contain; /* o cover según necesites */
    background-repeat: no-repeat;
    z-index: 10;
   
}

.iconos-atracciones{
    position: absolute;
    bottom: 50px;
    left: 0;
    display:flex;
    flex-direction: column;
    padding-left: calc(25vw / 2);
    width: 270px !important;
    text-align: center;
    z-index: 10;
}
.iconos-atracciones span{
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.atracciones-text h2 {
    color: #303a49;
    margin: 40px 0px;
    font-size: 2.6rem;
    line-height: 2.9rem;
    letter-spacing: 10px;
    text-align: center; /* Alineado a la izquierda */
}

.atracciones-text h3 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
    font-family: 'Apparat', sans-serif;
    font-weight: 900;
}

.atracciones-text p {
    color: white;
    text-align: left;
    line-height: 1.2;
    border-left: 1px solid #ffffff;
    padding: 0 0 0 25px;
}

/* Responsive específico */
@media (max-width: 768px) {

.atracciones-text h2 {
        color: #303a49;
        margin: 15px 0px;
        font-size: 1.5rem;
        line-height: 1.8rem;
        letter-spacing: 8px;
        text-align: center;
    }

.atracciones-content::before {
     display: none;
   
}

.atracciones-content {
    display: flex;
    width: 100%;
    height: auto;
     background: #141B25;
background: linear-gradient(182deg,rgba(20, 27, 37, 0.4) 0%, rgba(20, 27, 37, 0.9) 100%);
padding-left: calc(10vw / 2);
padding-right: calc(10vw / 2);
position: relative;
z-index: 1;
padding: 80px 0px;
}

.atracciones-text h3 {
    color: white;
    margin-bottom: 40px;
    font-size: 1.8rem;
    letter-spacing: 10px;
    text-align: left; /* Alineado a la izquierda */
    font-family: 'Apparat', sans-serif;
    font-weight: 900;
}
.iconos-atracciones {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    flex-direction: row;
    padding-left: calc(25vw / 2);
    width: auto !important;
    text-align: center;
    z-index: 10;
    gap: 15px;
}

.mobile .iconos-atracciones {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto !important;
    text-align: center;
    justify-content: space-between;
    z-index: 10;
    gap: 15px;
    position: static;
    margin-top: 30px;
}
}





.scroll-to-top {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.scroll-to-top img {
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* Rotar para que apunte hacia arriba */
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        left: 5px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top img {
        width: 20px;
        height: 20px;
    }
}




/* Botón flotante del chatbot */
    .chatbot-fab {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .chatbot-fab:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.6);
    }

    .chatbot-fab:hover .chatbot-fab-tooltip {
        opacity: 1;
        transform: translateX(-5px);
    }

    .chatbot-fab svg {
        width: 30px;
        height: 30px;
        fill: white;
    }

    /* Tooltip del botón */
    .chatbot-fab-tooltip {
        position: absolute;
        right: 75px;
        background: white;
        color: #333;
        padding: 10px 16px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        white-space: nowrap;
        font-size: 14px;
        font-weight: 500;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.3s, transform 0.3s;
        pointer-events: none;
    }

    .chatbot-fab-tooltip::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid white;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    /* Contenedor del chatbot */
    .chatbot-widget {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 400px;
        height: 600px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 9998;
        animation: slideUp 0.3s ease;
    }

    .chatbot-widget.active {
        display: flex;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Header del chatbot */
    .chatbot-header {
        background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
        color: white;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chatbot-header-info h3 {
        margin: 0;
        font-size: 18px;
    }

    .chatbot-header-info p {
        margin: 5px 0 0 0;
        font-size: 13px;
        opacity: 0.9;
    }

    .chatbot-close {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.3s;
    }

    .chatbot-close:hover {
        background: rgba(255,255,255,0.2);
    }

    /* Mensajes */
    .chatbot-messages {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        background: #f5f5f5;
    }

    .chatbot-message {
        margin-bottom: 15px;
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .chatbot-message.bot {
        justify-content: flex-start;
    }

    .chatbot-message.user {
        justify-content: flex-end;
    }

    .chatbot-message-content {
        max-width: 80%;
        padding: 12px 16px;
        border-radius: 18px;
        word-wrap: break-word;
        font-size: 14px;
        line-height: 1.5;
    }

    .chatbot-message.bot .chatbot-message-content {
        background: white;
        color: #333;
        border-bottom-left-radius: 4px;
    }

    .chatbot-message.user .chatbot-message-content {
        background: #1976D2;
        color: white;
        border-bottom-right-radius: 4px;
    }

    /* Input area */
    .chatbot-input-area {
        padding: 15px;
        background: white;
        border-top: 1px solid #e0e0e0;
    }

    .chatbot-input-group {
        display: flex;
        gap: 10px;
    }

    .chatbot-input {
        flex: 1;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 25px;
        font-size: 14px;
        outline: none;
        transition: border-color 0.3s;
        font-family: inherit;
    }

    .chatbot-input:focus {
        border-color: #1976D2;
    }

    .chatbot-send-btn {
        padding: 12px 24px;
        background: #1976D2;
        color: white;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: background 0.3s;
    }

    .chatbot-send-btn:hover {
        background: #1565C0;
    }

    .chatbot-send-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    /* Opciones/Botones */
    .chatbot-options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .chatbot-option-btn {
        padding: 8px 16px;
        background: white;
        color: #1976D2;
        border: 2px solid #1976D2;
        border-radius: 20px;
        cursor: pointer;
        font-size: 13px;
        transition: all 0.3s;
    }

    .chatbot-option-btn:hover {
        background: #1976D2;
        color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .chatbot-widget {
            width: calc(100vw - 20px);
            height: calc(100vh - 120px);
            right: 10px;
            bottom: 80px;
        }
        
        .chatbot-fab {
            bottom: 20px;
            right: 20px;
        }
        
        .chatbot-fab-tooltip {
            display: none; /* Ocultar en móviles para no molestar */
        }
    }