/* Quitar márgenes por defecto */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Poppins;
    color: #000;
}

.container {
    width: 100%;
    color: white;
    background: #f3f3f3;
}
.container .nav{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background: #fff;
    /*
    width: 100%;
    position: fixed;
    z-index: 99999;
    */
}
.container .nav .cont_nav{
    display: flex;
    padding: 5px 0px;
}
.container .cont_seccion{
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
}
.container .cont_seccion .logo{
    width: 225px;
    gap: 0.5rem;
    display: flex;
    padding: 5px 0px;
}
.container .cont_seccion .btn{
    width: calc(100% - 400px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    display: flex;
}
.container .cont_seccion .btn a{
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(71, 85, 105, 1);
    font-weight: 500;
}
.container .cont_seccion .reserva_btn{
    width: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .cont_seccion .reserva_btn .reserva_button{
    background: rgb(242, 140, 0, 1);
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-decoration: none;
}
.container .cont_seccion .logo img{
    width: 100%;
}
.container .cont_seccion .logo .cont_logo{
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.container .cont_seccion .logo .nav_titulo{
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.container .cont_seccion .logo .nav_titulo .nav_titulo1{
    color: rgb(15, 23, 42, 1);
    font-weight: 700;
    line-height: 1.25rem;
    font-size: 1.75rem;
}
.container .cont_seccion .logo .nav_titulo .nav_titulo2{
    color: rgb(242, 140, 0, 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
}
.container .cont_seccion .foto_home{
    height: 400px;
    background: #990;
}
.container .cont_seccion .titulo{
    display: flex;
}
.container .cont_seccion .titulo .wi1{
    width: calc(100% - 160px);
}
.container .cont_seccion .titulo .wi2{
    width: 100%;
}
.container .cont_seccion .titulo .info{
    padding: 10px;
}
.container .cont_seccion .titulo .info h2{
    font-size: 1.5rem;
    line-height: 28px;
    color: rgb(15, 23, 42,  1);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}
.container .cont_seccion .titulo .info h3{
    font-size: 14px;
    color: rgb(100, 116, 139, 1);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}
.container .cont_seccion .titulo .btns{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .cont_seccion .titulo .btns .tv_btn{
    background: #dadada;
    padding: 0.75rem 0rem;
    border-radius: 0.5rem;
    width: 100%;
    text-align: center;
    border: 1px solid #bbb;
    font-weight: 700;
    color: #666;
    backdrop-filter: blur(10px);
    text-decoration: none;
}
.container .cont_seccion .seccion_foto{
    padding-top: 20px;
}
.container .cont_seccion .incluidos{
    display: grid;
    gap: 20px;
    padding-top: 10px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.container .cont_seccion .incluidos .items_include{
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(0, 0, 0, 0.5);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.container .cont_seccion .incluidos .items_include:hover{
    border: 1px solid rgb(242, 140, 0, 0.5);
}
.container .cont_seccion .incluidos .items_include span{
    font-family: 'Material Symbols Outlined';
    color: rgb(242, 140, 0, 1);
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.container .cont_seccion .incluidos .items_include h3{
    color: rgb(15, 23, 42, 1);
    font-weight: 700;
    font-size: inherit;
}
.container .cont_seccion .incluidos .items_include p{
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgb(100, 116, 139, 1);
}

.container .cont_seccion .lugares{
    display: flex;
    gap: 20px;
    padding-top: 10px;
}
@media(max-width: 850px){
    .container .cont_seccion .btn{ 
        opacity: 0;
    }
}
@media(min-width: 850px){
    .container .cont_seccion .btn{ 
        opacity: 1;
    }
}
@media(max-width: 650px){
    .container .cont_seccion .lugares{
        flex-direction: column;
    }
    .container .cont_seccion .lugares .lista_lugares{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        width: 100%;
    }
    .container .cont_seccion .lugares .cont_mapa{
        width: 100%;
        height: 500px;
    }
}
@media(min-width: 650px){
    .container .cont_seccion .lugares .lista_lugares{
        display: flex;
        flex-direction: column;
        width: 40%;
    }
    .container .cont_seccion .lugares .cont_mapa{
        width: 60%;
    }
}

.container .cont_seccion .lugares .lista_lugares{
    gap: 10px;
}
.container .cont_seccion .lugares .lista_lugares .item_mapa{
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(100, 100, 100, 0.5);
    display: flex;
    gap: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    text-decoration: none;
}
.container .cont_seccion .lugares .lista_lugares .item_mapa:hover{
    border: 1px solid rgb(242, 140, 0, 1);
}
.container .cont_seccion .lugares .lista_lugares .item_mapa .itmap1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .cont_seccion .lugares .lista_lugares .item_mapa .itmap1 span{
    font-family: 'Material Symbols Outlined';
    color: rgb(242, 140, 0, 1);
    font-size: 30px;
}
.container .cont_seccion .lugares .lista_lugares .item_mapa .itmap2{
    
}
.container .cont_seccion .lugares .lista_lugares .item_mapa .itmap2 .imtitulo{
    color: rgb(15, 23, 42, 1);
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
}
.container .cont_seccion .lugares .lista_lugares .item_mapa .itmap2 .imsubtitulo{
    color: rgb(100, 116, 139, 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
}


.container .cont_seccion .lugares .cont_mapa{
    background: #000;
    border-radius: 0.75rem;
}
.container .cont_seccion .reserva{
    display: flex;
    gap: 20px;
    padding-top: 20px;
    flex-direction: row-reverse;
}

@media(max-width: 650px){
    .container .cont_seccion .reserva{
        flex-direction: column;
    }
    .container .cont_seccion .reserva .lista_reserva .app_lista{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}
@media(min-width: 650px){
    .container .cont_seccion .reserva .lista_reserva .app_lista{
        display: flex;
        flex-direction: column;
    }
}

.container .cont_seccion .reserva .reserva_titulo{
    padding-bottom: 20px;
}
.container .cont_seccion .reserva .reserva_titulo .r_titulo{
    font-weight: 700;
    font-size: 1.425rem;
    line-height: 1.75rem;
}
.container .cont_seccion .reserva .reserva_titulo .r_stitulo{
    color: rgb(242, 140, 0, 0.9);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.15rem;
}
.container .cont_seccion .reserva .detalle_reserva{
    height: 200px;
    background: #f5f5f5;
    margin: 10px 0px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.container .cont_seccion .reserva .detalle_reserva .reserv_detalle{
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.container .cont_seccion .reserva .detalle_reserva .reserv_detalle .rdp{
    padding-bottom: 5px;
}
.container .cont_seccion .reserva .detalle_reserva .reserv_detalle .it_re_t{
    flex: 1;
    color: rgb(100, 116, 139, 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.container .cont_seccion .reserva .detalle_reserva .reserv_detalle .it_re_p{
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgb(15, 23, 42, 1);
}
.container .cont_seccion .reserva .detalle_reserva .reserv_total{
    padding-top: 15px;
}
.container .cont_seccion .reserva .detalle_reserva .reserv_total .rt_titulo{
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(15, 23, 42, 1);
    flex: 1;
}
.container .cont_seccion .reserva .detalle_reserva .reserv_total .rt_precio{
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(242, 140, 0, 1);
}
.container .cont_seccion .reserva .reservar{
    display: flex;
    gap: 10px;
}
.container .cont_seccion .reserva .reservar .btncalcular{
    background: rgb(242, 140, 0, 1);
    color: #fff;
    padding: 12px; 
    text-align: center;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    flex: 1;
}
.container .cont_seccion .reserva .reservar .btnreservar{
    background: rgb(30, 142, 30, 1);
    color: #fff;
    padding: 12px; 
    text-align: center;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    flex: 1;
    opacity: 0.2;
}
.container .cont_seccion .reserva .reservar .activo{
    opacity: 1;
}
.container .cont_seccion .reserva .lista_reserva{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.container .cont_seccion .reserva .lista_reserva .app_titulo{
    padding-bottom: 20px;
}
.container .cont_seccion .reserva .lista_reserva .app_lista{
    gap: 15px;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva{
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(100, 100, 100, 0.5);
    display: flex;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    text-decoration: none;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r1{
    width: 46px;
    min-height: 46px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r1 .logo_airbnb{
    width: 46px;
    height: 46px;
    background: url("./logo_airbnb.jpg");
    background-size: contain;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r1 .logo_booking{
    width: 46px;
    height: 46px;
    background: url("./logo_booking.jpg");
    background-size: contain;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r1 .logo_vrbo{
    width: 46px;
    height: 46px;
    background: url("./logo_vrbo.jpg");
    background-size: contain;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r2{
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 66px);
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r2 .it_r2a{
    color: rgb(15, 23, 42, 1);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.15rem;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r2 .it_r2b{
    color: rgb(100, 116, 139,  1);
    font-size: 0.75rem;
    line-height: 1rem;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r3{
    width: 30px;
    height: 46px;
    display: flex;
    justify-content: center;
}
.container .cont_seccion .reserva .lista_reserva .item_reserva .it_r3 .link{
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    color: #ccc;
    width: 24px;
    height: 24px;
    padding-top: 11px;
}
.container .cont_seccion .reserva .cont_reserva{
    flex: 1;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    border: 1px solid rgb(226, 232, 240, 0.6);
    color: #000;
    padding: 20px;
}
.container .cont_seccion .reserva .cont_reserva .date-field{
    display: flex;
    gap: 10px;
}
.container .cont_seccion .reserva .cont_reserva .check{
    width: 50%;
}
.container .cont_seccion .seccion_foto .foto_secundarias ul{
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.container .cont_seccion .seccion_foto .foto_secundarias ul li{
    width: 120px;
    height: 80px;
    background: #000;
}

.container .home{
    padding-top: 10px;
}
.container .cont_home{
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("./back1.jpg");
    background-size: cover;
    border-radius: 15px;
}
.container .cont_home .dhome{
    display: block;
    width: 96%;
    padding: 0 2%;
}
.container .cont_home .thome{
    display: flex;
    justify-content: center;
}
.container .cont_home .thome span{
    background: rgba(242, 140, 0, 0.4);
    --tw-backdrop-blur: blur(12px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border: 1px solid rgb(242 140 0 / 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    line-height: 1rem;
}
.container .cont_home .info_home{
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 20px 0px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.container .cont_home .desc_home{
    width: 96%;
    text-align: center;
    font-weight: 700;
    color: rgb(255 255 255 / 1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.container .cont_home .btn_home{
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
}
.container .cont_home .btn_home .btnhome{
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    cursor: pointer;
}
.container .galeria{
    padding-top: 40px;
}
.container .mapa{
    padding-top: 40px;
}
.container .testimonio{
    padding-top: 40px;
}
.container .reserva{
    padding-top: 40px;
}
.container .incluye{
    padding-top: 40px;
}
.container .footer{
    margin-top: 40px;
    border-top: 1px solid #fed7aa;
    background: #fff;
    border-bottom: 1px solid #999;
}
.container .cont_footer{
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}
.container .cont_footer .column_footer{
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}
.container .cont_footer .column_footer .footer_titulo{
    font-size: inherit;
    margin: 1.5rem 0 1.5rem 0;
    color: rgb(15, 23, 42, 1);
    font-weight: 700;
}
.container .cont_footer .column_footer a{
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(55, 63, 82, 1);
    padding-bottom: 0.75rem;
}
.container .cont_footer .footer_logo{
    display: flex;
    gap: 10px;
}
.container .cont_footer .footer_logo .footer_img{
    width: 50%;
}
.container .cont_footer .footer_logo .footer_img img{
    width: 100%;
}
.container .cont_footer .footer_logo .footer_nom{
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}
.container .cont_footer .footer_logo .footer_nom .footer_nom1{
    color: rgb(15, 23, 42, 1);
    font-weight: 700;
    line-height: 1.25rem;
    font-size: 1.75rem;
}
.container .cont_footer .footer_logo .footer_nom .footer_nom2{
    color: rgb(242, 140, 0, 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
}

.container .cont_footer .footer_info span{
    color: rgb(15, 23, 42, 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-right: 10px;
}


.container .cont_footer .cfw1{
    flex: 0 0 50%;
}
.container .cont_footer .cfw2{
    flex: 0 0 25%;
}
.container .cont_footer .cfw3{
    flex: 0 0 25%;
}
.container .flex{
    display: flex;
}


@keyframes fadeupback {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeddownback {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.date-field label {
    display: block;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-left: 5px;
}

.date-field input {
    width: 100%;
    background: #f3f7fb;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}

/* efecto focus como el original */
.date-field input:focus {
    box-shadow: 0 0 0 2px #f28c00;
    background: white;
}

.gallery {
    max-width: 1000px;
    margin: auto;
    font-family: sans-serif;
}

/* MAIN IMAGE */

.main {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
}

.main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .6s ease, transform .8s ease;
}

.main img.show {
    opacity: 1;
    transform: scale(1);
}

/* NAV BUTTONS */

.navi {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(6px);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px 15px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s ease;
    z-index: 2;
}

.navi:hover {
    background: rgba(0,0,0,.7);
}

.prev { left: 15px; }
.next { right: 15px; }

/* THUMBNAILS */

.thumb-wrapper {
    margin-top: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.thumb-wrapper::-webkit-scrollbar {
    display: none;
}

.thumb-track {
    display: flex;
    gap: 12px;
}

.thumb {
    flex: 0 0 20%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    scroll-snap-align: center;
    opacity: .6;
    transition: transform .4s ease, opacity .4s ease, box-shadow .4s ease;
    width: 200px;
    height: 120px;
}

.thumb.active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

/* DOTS */

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: .4s ease;
}

.dot.active {
    width: 20px;
    border-radius: 10px;
    background: #111;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .thumb {
    flex: 0 0 30%;
  }
}

@media (max-width: 480px) {
  .thumb {
    flex: 0 0 45%;
  }
}


.testimonial-section{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 1;
}
.carousel{
    position: relative;
    width: 100%;
    height: 350px;
    background: #e5e5e5;
    border-radius: 10px;
}
.card{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25%;
    height: 300px;
    background: #fff;
    color: white;
    border-radius: 16px;
    padding: 25px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    opacity: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(100, 100, 100, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.card .info_card{
    color: rgb(100, 116, 139, 1);
    width: 100%;
    height: 100%;
}
.card .info_card .inca_rating{
    height: 20px;
    display: flex;
}
.card .info_card .inca_rating span{
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    line-height: 1;
    color: rgb(250, 204, 21, 1);
}
.card .info_card .inca_info{
    height: calc(100% - 60px);
    text-align: left;
    font-size: 0.9rem;
    font-style: italic;
    line-height: inherit;
    padding: 15px 0px;
}
.card .info_card .inca_user{
    height: 40px;
    display: flex;
    gap: 10px;
}
.card .info_card .inca_user .foto{
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 20px;
}
.card .info_card .inca_user .name{
}
.card .info_card .inca_user .name .nm{
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(15, 23, 42, 1);
    text-align: left;
}
.card .info_card .inca_user .name .from{
    color: rgb(100, 116, 139, 1);
    font-size: 0.7rem;
    line-height: 1rem;
    text-align: left;
}
/* Estados */
.card.center{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 5;
}

.card.left1{
    transform: translate(-115%, -50%) scale(0.85);
    opacity: 0.95;
    z-index: 4;
}

.card.right1{
    transform: translate(15%, -50%) scale(0.85);
    opacity: 0.95;
    z-index: 4;
}

.card.left2{
    transform: translate(-160%, -50%) scale(0.7);
    opacity: 0.9;
    z-index: 3;
}

.card.right2{
    transform: translate(60%, -50%) scale(0.7);
    opacity: 0.9;
    z-index: 3;
}
.card {

}
.navs{
    position: absolute;
    background: rgb(242, 140, 0, 1);
    color: white;
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 0px 14px 12px 15px;
    z-index: 10;
    line-height: 30px;
    border-radius: 20px;
}

.prevs{ left: 10px; }
.nexts{ right: 10px; }


@media(max-width: 800px){
    .card{
        width: 26%;
    }
}
@media(max-width: 700px){
    .card{
        width: 29%;
    }
}
@media(max-width: 650px){
    .card{
        width: 32%;
    }
}
@media(max-width: 600px){
    .card{
        width: 35%;
    }
}
@media(max-width: 550px){
    .card{
        width: 40%;
    }
}
@media(max-width: 500px){
    .card{
        width: 45%;
    }
}

.modal2 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
}

.modal2.active {
    visibility: visible;
    opacity: 1;
}
.modal2-content {
    border-radius: 12px;
    width: auto;
    height: 94%;
    position: relative;
}
.modal2-content video{
    height: 100%;
}
.close2 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    top: 8px;
    right: 10px;
}
.close2 span{
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    padding: 6px 5px 5px 3px;
}

.modal3 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
}

.modal3.active {
    visibility: visible;
    opacity: 1;
}
.modal3-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    transform: translateY(-20px);
    transition: 0.3s ease;
    position: relative;
}
.modal3-content .modal3_titulo{
    padding-bottom: 20px;
}
.modal3-content .modal3_titulo .mod3_titulo{
    font-weight: 700;
    font-size: 1.425rem;
    line-height: 1.75rem;
    color: #000;
}
.modal3-content .modal3_titulo .mod3_subtitulo{
    color: rgb(242, 140, 0, 0.9);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.15rem;
}
.close3 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    top: 8px;
    right: 10px;
}
.close3 span{
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    padding: 6px 5px 5px 3px;
}

.chatear{
    position: fixed;
    background: #fff;
    bottom: 10px;
    right: 0px;
    border-radius: 10px;
    display: flex;
    text-decoration: none;
    z-index: 999999;
}
.chatear .cont_chat{
    display: block;
    position: relative;
}
.chatear .cont_chat img{
    position: absolute;
    width: 70px;
    top: -8px;
    left: -43px;
}
.chatear .cont_chat .info{
    width: 130px;
    padding: 5px 0px 5px 0px;
    background: #fff;
    box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.3);
}
.chatear .cont_chat .info span{
    font-size: 0.9rem;
    line-height: 0.75rem;
    text-align: center;
    background: rgb(30, 142, 30, 0.85);
    padding: 10px 0px 10px 10px;
    display: block;
    color: #fff;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}
.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    transform: translateY(-20px);
    transition: 0.3s ease;
    position: relative;
}
.modal-content .modal_titulo{
    padding-bottom: 20px;
}
.modal-content .modal_titulo .mod_titulo{
    font-weight: 700;
    font-size: 1.425rem;
    line-height: 1.75rem;
    color: #000;
}
.modal-content .modal_titulo .mod_subtitulo{
    color: rgb(242, 140, 0, 0.9);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.15rem;
}
.modal-content .form_options{
    display: flex;
    gap: 10px;
    padding: 15px 0px;
}
.modal-content .form_options .form_option{
    flex: 1;
    border-radius: 10px;
    display: flex;
    padding: 15px;
    gap: 8px;
}
.modal-content .form_options .form_option .fop_ico{
    width: 32px;
    font-family: 'Material Symbols Outlined';
    font-size: 32px;
}
.modal-content .form_options .form_option .fop_nom{
    flex: 1;
}
.modal-content .form_options .form_option .fop_nom div{
    font-size: 0.9rem;
    line-height: 1rem;
    font-weight: 500;
}
.modal-content .form_options .fop1{
    background: rgb(242, 140, 0, 1);
}
.modal-content .form_options .fop2{
    background: rgb(30, 142, 30, 1);
}
.modal.active .modal-content {
    transform: translateY(0);
}
.close {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    top: 8px;
    right: 10px;
}
.close span{
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    padding: 6px 5px 5px 3px;
}
.fs1{
    font-size: clamp(2.0rem, 5vw, 3.75rem);
}
.fs2{
    font-size: clamp(0.7rem, 3vw, 1.3rem);
}

.lh2{
    line-height: clamp(1rem, 2vw, 1.75rem);
}
.iti{
    width: 100%;
}
.iti .iti__country-container .iti__selected-country{
    padding: 0px 5px;
    background: #ddd;
}
.modal_form{
    display: none;
}
.form_item {
    padding-bottom: 10px;
}
.form_item .form_titulo{
    color: rgb(100, 116, 139, 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.form_item .text_data{
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0px 10px;
}
.btnform{
    background: rgb(242, 140, 0, 1);
    color: #fff;
    padding: 12px; 
    text-align: center;
    border-radius: 15px;
    font-weight: 900;
    text-transform: uppercase;
    border: 0px;
    padding: 15px 35px;
    font-size: 15px;
    line-height: 1.15rem;
}
#phone {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 63px;
}
#phone::placeholder {
  color: #f00;
}









/* Maker */
.marker{
    border-radius: 50%;
    width: 100%;
    height: 100%;
}
.cont_marker {
    display: none;
}
.aux_prop_color_0{
    background: #ff0;
}
.highlight .aux_prop{
    display: none;
}
.highlight .cont_marker {
    display: block;
    width: 100%;
    height: 100%;
}
.cont_marker .marker_titulo{
    font-size: 16px;
    text-align: left;
    line-height: 16px;
}
.cont_marker .marker_stitulo{
    font-size: 12px;
    text-align: left;
    line-height: 12px;
    padding-bottom: 4px;
}
.cont_marker .marker_foto{
    width: 100%;
    height: 70px;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
}
.prop_foto_1{
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT7Z-wMVRfj5Vw9_knZDYoPygiBHIii9jE3NA&s");
}
.cont_marker .marker_direccion{
    font-size: 13px;
    line-height: 13px;
    text-align: left;
    padding: 2px 0px;
}
.cont_marker .marker_telefono{
    font-size: 12px;
    line-height: 12px;
    text-align: left;
    padding: 0px 0px 2px 0px;
}
.cont_marker .marker_data{
    display: flex;
    height: 40px;
    padding-top: 5px;
    gap: 5px;
}
.cont_marker .marker_data .marker_data_op{
    flex: 1;
    background: #ddd;
    border: 1px solid #999;
    border-radius: 5px;
    padding: 2px;
}
.cont_marker .marker_data .marker_data_op .data_titulo {
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    text-align: left;
}
.cont_marker .marker_data .marker_data_op .data_stitulo1{
    text-align: left;
    font-size: 15px;
    padding-top: 2px;
}
.cont_marker .marker_data .marker_data_op .data_stitulo2{
    text-align: left;
    font-size: 10px;
}

:root {
    --building-color: #FF9800;
    --house-color: #0288D1;
    --shop-color: #7B1FA2;
    --warehouse-color: #558B2F;
}
.property {
    align-items: center;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    padding: 3px;
    position: relative;
    position: relative;
    transition: all 0.3s ease-out;
    transform: translateY(-9px);
    flex-direction: column;
    gap: 5px;
}

.property::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #000;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 95%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease-out;
    width: 0;
    z-index: 1;
}
.property .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
}
.property .icon svg {
    height: 20px;
    width: auto;
}
.property .details {
    display: none;
    flex-direction: column;
    flex: 1;
}
.property .address {
    color: #9E9E9E;
    font-size: 10px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.property .features {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.property .features > div {
    align-items: center;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: flex;
    font-size: 10px;
    gap: 5px;
    padding: 5px;
}
.property.highlight {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    height: auto;
    padding: 12px;
    width: 310px;
}
.property.highlight::after {
    border-top: 9px solid #FFFFFF;
}
.property.highlight .details {
    display: flex;
}
.property.highlight .icon svg {
    width: 50px;
    height: 50px;
}
.property .bed {
    color: #FFA000;
}
.property .bath {
    color: #03A9F4;
}
.property .size {
    color: #388E3C;
}
.property.highlight:has(.fa-house) .icon {
    color: var(--house-color);
}
.property:not(.highlight):has(.fa-house) {
    background-color: var(--house-color);
}
.property:not(.highlight):has(.fa-house)::after {
    border-top: 9px solid var(--house-color);
}
.property.highlight:has(.fa-building) .icon {
    color: var(--building-color);
}
.property:not(.highlight):has(.fa-building) {
    background-color: var(--building-color);
}
.property:not(.highlight):has(.fa-building)::after {
    border-top: 9px solid var(--building-color);
}
.property.highlight:has(.fa-warehouse) .icon {
    color: var(--warehouse-color);
}
.property:not(.highlight):has(.fa-warehouse) {
    background-color: var(--warehouse-color);
}
.property:not(.highlight):has(.fa-warehouse)::after {
    border-top: 9px solid var(--warehouse-color);
}
.property.highlight:has(.fa-shop) .icon {
    color: var(--shop-color);
}
.property:not(.highlight):has(.fa-shop) {
    background-color: var(--shop-color);
}
.property:not(.highlight):has(.fa-shop)::after {
    border-top: 9px solid var(--shop-color);
}

.marker2{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}
.marker2 .marker2_logo {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.marker2 .marker2_logo img{
    width: 100%;
}
.marker2 .marker2_titulo {
    display: none;
}
.marker2_info{
    display: none;
}
.marker2_info .marker2_foto{
    width: 100%;
    height: 80px;
    background: #666;
    border-radius: 5px;
}
.marker2_info .marker2_direccion{
    color: #000;
    font-size: 0.75rem;
}
.marker2_info .marker2_option{
    display: flex;
    gap: 5px;
}
.marker2_info .marker2_option .marker2_op{
    flex: 1;
    height: 50px;
    background: #efefef;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    padding: 1px 3px;
}
.marker2_info .marker2_option .marker2_op .m2o_titulo{
    font-size: 0.73rem;
    font-weight: 700;
    color: rgb(86, 86, 86, 1);
}
.marker2_info .marker2_option .marker2_op .m2o_data{
    font-size: 1.25rem;
    color: rgb(106, 106, 106, 1);
    padding-top: 3px;
    font-weight: 300;
}
.marker2_info .marker2_option .marker2_op .m2o_horario{
    font-size: 0.75rem;
    color: rgb(106, 106, 106, 1);
    font-weight: 400;
    
}
.marker2_info .marker2_option .marker2_op .m2o_contacto{
    display: flex;
    gap: 5px;
    flex: 1;
}
.marker2_info .marker2_option .marker2_op .m2o_contacto .ics{
    flex: 1;
    display: flex;
}
.marker2_info .marker2_option .marker2_op .m2o_contacto .ics .ic_phone{
    background-image: url("./logo_phone.png");
    background-size: contain;
    width: 33px;
    margin: 0 auto;
}
.marker2_info .marker2_option .marker2_op .m2o_contacto .ics .ic_web{
    background: url("./logo_web.png");
    background-size: contain;
    width: 33px;
    margin: 0 auto;
}

.highlight .marker2{
    height: auto;
}
.highlight .marker2_info{
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    gap: 5px;
}

.highlight .marker2 .marker2_logo{
    width: 50px;
    height: 50px;
}
.highlight .marker2 .marker2_titulo{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.highlight .marker2 .marker2_titulo .marker2_titulo1{
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: #000;
}
.highlight .marker2 .marker2_titulo .marker2_titulo2{
    font-size: 0.85rem;
    line-height: 1rem;
    color: #666;
}
.highlight .marker2 .marker2_info{
    display: flex;
}
.input-icon {
    position: relative;
    width: 100%;
}
.input-icon input {
    width: 100%;
    padding: 12px; /* espacio para el ícono */
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #f3f7fb;
    font-weight: 500;
}
.input-icon input:focus {
    border-color: #0071c2;
    box-shadow: 0 0 0 2px rgba(0, 113, 194, 0.2);
    outline: none;
}
.input-icon::after {
    content: "calendar_month";
    font-family: 'Material Symbols Outlined';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #555;
    pointer-events: none; /* no bloquea clicks */
}