@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-costa: #039eba;
    --color-urbano: #d77d03;
    --color-campestre: #a9a716;
    --color-residencial: #639d91;
    --color-blanco: #fff;
    --color-rojo: #e74c3c;
    --color-negro: #000;
    --color-label-login: #026f82;
    --fuente: "Albert Sans"

    --primary-color: #149e9e;
    --secondary-color: #e8e8e8;
    --text-dark: #0f172a;
    --text-light: #94a3b8;
    --white: #ffffff;
    --alamar: #563139;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Albert Sans';
}

body::-webkit-scrollbar {
    display: none;
}

/* Regla global para que todos los selects tengan fondo blanco */
select {
    background-color: white;
}

a {
    text-decoration: none;
    color: var(--color-blanco);
}

h1 {
    margin: 0;
}
.checkMapa{
    color: #0074A0;
    border-radius: 5px;
}

/* HEADER */
.header {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}
/* Video Header */
.video-header {
    position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 85, 128, 0.6); /* Azul translúcido */
  z-index: 2;
}
.logo-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.logo-container img {
  max-width: 60%;
  height: auto;
  user-select: none;
}
@media (max-width: 821px) {

    /* Crear el header mas chico para ipad mini y ipad Air */
    .header {
        height: 30vh;
    }
}

.imgHeader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-header{
    position: absolute;
    width: 300px;
}

form {
    margin: 0;
}
.esPersonaMoral{
    color: #00365f;
}


/* Responsive grid or flex container (opcional) */
.contenedor-botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.app a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app a img {
    width: 70%;
}

.contenedor-apps {
    margin-top: 25px;
    display: flex;
    align-items: center;
    height: 500px;
}

@media (max-width: 1024px) {
    .contenedor-apps {
        height: min-content;
    }
}

.franja-app {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    align-items: center;
}

.contenedor-apps .app {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 120px;
    border-radius: 15px;
    margin: 5px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 1024px) {
    .franja-app {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        align-items: flex-start;
    }

    .contenedor-apps .app {
        max-width: 230px;
    }

    .card {
        width: 182px;
    }
     .contenedor-btn-cotizador{
        display: flex;
        flex-direction: column;
        margin: 21px;
    }
}

/********** TOOLTIP **************/
.app {
    position: relative;
    display: inline-block;
}

.app .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.app .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.app:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/********** HEADER DE FRACCIONAMIENTOS **************/
.header-fraccionamiento {
    width: 2300px;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/pruebaBanner.jpeg");
}

/*****VISTA POSIBLE CLIENTE******/
.contenedor-posible-cliente {
    background-image: url("../img/banners/banner_customer.jpg");
    width: 100%;
    background-size: cover;
    height: 100vh;
}

.contenedor-cliente-formulario {
    background-image: url("../img/banners/banner_customer.jpg");
    width: 100%;
    background-size: cover;
    height: 100%;
}

.titulo-cliente {
    margin-top: 15px;
    text-align: center;
    color: var(--color-blanco);
}

.contenedor-formulario {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.formulario-cliente {
    width: 95%;
    margin-top: 65px;
    height: min-content;
    border-radius: 8px;
    background-color: #0f9cb5d1;
}

.campo-cliente {
    display: flex;
    margin: 13px;
    justify-content: center;
}

.check-contain {
    width: 100%;
    color: var(--color-blanco);
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.campo-cliente input {
    width: 80%;
    border-radius: 0.25em;
    padding: 5px 0;
    border: none;
    outline: none;
    font-size: medium;
}

.btn-cliente {
    width: 35%;
    height: 40px;
    font-weight: bold;
    background-color: #14616e;
    border-radius: 8px;
    border: none;
    color: var(--color-blanco);
    font-size: large;
    cursor: pointer;
}

.btn-cliente:hover {
    background-color: #043d39;
}

.fila-cliente {
    gap: 5px;
}

.fila-cliente input,
.fila-cliente select {
    width: 39.5%;
}

.select-cliente {
    appearance: none;
    border: none;
    font-size: medium;
    width: 80%;
    padding: 5px;
    color: var(--color-label-login);
    border-radius: 0.25em;
    background-color: var(--color-blanco);
    outline: none;
}

/* Contenedor donde estan los input para adjuntar en registro del cliente  */
.contenedor-documentos {
    margin: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    font-size: larger;
    gap: 5px;
}

.adjuntar {
    border: 2px white solid;
}

/* Boton pop up para ver registro de posibles clientes */
.buttonPopup {
    width: 60%;
    height: 80px;
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-top: 131px;
    /* position: absolute;
    top: 90%;
    bottom: 31px; */
    /* left: 0; */
    /* right: -6px; */
    transition: all 0.5s;
    right: 70px;
    gap: 10px;
}

.buttonPopup a:hover {
    background-color: #0f9cb5;
    transition: all 0.3s;
}

.buttonPopup a {
    background-color: #0f9cb5d1;
    width: 129px;
    height: 38px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/***************VISTA DE CADA SECCIÓN DE FRACCIONAMIENTOS*******************/
/* Headers de fraccionamientos (general) */
.headerFraccionamiento {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 300px;
    width: 100%;
}

@media (min-width: 768px) {
    .headerFraccionamiento {
        height: 400px;
        background-size: cover;
    }
}





/* SLIDER 1*/
.slideshow-container {
    max-width: 100%;
    position: relative;
    height: 306px;
}

/* Ocultar las imagenes por default */
.mySlides {
    display: none;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
}

/* Botones de atras y siguiente */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Colocar el "botón siguiente" a la derecha */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* En hover, añadir un color de fondo negro */
.prev:hover,
.next:hover {
    background-color: rgba(70, 54, 54, 0.8);
}

/* Numero (1/3 etc) */
.numbertext {
    color: transparent;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Puntos o indicadores */
.contenedor-dot {
    background-color: #f6f6f6;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.activee,
.dot:hover {
    background-color: #717171;
}

/* Fading animación */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}
/* Fin: Slider */

/* AMENIDADES */
.contenedor-alcances{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.columna-alcances{
     flex: 1;
     min-width: 250px;
}
 .item-alcances {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap; /* 🔹 Permite que el texto pase a la siguiente línea si es necesario */
    word-wrap: break-word;
    }

    .icono-alcances {
      width: 36px;
      height: 36px;
      background-color: #3ad1c6;
      border-radius: 30%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
    }
    .titulo-alcances{
    font-weight: bold;
      font-size: 18px;
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }
 @media (max-width: 600px) {
      .box {
        flex-direction: column;
        padding: 20px;
      }

      .column {
        width: 100%;
      }
      .item-alcances{
        font-size: 12px;
    }
    .fa-solid {
        font-size: 8px;
    }
    .icono-alcances {
        width: 21px;
        height: 21px;
    }
}
/* POP UP DISPONIBILIDAD LOTE */
#info-colors {
    position: absolute;
    top: 5vh; 
    left: 5%;
    cursor: pointer;
    z-index: 10000; 
}
#info-colors i {
    font-size: 1.5rem; 
    color: #464545;
}

.container-colors {
    position: absolute;
    background-color: #F4F1EC;
    border-radius: 10px;
    padding: 10px 15px; 
    flex-direction: column;
    justify-content: space-between; 
    z-index: 9999; 
    display: none;
    top: 10vh; 
    left: 15%; 

    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    gap: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.color-lote{
    left: 15%;
}
.showCard {
    opacity: 1;
    animation: show .2s forwards;
    transform: scale(1);
    display: flex;
}
@keyframes show {
    from {
        transform: scale(0.8); 
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.indicador{
    display: flex;
    align-items: center; 
    gap: 10px; 
}
.color{
    height: 12px;
    width: 12px;
    border-radius: 100%;
    flex-shrink: 0; 
}
.estado{
    font-size: 14px; 
    white-space: nowrap; 
}

/* =================================================================
   MEDIA QUERIES (Ajustes para Escritorio)
   ================================================================= */

@media (min-width: 768px) {
    #info-colors {
        top: 21%;
        left: 5%;
    }
    #info-colors i {
        font-size: xx-large; 
    }

    .container-colors {
        padding: 15px 24px;
        top: 19%;
        
        left: 8%; 
        
        gap: 3px;
    }
    .color-lote{
        left: 8%; 
    }

    .indicador {
        gap: 15px;
    }
    .color {
        height: 14px;
        width: 14px;
    }
    .estado {
        font-size: 15px;
    }
}

/* Menu fraccionamiento (videos, google,360) */
.container-tabs {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.activeTab[data-tab-info] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.mapa {
    width: 100%;
}

[data-tab-info] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.activeTab[data-tab-info] {
    visibility: visible;
    opacity: 1;
    position: relative;
    height: auto;
    min-height: 400px;
}

.tabs {
    display: grid;
     grid-template-columns: repeat(5, 1fr);
    justify-content: space-around;
    align-items: center;
    background: #064F7B;
}

.tabs span {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    align-content: center;
    justify-items: center;
    height: 90px;
    align-items: center;
    cursor: pointer;
}

.opciones {
    padding-top: 7px;
}

.tabs__tab {
    width: 100%;
}

.tab-content {
    width: 100%;
    height: 100%;
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e0eded;
}

.contenedor-btn-compartir {
    padding: 15px 0px;
}

.conetendor-share {
    background-color: var(--color-blanco);
    color: #026f82;
    font-weight: bold;
    font-size: large;
    display: flex;
    gap: 30px;
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    cursor: pointer;
}

/* .btn-opciones-compartir {
    display: none;
    gap: 10px;
}

.btn-opciones-compartir button {
    border: none;
    height: 35px;
    width: 40px;
    border-radius: 30%;
}

.btn-email {
    background-color: #4786d1;
}

.btn-whatsapp {
    background-color: #0da02d;
} */

/* .video-fracc {
    width: 80%;
    padding-top: 10px;
} */
/* Fin Menu */

.fa-solid {
    font-size: 20px;
}

/* Pop Up (Botones de cada fraccionamiento)*/

.circular-menu {
    position: fixed;
    bottom: 5em;
    right: 1em;
    z-index: 999;
}

 .circular-menu .floating-btn {
    display: block;
    width: 5.5em;
    height: 5.5em;
    border-radius: 50%;
    background-color: #0074a1;
    box-shadow: 0 2px 5px 0 hsla(0, 0%, 0%, 0.26);
    color: hsl(0, 0%, 100%);
    text-align: center; 
    /* line-height: 3.9; */
    /* cursor: pointer;*/
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spanPopUp {
    font-size: xx-small;
}

.circular-menu.activeButton .floating-btn {
    box-shadow: inset 0 0 3px hsla(0, 0%, 0%, 0.3);
}

.circular-menu .floating-btn:active {
    box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, 0.4);
} 

.circular-menu .floating-btn i {
    font-size: 1.3em;
    transition: transform 0.2s;
}

.circular-menu.activeButton .floating-btn i {
    transform: rotate(-45deg);
}

.circular-menu:after {
    display: block;
    content: " ";
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 19px;
    z-index: -2;
    background-color: #248fb9e7;
    transition: all 0.3s ease;
}

.circular-menu.activeButton:after {
    transform: scale3d(5.5, 5.5, 1);
    transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
    padding: 0;
    margin: 0;
}

.circular-menu .menu-item {
    position: absolute;
    top: 0.1em;
    right: 1.1em;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    font-size: 1em;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    text-align: center;
    gap: 10px;
    background-color: hsla(0, 0%, 0%, 0.1);
    transition: transform 0.3s ease, background 0.2s ease;
} 

.circular-menu .menu-item:hover {
    background-color: hsla(0, 0%, 0%, 0.3);
}

.circular-menu.activeButton .menu-item {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.activeButton .menu-item:nth-child(1) {
    transform: translate3d(1em, -7em, 0);
}

.circular-menu.activeButton .menu-item:nth-child(2) {
    transform: translate3d(-3.5em, -6.3em, 0);
}

.circular-menu.activeButton .menu-item:nth-child(3) {
    transform: translate3d(-6.5em, -3.2em, 0);
}

.circular-menu.activeButton .menu-item:nth-child(4) {
    transform: translate3d(-7em, 1em, 0);
}

/*---------------------------VISTA CATALOGO-------------------0  */
.headerCatalogo {
    width: 100%;
    height: 8vh;
    background-color: #0074a1;
}

.sectionCatalogo {
    height: 100%;
    background-color: rgb(232, 229, 229);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.opacidad {
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 60vh;
    border-radius: 20px;
    margin: 36px;
    ;
}

.sectionCatalogo p {
    font-size: 70px;
    width: 100%;
    text-align: center;
    font-weight: lighter;
    font-size: 70px;
}

.linea-titulo-brochure {
    width: 30%;
    border-bottom: 4px solid #0074a1;
}

.div-generalCatalogo {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    gap: 100px;
    padding: 20px;

}

.btnBrochure {
    display: flex;
    justify-content: center;
    width: 200px;
    height: 200px;
    background-color: #fff;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.img-brochure {
    width: 90%;
    height: 80%;
    border-radius: 8px;
}

/*---------------------- Satisfacción----------------------------------- */
/* EL id encuesta es para diferenciar la pantalla del formulario de posible cliente con
encuesta de satisfacción ya que manejan alturas distintas  */
#encuesta {
    height: auto;
    background-color: #ecf0f1;
}

.div-cont {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfaccion-cliente {
    width: 98%;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
}

.seccion-encuesta {
    width: 100%;
    height: 100px;
    background-color: var(--color-blanco);
    border-radius: 8px;
    margin: 10px 0;
}

.titulo-encuesta section {
    margin-top: 15px;
}

.checks-encuesta {
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-encuesta {
    border-radius: 8px 8px 0 0;
    background-color: var(--color-costa);
    color: var(--color-blanco);
}

.titulo-encuesta {
    padding: 15px 0;
    color: var(--color-negro);
    font-size: 23px;
}

.btn-customer {
    width: 180px;
    height: 40px;
    font-weight: bold;
    background-color: #026f82;
    border-radius: 8px;
    border: none;
    color: var(--color-blanco);
    font-size: large;
    cursor: pointer;
}

/* Alertas */
 #toast {
    position: fixed;
    top: 85px;
    right: 32px;
    z-index: 999999;
} 

/* Registro de posibles clientes */
.contenedor-tabla {
    display: flex;
    justify-content: center;
}

.CrearUsuarios {
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
}

.headerRegistro {
    height: 300px;
    width: 100%;
}

.headerAzul {
    height: 60px;
    width: 100%;
    background-color: #0074a1;
}

.contenedor-header {
    height: 240px;
    width: 85%;
    display: grid;
    grid-template-columns: 20% 80%;
}

.titulo-registro {
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-registro a {
    color: #000;
    font-size: 30px;
    font-weight: bold;
}

.titulo-registro a.active {
    border-bottom: 5px #d77d03 solid;
}

.logo-registro {
    width: 90%;
    height: 80%;
    background-image: url("https://i.postimg.cc/Fz6R0rpS/VLB-H.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tablaRegistro {
    width: 100%;
    display: flex;
    justify-content: center;
}

.table-registro {
    width: 99%;
    border-collapse: collapse;
    border: 3px var(--color-costa) solid;
}

tr:nth-child(odd) td {
    background: #EBEBEB;
}

.table-registro th {
    background-color: #0074a1;
}

.tr-header th {
    border-collapse: collapse;
    border: 1px #bae2e2 solid;
}

.tr-header {
    color: var(--color-blanco);
    font-weight: 500;
    text-align: start;
}

.tr-body {
    text-align: center;
    font-size: small;
    /* width: 50px; */
}  

.btn-convertir {
    border: none;
    background-color: #1592bb;
    color: white;
    height: 25px;
    border-radius: 2px;
    padding: 0 5px;
}

.btn-convertir:hover {
    background-color: #5bb3cf;
}

/* ---------------------------COTIZADOR-------------------- */
p {
    margin: 0;
}
/* CALCULADORA */
.header-calculadora{
    background-image: url("../img/banners/banner_playa.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 19vh;
}
.overlay-calculadora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 19vh;
  background: rgba(0, 85, 128, 0.6); /* Azul translúcido */
  z-index: 2;
}

/* FIN CALCULADORA */
.header-cotizador p {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contenedor-principal-cotizador {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    background-color: aliceblue;
    flex-direction: column;
    padding-top: 65px;
}

.principal-cotizador {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: 100%;
    box-shadow: rgba(4, 71, 110, 0.64) 0px 4px 12px;
    gap: 10px;
}

.contenedor-cotizador {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-blanco);
}

.tablinks {
    color: #000;
}

.datos-cliente {
    background-color: #0074a1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    color: white;
    overflow-y: scroll;
}

.titulo-cotizador {
    align-self: center;
}

.vista {
    grid-column: 1/3;
    text-align: center;
}

.info-calculadora {
    display: none;
}


.logoVive {
    width: 50%;
    height: 50%;
}

.form-cotizador {
    display: flex;
    flex-direction: column;
    font-size: medium;
    padding: 15px;
    gap: 10px;
}

.header-cotizador {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}

.header-cotizador input,
.header-cotizador select {
    border: 1px solid #000 !important;
}

.header-cotizador:first-child,
.contenedor-btn-cotizador {
    grid-column: 1/3;
}

.header-cotizador #Fraccionamiento {
    width: 100%;
}

.titulo-producto {
    color: #de9f27;
    font-weight: bold;
}

.header-cotizador span {
    font-weight: bold;
}

.header-cotizador select,
.header-cotizador input {
    height: 30px;
}

.contenedor-btn-cotizador {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 40%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* padding: 5px; */
}

.btn-cotizador {
    height: 45px;
    width: 30%;
    background-color: #b5bbbd;
    color: var(--color-blanco);
    border: none;
    border-radius: 5px;
    font-size: medium;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.btn-cotizar {
    background-color: #0074a1;
}

button {
    cursor: pointer;
}
.form-cotizador-cliente {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: larger;
    gap: 20px;
}

.form-cotizador-cliente p {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.header-info-cliente,
.header-cotizador {
    gap: 10px;
    color: #000;
}

.header-info-cliente {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-info-cliente input {
    border: none;
    width: 100%;
    height: 20px;
    outline: 0;
}

.header-info-cliente select {
    margin: 10px 0;
    height: 20px;
    width: 100%;
    border: none;
}
/* FOTO MODAL LOTE */
.foto-lote img {
  width: 350px;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .foto-lote img {
    width: 280px;
  }
}

/* ---------------INICIO MODAL DE LISTA DE PRECIOS  ------------------*/

.btn-lista-precio {
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: none;
}

.modal-lista {
    display: none;
    /* Por defecto, estará oculto */
    position: fixed;
    /* Posición fija */
    z-index: 1;
    /* Se situará por encima de otros elementos de la página*/
    padding-top: 10px;
    /* El contenido estará situado a 200px de la parte superior */
    left: 0;
    top: 0;
    width: 100%;
    /* Ancho completo */
    height: 100%;
    /* Algura completa */
    overflow: auto;
    /* Se activará el scroll si es necesario */
    background-color: rgba(0, 0, 0, 0.5);
    /* Color negro con opacidad del 50% */
}

.contenido-modal {
    position: relative;
    /* Relativo con respecto al contenedor -modal- */
    background-color: white;
    margin: auto;
    /* Centrada */
    padding: 5px 20px;
    width: 76%;
    height: 90%;
    -webkit-animation-name: animarsuperior;
    -webkit-animation-duration: 0.5s;
    animation-name: animarsuperior;
    animation-duration: 0.5s;
}

/* Animación */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animarsuperior {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.tipoCambio {
    background-color: #2a4c5a;
    border-radius: 5px;
    margin: 3px;
    text-align: center;
    color: white;
}

/* Botón cerrar */
.cerrar {
    display: flex;
    justify-content: end;
    font-size: x-large;
    cursor: pointer;
}

.close {
    color: black;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* FIN MODAL DE LISTA DE PRECIOS  */

/* Impresion Recibo */
.contenedor-recibo {
    width: 100%;
    height: 500px;
    font-family: "Montserrat", sans-serif;
    display: none;
}

.titulo-recibo {
    color: #0C72A0;
    font-size: x-large;
    font-weight: bold;
    text-align: center;
}

.contenedor-recibo span {
    border-bottom: 1px solid #A5A5A5;
}

.datos-superior {
    display: flex;
    justify-content: space-evenly;
}

.bg-recibo {
    background-color: #E7ECF0;
    width: 100%;
    height: 20px;
}

.info-recibo {
    margin-bottom: 20px;
}

.contenedor-img-recibo {
    width: 100%;
    height: 250px;
}

.contenedor-img-recibo img {
    width: 100%;
}

/* Outlook Calendario */
.container-form-calendar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
    background-image: url("https://grupoconcordia.info/gcexperience/fondo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F6F6F6;
}

.container-form-calendar form {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

/* .container-form-calendar label {
    font-weight: bold;
}

.container-form-calendar h1 {
    color: #0074A1;
}

.ContainerLoginOutlook {
    display: flex;
    width: 100%;
    height: 100vh;
} */

.input-cliente-outlook {
    width: 95%;
    display: flex;
    flex-direction: column;
    margin: 3px;
    align-self: center;
}

.input-cliente-outlook textarea {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 3px;
    align-self: center;
}

.container-calendario {
    width: 100%;
    height: 100vh;
    background-image: url("https://grupoconcordia.info/gcexperience/fondo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.containerBtnCreateEvent {
    padding-top: 30px;
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: end;
}

.createEvent {
    margin-right: 10px;
    width: 230px;
    background-color: #00c1b5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

@media (max-width: 950px) {

    #map[data-v-346cddef]{
        width: 90% !important;
    }
    .leaflet-control-layers[data-v-346cddef]{
        padding: 0 !important;
        font-size: 12px !important;
        top: 61% !important;
    }
    .header {
        height: 30vh;
    }
    .container-map{
        display: flex;
        justify-content: center;
    }
    #map{
        width: 90% !important;
    }
    .icono-alcances{
        width: 25px ;
        height: 25px ;
        font-size: 15px ;
    }
}

@media (max-width: 550px) {
    .galeria {
        grid-template-columns: repeat(1, 1fr);
    }
}

.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.733);
    margin-top: -1px;
    animation: zoom 0.3s ease-in-out;
    z-index: 9999;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.modal img {
    width: 50%;
    object-fit: cover;
}

.closeBtn {
    color: rgba(255, 255, 255, 0.87);
    font-size: 25px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.closeBtn:hover {
    color: rgb(255, 255, 255);
}

.link-usuario {
    color: #0c616f;
}

.header-usuarios {
    width: 100%;
    height: 27px;
    background-color: #156997;
    margin-bottom: 50px;
}

/* CREAR USUARIO */
.tituloRegistro {
    display: flex;
    justify-content: center;
}

.formularioUser {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.inputUser {
    width: 50%;
    background-color: #319ec9;
    padding: 5px;
}

.inputUser input,
.inputUser select,
.inputUser Button {
    width: 100%;
    padding: 6px;
    border-radius: 5px;
    border: none;
}

.inputUser Button {
    background-color: #156997;
    color: #fff;
    font-size: medium;
}

.inputUser Button:hover {
    background-color: #034366;
}

/* DISEÑO DE FORMULARIO PARA REGISTRAR CLIENTE A ORACLE */

.contenedorOracle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.formOracle {
    margin-top: 3%;
    width: 90%;
    border-radius: 50px;
    box-shadow: 0px -3px 23px 18px rgba(60, 59, 59, 0.1);
}

.formOracle h2 {
    border-bottom: 2px rgb(25, 65, 151) solid;
}

.prospect,
.interested,
.active-customer {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.genre-check {
    display: flex;
    width: 50%;
    align-items: center;
    margin: 10px;
    /* justify-content: space-around; */
}

.genre-check input[type="checkbox"] {
    height: 20px;
}

.input-cliente {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    margin: 3px;
    align-self: center;
}

.input-cliente input,
.input-cliente select,
.input-cliente-outlook input,
.input-cliente-outlook select {
    border: none;
    border: 1px rgb(187, 187, 187) solid;
    height: 30px;
    width: 100%;
    outline: none;
    border-radius: 5px;
}
.form-group-outlook textarea{
     width: 100%;
    outline: none;
    border-radius: 5px;
     border: 1px rgb(187, 187, 187) solid;
}
.input-cliente select {
    color: rgb(150, 147, 147);
}

.referencia {
    gap: 5px;
}

.heading {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: left;
    color: #506982;
    padding-bottom: 3px;
    margin-bottom: 20px;
    border-bottom: 1px solid #506982;
}

.trato {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

/* ----------------Media queries------------ */
@media (min-height: 700px) {
    .vista {
        margin-bottom: 6%;
    }
}

@media (min-width: 430px) {
    #encuesta {
        height: 92vh;
    }

    .adjuntar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        width: 80%;
        height: 70px;
    }
}

@media (min-width: 768px) {
    .satisfaccion-cliente {
        width: 644px;
    }

    .header-encuesta {
        font-size: 17px;
    }

    .principal-cotizador {
        flex-direction: row;
        gap: 0px;
    }

    .contenedor-cotizador {
        width: 71%;
    }

    .datos-cliente {
        /* width: 29%; */
        width: 35%;
    }
    .form-cotizador select {
        height: 50px;
        font-size: medium;
        width: 100%;
    }

    .header-cotizador select,
    .header-cotizador input,
    .form-cotizador input {
        height: 30px;
    }

    .contenedor-documentos {
        flex-direction: row;
    }

    .slideshow-container {
        height: 373px;
    }

    .contenedor-logo {
        height: 500px;
    }

    .lista {
        padding: 15px;
    }

    .div-generalCatalogo {
        grid-template-columns: repeat(3, 1fr);
        gap: 65px;
        width: 100%;
    }

    .sectionCatalogo {
        min-height: 100vh;
    }
}

@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 1366px) 
    {
      .header {
        height: 30vh;
    }

    .container-map{
        display: flex;
        justify-content: center;
    }
}



@media (min-width: 1024px) {
    .slideshow-container {
        height: 468px;
    }
}

@media (min-width: 1025px) {
    .satisfaccion-cliente {
        width: 1200px;
    }

    .header-encuesta {
        font-size: 25px;
    }

    .seccion-encuesta {
        height: 100px;
    }

    .principal-cotizador {
        width: 60%;
    }

    .form-cotizador input {
        height: 25px;
        font-size: medium;
        width: 100%;
    }

    .form-cotizador select {
        height: 25px;
    }

    .formulario-cliente {
        width: 60%;
    }

    .mapa iframe {
        width: 1500px;
    }

    .container-map {
        display: flex;
        justify-content: center;
    }
}

/* Responsive para kiosco */
@media (min-width: 1079px) and (min-height: 1919px) {
    .header-login {
        height: 15rem;
    }

    .login-parrafo {
        font-size: 60px;
        margin-top: 315px;
    }

    .legend-login {
        font-size: xx-large;
    }

    .login-form {
        width: 87%;
        font-size: xx-large;
    }

    .grid-login {
        grid-template-columns: 231px 585px;
    }

    .btn-login {
        width: 40%;
        height: 59px;
        font-size: xx-large;
    }

    .franja-app {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
        justify-items: center;
    }

    .contenedor-formulario {
        height: 100vh;
    }

    .formulario-cliente {
        height: 73%;
        display: flex;
        flex-direction: column;
    }

    .buttonPopup {
        margin-top: 0px;
    }

    .principal-cotizador {
        height: 38%;
        width: 84%;
    }

    .container-testimonial {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .section__container {
        margin: 0px;
    }

    .section__card {
        height: 500px;
    }

    .section__container h1 {
        margin: 0px 0px 30px;
    }

    .contenedor-secciones P {
        padding: 16px;
    }

    .headerFraccionamiento {
        height: 35vh;
    }

    .slidedos {
        margin-top: 166px;
    }

    .slideshow-container {
        height: 539px;
    }

    .tabs {
        height: 210px;
    }

    .opciones {
        height: 90px;
        width: 90px;
    }

    .tabs p {
        font-size: x-large;
    }

    .tabs__tab iframe {
        width: 1046px;
        height: 790px;
    }

    .form-cotizador input,
    .form-cotizador select,
    .header-info-cliente input {
        height: 40px;
    }

    .principal-cotizador {
        height: 50%;
    }
}

/* FORM MULTISTEP */
.contenedor-posible-cliente {
    /* min-height: 100vh; */
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

button.next-btn,
button.previous-btn,
button.submit-btn,
a.submit-btn {
    float: right;
    margin: 20px;
    padding: 10px 30px;
    border: none;
    outline: none;
    background-color: #14616e;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
}

button.previous-btn {
    float: left;
}

.botones {
    width: 100%;
}

#btn_recibo.disabled {
    pointer-events: none;
    cursor: default;
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

.form-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.form-group-outlook {
    display: flex;
    justify-content: center;
    width: 96%;
    margin-top: 20px;
    
}

.form-group input,
.form-group select {
    width: 80%;
    /* border: 1.5px solid rgba(128, 128, 128, 0.418); */
    padding: 5px;
    font-size: 18px;
    margin-top: 5px;
    border-radius: 4px;
}

.fecha-nacimiento {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f9fbfd;
}

.div-itin,
.div-itin-lead,
.hide,
.div-empresa {
    display: none;
}

/* DISEÑO FORMATO COTIZACION */
.contenedor-principal-formato {
    width: 100%;
    height: 98vh;
    display: none;
}

.contenedor-general-formato {
    width: 100%;
}

.encabezado-formato {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.titulo-formato {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: #0074A0;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
}

.contenedor-formato {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cuadro-formato {
    width: 100%;
    background-color: #F2F8FA;
}

.cuadro-formato p {
    font-weight: bold;
}

.tabla-formato {
    width: 100%;
    border: 1px solid #000;
    border-collapse: collapse;
    margin-top: 10px;
}

.tabla-formato th,
.tabla-formato td {
    border: #DFDFDF 1px solid;
}

.tr-fondo {
    width: 100%;
    height: 30px;
    background-color: #474747;
}

.tabla-formato td {
    width: 55%;
    color: #0074A0;
    font-weight: bold;
}

.info-total {
    font-size: 25px;
    text-align: center;
}

.total-lote {
    color: #0074A0;
    font-weight: bold;
}

/* Camara Documentacion */
.web-camera-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;

    .camera-button {
        margin-bottom: 2rem;
    }

    .camera-box {
        .camera-shutter {
            opacity: 0;
            width: 450px;
            height: 337.5px;
            background-color: #fff;
            position: absolute;

            &.flash {
                opacity: 1;
            }
        }
    }

    .camera-shoot {
        margin: 1rem 0;

        button {
            height: 60px;
            width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                height: 35px;
                object-fit: cover;
            }
        }
    }

    @keyframes preload {
        0% {
            opacity: 1
        }

        50% {
            opacity: .4
        }

        100% {
            opacity: 1
        }
    }
}

#fileModal {
    align-items: center;
    align-content: center;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px;
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.clickable {
    cursor: pointer;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.clearfix:before,
.clearfix:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.clearfix:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

/* SELECT EMPRESA READ ONLY */
select[readonly]:-moz-read-only {
    /* For Firefox */
    pointer-events: none;
}

select[readonly]:read-only {
    pointer-events: none;
}

#map img.leaflet-marker-icon {
    font-size: 0px !important;
}

.map-wrapper {
    position: relative;
    height: 700px;
    border-radius: 15px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.leaflet-popup-close-button {
    display: none;
}

.leaflet-popup-content-wrapper {
    background-color: #0E4089D4 !important;
    color: white !important;
    font-size: 16px;
    line-height: 1.4;
    max-width: 200px;
    word-wrap: break-word;
    padding: 8px;
}

.leaflet-popup-tip {
    background-color: #0E4089D4 !important;
}
.leaflet-top-icon{
    z-index: 626 !important;
}
.marker-div {
    width: 40px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease-in-out;
}

.marker-div:hover {
    transform: scale(1.4);
    z-index: 999 !important;
}
.custom-popup {
    position: absolute !important;
    background-color: #0E4089D7 !important;
    color: white;
    border-radius: 8px;
    border: none;
    width: 150px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    transition: transform 0.2s ease-in-out;
    z-index: 9999 !important; /* Asegura que esté encima del mapa */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.custom-popup h3 {
    font-size: 1.2em;
}

.custom-popup .popup-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-popup .popup-btn:hover {
    background-color: #0056b3;
}

/* Animación de apertura */
.custom-popup {
    opacity: 0;
    transform: translateY(10px);
}

.custom-popup.show {
    opacity: 1;
    transform: translateY(0);
}
.map-wrapper{
     width: 100% !important;
}

#svg-map-container {
    width: 100%;
    margin: 0 auto;
    display: block;
    height: 600px; /* o el alto que desees */
}
