* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');

:root {
    --primary-color: #D79130;
    --secondary-color: #FF7814FF;
    --text-font: 'Sora', sans-serif;
    --aboreto:'Aboreto', cursive;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 100%;
    font-family: var(--text-font);
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

#page {
    position: relative;
}

/*HEADER*/
header {
    position: fixed;
    top: 0;
    z-index: 999;
    margin: 0 auto;
    width: 100%;
}

.logo-header{
    margin-bottom: 1rem;
}

.logo-header a img{
    width: 82px;
    height: 83px;
}

.contenedor-header {
    position: sticky;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    z-index: 999;
    border-bottom: 1px solid #dadada;

}

.navegador-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navegador-header a, .dropdown-toggle {
    font-weight: 200;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    transition: .2s ease-in-out color;
}



.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    transition: .2s ease-in-out color;
    z-index: 4;
}

.dropdown-menu a:hover {
    background-color: #f4f4f4;
}



/* Mostrar menú cuando esté activo */
.dropdown.active .dropdown-menu {
    display: block;
}

/* Estilos para la flecha */
.arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Rotar flecha cuando el menú esté abierto */
.dropdown.active .arrow {
    transform: rotate(180deg);
}

.dropdown-toggle {
    display: flex;
    align-items: center;  /* Asegura que texto e ícono estén centrados verticalmente */
    gap: 8px; /* Espacio entre el texto y la flecha */
    cursor: pointer;
    transition: .5s ease-in-out color;
}

.navegador-header a:hover, .dropdown-toggle:hover, .dropdown-menu a:hover{
    color: var(--primary-color);
}

/*VIDEO PRINCIPAL*/
.contenedor-video {
    background-color: black;
    position: relative;
    width: 100%; 
    height: 100vh; 
    overflow: hidden;
  }
  
  .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
  }

  .video-overlay {
    z-index: 8;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 50px 70px;
    background: linear-gradient(to bottom, #00000000, #000);
  }

  .video-overlay p {
    width: 30%;
    margin: 10px 0;
    color: #fff;
    font-size: 20px;
    text-align: left;
  }
  
  .boton-info{
    padding:1rem;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: all ease 0.4s;
  }

  .boton-info a{
    font-family: var(--aboreto);
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
  }

  .boton-info:hover {
    opacity: 0.8;
  }
  

  /*CARUSEL LETRAS */

  .carusel-letras {
    overflow: hidden; 
    white-space: nowrap;
    background-color: #f8f8f8;
    padding: 20px;
}

.texto-carusel {
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    animation: moverTexto 8s linear infinite; 
}

@keyframes moverTexto {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(105%);
    }
}
 .contenedor-carusel-letras{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
  }

  .contenedor-carusel-letras h1{
    text-transform: uppercase;
    font-size: 12rem;
  }

  .carusel-letras {
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 20px;
    white-space: nowrap; /* Evita que el texto haga salto de línea */
}

.texto-wrapper {
    display: flex;
    width: max-content;
    animation: moverTexto 5s linear infinite; /* Animación infinita */
}

.texto-carusel {
    font-size: 3rem;
    font-weight: bold;
    display: inline-block;
}

@keyframes moverTexto {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/*seccion sobre nosotros*/
.sobre-nosotros {
    width: 100%;
    overflow: hidden;
}

.contenedor-sobre-nosotros{
    width: 100%;
    margin: 1rem auto;
}

.contenedor-flex{
    display: flex;
    justify-content: space-between;
}

.imagen-sobre-nosotros img {
    max-width: 100%;
    width: 680px; 
    height: 430px;
    object-fit: cover;
}

.info-sobre-nosotros{
    padding: 1rem 3rem;
    margin-left: 5%;
}
.imagen-sobre-nosotros{
    padding: 4rem 0;
}
.textos-sobre-nosotros{
    margin: 1rem;
    padding:1rem;
    
}
.textos-sobre-nosotros h1{
    margin: 1rem auto;
    font-size: 20px; 
    line-height: 30px; 
    font-weight: 400; 
    width: 100%;
    color: #171A1FFF;
}

.textos-sobre-nosotros h2{
    padding: 1rem 0;
    width: 70%;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
}

.textos-sobre-nosotros p{
    font-family: var(--aboreto);
    width: 70%;
    padding: 1rem 0;
    font-size: 14px; 
    line-height: 22px; 
    font-weight: 400; 
    color: #171A1FFF;
}

.contenedor-cifras-nosotros{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 807px; 
    height: 250px; 
    background: #212331FF;
    gap: 6rem;
    padding: 4rem;
}

.cifras{
    min-width: 170px;  /* Fija un ancho mínimo */
    display: inline-block; /* Evita que el ancho cambie bruscamente */
}


.cifras h4{
    color: var(--primary-color);
    font-size: 20px; 
    line-height: 30px; 
    font-weight: 700; 
    width: 80%;
}

.cifras p{
    font-size: 48px; 
    line-height: 68px; 
    font-weight: 700; 
    color: #BDC1CAFF;
}

/*SECCION GALERIA*/

.descripcion-seccion-galeria {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.descripcion-seccion-galeria p {
    width: 50%;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
}

.descripcion-seccion-galeria strong {
    color: var(--primary-color);
}

/* Usamos una sola cuadrícula para todas las imágenes */
.mosaicos-galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    width: 1440px;
    max-width: 100%;
    padding: 50px;
    margin: 0 auto;
}

/* Primera imagen grande */
.mosaico-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Segunda imagen */
.mosaico-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Tercera imagen */
.mosaico-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Cuarta imagen */
.mosaico-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

/* Quinta imagen */
.mosaico-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* Sexta imagen */
.mosaico-6 {
    grid-column: 1 / 3;
    grid-row: 5 / 5;
}

/* Ajuste de imágenes */
.mosaicos {
    position: relative;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    border-radius: 12px;
}

.imagen-mosaico {
    width: 100%;
    height: 100%;
}

.mosaicos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Botón en hover */
.boton-hover-mosaico {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    height: 100%;
    width: 100%;
    background-color: #00000062;
    transition: opacity 0.3s ease;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.boton-hover-mosaico a {
    border-radius: 5px;
    background: var(--primary-color);
    font-family: var(--aboreto);
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    width: 220px;
    padding: 0.5rem 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.boton-hover-mosaico a:hover {
    opacity: 1;
}

.mosaicos:hover .boton-hover-mosaico {
    opacity: 1;
}

/* Descripción de las imágenes */
.descripcion-mosaico {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 5px;
}

.boton-info-galeria{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;

}
.boton-info-galeria a{
    font-family: var(--aboreto);
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
    padding:1rem;
    background-color: var(--primary-color);
    border-radius: 5px;

}

/*Seccion territorio*/

.contenedor-territorio{
    margin: 3rem auto;
}

.titulo-territorio{
    margin: 1rem 5rem;
    font-size: 25px; 
    line-height: 46px; 
    font-weight: 700; 
    color: #171A1FFF;
}

.maps {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  
  }
  
  .maps-container {
    margin-top: 5rem;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  .maps-container p {
    height: 100%;
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /*Seccion mision y vision*/

  .mision-vision {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

.contenedor-mision-vision {
    display: grid;
    grid-template-columns: 60% 40%; /* Izquierda 60%, Derecha 40% */
    gap: 5rem;
    align-items: center;
}

/* Estilos del contenido a la izquierda */
.contenido-izquierda {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Estilos del texto */
.textos-mision-vision *{
    margin: 1.5rem 0;
}
.textos-mision-vision h1 {
    margin: 1rem auto;
    font-size: 20px; 
    line-height: 30px; 
    font-weight: 400; 
    width: 100%;
    color: #171A1FFF;
}

.textos-mision-vision h2 {
    width: 70%;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
}

.text-right{
    width: 100%;
    display: flex;
    justify-content: end;
}

.textos-mision-vision p {
    width: 50%;
    text-align: justify;
    font-family: var(--aboreto);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.boton-mision-vision{
    width: 100%;
    display: flex;
    justify-content: center;
}

.boton-mision-vision a {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Estilos de la parte de imágenes y cuadro negro */
.imagenes-izquierda {
    margin-top: -3%;
    margin-left: -5%;
    display: grid;
    grid-template-columns: 55% 55%;
    align-items: stretch;
}

/* Imagen pequeña */
.imagen-pequena {
    width: 100%;
    height: auto;
}

/* Cuadro de texto negro */
.textos-imagenes-mision *{
    margin: 1rem auto;
}
.textos-imagenes-mision {
    max-width: 100%;
    font-family: var(--aboreto);
    min-width: 457px; 
    min-height: 359px; 
    background: black;
    color: white;
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Imagen grande a la derecha */
.imagen-derecha img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/*CREDITOS Y BONOS*/

.creditos-bonos {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
    background: white;
}

.contenedor-creditos {
    max-width: 1200px;
    text-align: left;
}

/* Estilos del encabezado y títulos */
.titulo-creditos {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.subtitulo-creditos {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 2rem;
}

.descripcion-creditos {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 3rem;
}

/* Estilos de la lista de créditos */
.opciones-creditos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 3rem;
}

.opcion-creditos {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icono-creditos {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Títulos de cada crédito */
.titulo-opcion-creditos {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.texto-opcion-creditos {
    font-size: 1rem;
    color: #555;
}

/* Botón */
.boton-creditos {
    width: 100%;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.enlace-boton-creditos {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    font-family: var(--aboreto);
}

.enlace-boton-creditos:hover {
    background: #b57548;
}


/*contenedor banner informativo*/

.contenedor-banner{
    position: relative;
}

.img-banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.boton-banner{
    position: absolute;
    bottom: 10%;
    left: 23%;
    display: flex;
    justify-content: center;
    
}

.boton-banner a{
    font-family: var(--aboreto);
    display: inline-block;
    background: #FFFFFFFF;
    color: #171A1FFF;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}


/*COMENTARIOS*/
.opiniones-residentes {
    text-align: center;
    background: #1b1b2f;
    padding: 4rem 2rem;
    color: white;
    width: 100%;
    padding: 50px 25px;
    position: relative;
}

.titulo-opiniones {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.swiper-button-prev {
    color: var(--secondary-color)!important;
}

.contenedor-slider-opiniones {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.slider-opiniones {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* Doble del tamaño normal porque hay 2 grupos */
}

.grupo-opiniones {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    gap: 1rem;
}

.opinion-opiniones {
    width: 100%;
}

.opiniones-swiper {
    width: 1240px;
    margin: 0 auto;
    max-width: 100%;
}

.contenido-opinion-opiniones {
    display: flex;
    gap: 10px;
    border: 2px solid var(--primary-color);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    height: 30vh;
}

.avatar-opiniones {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nombre-opiniones {
    text-align: left;
    font-weight: bold;
    margin-top: 1rem;
}

.estrellas-opiniones {
    text-align: left;
    color: #fbc02d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.texto-opiniones {
    font-size: 0.9rem;
    color: #ddd;
}

/* Botones del slider */
.prev-opiniones, .next-opiniones {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: 0.3s;
}

.prev-opiniones { left: 0; }
.next-opiniones { right: 0; }

.prev-opiniones:hover, .next-opiniones:hover {
    color: white;
}

.paginador-opiniones {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.punto-opiniones {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background:var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.punto-opiniones.activo {
    background: #ffb366; /* Naranja más claro cuando está activo */
    transform: scale(1.2);
}


/*FORMULARIO*/

.seccion-contacto {
    max-width: 100%;
    overflow: hidden;
    padding: 50px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-contacto {
    display: flex;
    max-width: 1200px;
    gap: 50px;
}

.info-contacto {
    flex: 1;
}
.info-contacto h1{
    font-size: 20px; 
    line-height: 30px; 
    font-weight: 400; 
    margin-bottom: 4rem;
}

.info-contacto h2{
    line-height: 30px;
    width: 55%;
    margin-bottom: 2rem;
}
.info-contacto p{
    font-family: var(--aboreto);
}

.datos-contacto {
    margin-top: 20px;
}

.email-contacto, .telefono-contacto {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.email-contacto img, .telefono-contacto img {
    width: 24px;
    height: 24px;
}

.formulario-contacto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fila-contacto {
    display: flex;
    gap: 15px;
}

.campo-contacto {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.campo-contacto input, 
.campo-contacto select, 
.campo-contacto textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.campo-contacto textarea {
    height: 100px;
    resize: none;
    font-family: var(--aboreto);
}

.boton-contacto {
    background: linear-gradient(to right, #d1831d, #bf6b0d);
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.boton-contacto:hover {
    background: linear-gradient(to right, #bf6b0d, #d1831d);
}


/*FOOTER*/

.seccion-footer {
    width: 100%;
    overflow: hidden;
    padding: 30px 10%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ddd;
}

.contenedor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.logo-footer img {
    width: 80px;
}

.logo-footer p {
    font-weight: bold;
    font-size: 23px;
    margin-top: 10px;
    width: 75%;
}

.contacto-footer {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-evenly;
}

.contacto-footer h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 3rem;
}

.contacto-footer a {
    color: #333;
    text-decoration: underline;
    font-family: var(--aboreto);
    font-size: 20px;
}

.redes-footer {
    margin: 0 auto;
    padding: 0 0 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.redes-footer img {
    width: 34px;
    height: 34px;
}

/* Recorrido Virtual */
.recorrido-virtual {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.recorrido-virtual video, #recorrido-virtual {
    width: 100%;
    height: 100%;
}

.recorrido-virtual video {
    object-fit: cover;
}

.recorrido-virtual:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, #00000000, #000);
    opacity: 0.7;
    bottom: 0;
    left: 0;
}

.titulo-escritura {
    position: absolute;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    text-transform: uppercase;
    border-right: 2px solid white; /* Efecto de cursor */
}

/* Estilos de la sección principal */
.info-principal {
    text-align: center;
    padding: 50px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.descripcion {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    font-family: var(--aboreto);
    text-align: left;
}

.titulo-modalidades {
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    margin: 20px auto 0;
}

.botones-modalidades {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-modalidad {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    color: #D79130FF;
    border: 2px solid #D79130FF;
    font-size: 1rem;
    cursor: pointer;
    transition: all ease 0.3s;
    width: 300px;
}

.btn-modalidad.active {
    background-color: #D79130FF;
    color: white;
}

.info-principal .subtitulo {
    line-height: 22px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--aboreto);
    width: 800px;
    max-width: 100%;
    margin: 40px auto 0;
}

.info-principal .texto-descripcion {
    line-height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #171A1F;
    font-family: var(--aboreto);
    width: 800px;
    max-width: 100%;
    margin: 20px auto 0;
}

/* Sección de especificaciones */
.especificaciones {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.contenedor-especificaciones {
    width: 50%;
}

.contenedor-especificaciones h2:nth-child(3){
    margin-top: 40px;
}

.contenedor-especificaciones h2 {
    padding-bottom: 20px;
}

.lista-especificaciones li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lista-especificaciones img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.lista-extras li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lista-extras img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.imagen-prototipo img {
    width: 100%;
    max-width: 500px;
}

/* Galería de imágenes */
.galeria {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.galeria .titulo {
    font-size: 30px;
    font-weight: bold;
    font-family: var(--text-font);
    margin-bottom: 30px;
}

.swiper-container {
    width: 100%;
}

/* Créditos */
.creditos {
    background-color: #fff;
    padding: 50px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.creditos .titulo {
    text-align: left;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
    color: #D79130FF;
}

.creditos .texto {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #171A1F;
    margin-top: 10px;
}

.creditos .subtitulo {
    margin-top: 20px;
    text-align: center;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
    color: #D79130FF;
}

.lista-creditos {
    margin: 30px auto 0;
}

.lista-creditos li {
    margin-bottom: 20px;
}

.lista-creditos p {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 0 0 0 30px;
}

.lista-creditos p img {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}

.boton-creditos {
    text-align: center;
    margin-top: 40px;
}

.btn-descargar {
    background-color: #D79130;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Ubicación */
.ubicacion {
    text-align: center;
    padding: 50px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    display: none;
}

.ubicacion .titulo {
    text-align: left;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
    color: #D79130FF;
    padding-bottom: 20px;
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-contenido {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 80%;
    max-width: 800px;
    text-align: center;
}
.popup iframe {
    width: 100%;
    height: 450px;
}
.cerrar-popup {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 24px;
    cursor: pointer;
}

.contacto {
    margin: 100px auto 0;
    padding: 50px 10%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacto-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.contacto-texto {
    flex: 1;
    max-width: 50%;
}

.contacto-texto h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.contacto-subtitulo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 10px;
}

.contacto-subtitulo span {
    color: var(--primary-color);
}

.contacto-descripcion {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-top: 15px;
}

.contacto-boton {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
    border: 2px solid transparent;
}

.contacto-boton:hover {
    background-color: darken(var(--primary-color), 10%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contacto-imagen {
    flex: 1;
    max-width: 50%;
}

.contacto-imagen img {
    width: 100%;
    border-radius: 10px;
}

.seccion-galeria {
    width: 100%;
    overflow: hidden;
}

.amenidades {
    width: 1200px;
    max-width: 100%;
    padding: 50px;
    margin: 0 auto;
}

.amenidades ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 20px;
    padding: 30px 0 0 0;
}

.amenidades li {
    width: 150px;
    text-align: center;
}

.amenidades img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

.amenidades p {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #D79130;
    text-align: center;
}

/* Responsive */
@media (max-width: 700px) {
     /* Header */
    .logo-header {
        margin-bottom: 5px;
    }
    .logo-header img {
        width: 40px!important;
        height: auto!important;
        object-fit: contain;
    }
    .video-overlay {
        flex-flow: column-reverse;
        height: 200px;
        padding: 30px 50px;
    }
    .boton-info {
        width: 100%;
        padding: 10px 10px;
        text-align: center;
    }
    .video-overlay p {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }
    .contenedor-header {
        padding: 5px 10px;
    }
    .navegador-header a, .navegador-header p {
        font-size: 12px;
    }
    .texto-carusel {
        font-size: 60px!important;
    }

    /* Quienes Somos */
    .contenedor-flex {
        width: 100%;
    }
    .info-sobre-nosotros {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .textos-sobre-nosotros {
        padding: 30px;
        margin: 0;
    }
    .textos-sobre-nosotros h2 {
        width: 100%;
        font-size: 20px;
        line-height: 1.2;
        padding: 0;
    }
    .textos-sobre-nosotros p {
        width: 100%;
        font-size: 14px;
    }

    .contenedor-cifras-nosotros {
        width: 100%;
        height: auto;   
        flex-flow: row wrap;
        gap: 20px;
        margin: 0;
        padding: 50px 25px;
    }
    .cifras h4, .cifras p {
        text-align: center;
        margin: 0 auto;
    }
    .contenedor-flex {
        flex-flow: row wrap;
    }
    .contenedor-cifras-nosotros .cifras, .imagen-sobre-nosotros {
        width: 100%;
        padding: 0;
    }
    .contenedor-sobre-nosotros {
        margin: 0;
    }
    .imagen-sobre-nosotros img {
        height: auto;
    }

    /* Galeria */
    .seccion-galeria {
        padding: 50px 25px;
    }
    .contenedor-galeria {
        width: 100%;
    }
    .descripcion-seccion-galeria {
        display: block;
    }
    .descripcion-seccion-galeria p {
        width: 100%;
        font-size: 18px;
        line-height: 1.2;
    }
    .mosaicos-galeria {
        padding: 30px 0;
        gap: 10px;
        display: flex;
        flex-flow: column;
    }
    .boton-hover-mosaico {
        opacity: 1;
        background-color: transparent;
    }
    .boton-hover-mosaico a {
        font-size: 14px;
        padding: 6px 0px;
        opacity: 1;
    }
    .mosaicos {
        width: 100%;
        height: 180px!important;
    }
    .descripcion-mosaico {
        bottom: 0px;
        right: 0px;
        font-size: 14px;
    }
    .boton-info-galeria {
        margin: 0;
    }
    .boton-info-galeria a {
        text-align: center;
        font-size: 14px;
        padding: 10px;
    }

    /* Territorio */
    .territorio {
        margin: 0;
        width: 100%;
    }
    .contenedor-territorio {
        margin: 0;
    }
    .titulo-territorio {
        padding: 50px 25px;
        margin: 0;
        font-size: 24px!important;
        text-align: center;
    }
    .maps-container {
        margin: 0;
    }

    /* Mision Vision */
    .mision-vision {
        padding: 30px 25px;
    }
    .contenedor-mision-vision {
        display: flex;
        flex-flow: column;
        gap: 0;
    }
    .textos-mision-vision h2 {
        margin: 0;
        font-size: 19px;
        line-height: 1.3;
    }
    .textos-mision-vision p {
        margin: 0;
    }
    .imagenes-izquierda {
        width: 100%;
        margin: 0;
    }
    .textos-imagenes-mision {
        min-width: 0px;
    }
    .contenido-izquierda {
        gap: 0;
    }
    .contenido-izquierda, .contenedor-mision-vision {
        width: 100%;
    }
    .textos-mision-vision h2 {
        width: 100%;
    }
    .textos-mision-vision p {
        width: 100%;
    }
    .imagenes-izquierda {
        display: flex;
        flex-flow: column;
    }
    .imagen-derecha {
        width: 100%;
    }
    .imagen-derecha img {
        height: 300px;
    }
    .textos-imagenes-mision p {
        font-size: 14px;
    }
    .titulo-opiniones {
        margin: 0 0 10px;
        font-size: 20px;
    }

    /* Opiniones */
    .slider-opiniones {
        width: 100%;
    }

    /* Formulario */
    .info-contacto h1 {
        margin: 0;
    }
    .info-contacto h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 0;
        padding: 10px 0;
        width: 100%;
    }
    .seccion-contacto {
        padding: 50px 25px;
    }
    .contenedor-contacto {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    /* footer */
    .contenedor-footer, .contacto-footer {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .logo-footer {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .contacto-footer h3 {
        margin: 0 auto;
        padding: 20px 0;
    }
    .contacto-footer a {
        font-size: 14px;
    }

    /* Contacto */
    .contacto {
        padding: 25px;
    }
    .contacto-contenedor {
        flex-flow: column-reverse;
    }
    .contacto-texto, .contacto-imagen {
        width: 100%;
        max-width: 100%;
    }
    .contacto-boton {
        font-size: 14px;
    }

    /* Desarrollos */
    .titulo-escritura {
        text-wrap: wrap;
        font-size: 28px;
        padding: 0 25px;
    }
    .info-principal {
        padding: 25px;
    }

    .descripcion {
        font-size: 24px;
    }

    /* Especificaciones */
    .especificaciones {
        padding: 25px;
        flex-flow: column-reverse;
    }
    .especificaciones .contenedor-especificaciones {
        width: 100%;
    }

    /* Galeria Desarrollo */
    .galeria {
        padding: 0 25px;
    }

    .creditos .subtitulo, .creditos .titulo, .galeria .titulo, .titulo-modalidades, .contacto-texto h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .creditos .texto, .lista-extras li, .lista-especificaciones li, .lista-creditos p, .contacto-subtitulo, .contacto-descripcion {
        font-size: 14px;
        line-height: 1.3;
    }

    /* Creditos */
    .creditos {
        padding: 50px 25px;
    }

    /* Ubicacion */
    .ubicacion {
        padding: 0;
    } 
    .ubicacion .titulo {
        text-align: center;
    }
    
    .amenidades p {
        font-size: 18px;
        line-height: 1.2;
    }
}

/* Pop */
.popup-contenido {
    width: 90%;
}

.opacity-0 {
    opacity: 0;
}

.transition-opacity {
    transition-property: opacity;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-in-out {
    transition-timing-function: ease-in-out;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.w-screen {
    width: 100vw;
}

.h-screen {
    height: 100vh;
}

.bg-\[\#E50217\] {
    background-color: #fff;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.\!z-\[999999999999\] {
    z-index: 999999999999 !important;
}