main {
    background: var(--color-primary);
}

/* .navbar {
    background-color: #FFF;
    color: var(--color-lighDark);
}

.navbar-container .login-btn a {
    border-color: var(--color-gold);
    color: var(--color-lighDark);
}

.nav-links .nav-item a {
    color: var(--color-lighDark);
} */

.property-card {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 40px 57px;
    align-items: flex-start;
}

.property-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: hsla(0, 0%, 100%, 0.80);
    color: var(--color-lighDark);
    padding: 4px 12px;
    font-weight: 900;
    border-radius: 10px;
    font-size: 14px;
    font-family: monospace;
    width: fit-content;
}

/* 📸 Slider de miniaturas (ahora al lado derecho) */
.thumbnail-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: start;
  justify-items: center;
  max-height: 500px;
  overflow-y: auto;
}

/* Safari-specific fixes for slider */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .thumbnail-slider {
      max-height: 500px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .thumbnail-slider img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }
  }
}

.thumbnail-slider img {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s ease, outline 0.3s ease;
}

.thumbnail-slider img:hover {
    transform: scale(1.05);
}

.thumbnail-slider img.active {
    outline: 3px solid var(--color-gold);
}

/* Slider functionality for more than 4 images */
/* CONTENEDOR PRINCIPAL */
.slider-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 100%; /* Safari fix */
}

/* WRAPPER FLEX */
.slider-wrapper {
    display: flex;
    height: 100%;
    min-height: 100%;
    transition: transform 0.3s ease;
    will-change: transform; /* mejora animación en Safari */
}

/* SLIDE */
.slider-slide {
    flex: 0 0 100%;
    min-width: 100%; /* Safari flex bug fix */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    height: 100%;
    min-height: 0; /* CRÍTICO para Safari */
}

/* IMÁGENES */
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, outline 0.3s ease;
    -webkit-transform: translateZ(0); /* evita glitches Safari */
}

/* Version 1 
.slider-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.slider-slide img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, outline 0.3s ease;
}
 */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 1;
    gap: 10px;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slider-nav button:hover {
    background: var(--color-gold);
}

.slider-nav button.active {
    background: var(--color-gold);
}

/* 🏠 Información debajo de la imagen principal */
.property-info {
    margin-left: 28px;
}

.card-body h3,
.property-info h3 {
    font-weight: bolder;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'PlusJaKartaSans';
    letter-spacing: -1px;
    color: white;
}

.property-info p {
    font-family: 'PlusJaKartaSans';
    color: white;
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 300;
}

.property-info .details {
    font-family: 'TT-Bold';
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 15px;
    color: var(--color-lighDark);
    font-weight: bold;
    color: white;
}

.features {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.btn-share {
    background: transparent;
    color: white;
    border: solid 2px var(--color-gold);
    padding: 4px 15px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* gap: 8px; */
    transition: background 0.3s ease;
    font-size: 17px;
}

.btn-share a {
    text-decoration: none;
    color: white;
    font-family: 'Cormorant bold';
    font-weight: 100;
}

.btn-share:hover {
    background-color: #c9a22729;
    color: var(--color-gold);
}

.details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    min-height: 100vh;
    padding: 50px 100px;
    box-sizing: border-box;
}

.details hr {
    height: 2px;
    background-color: #848484;
}

/* Sección izquierda (características) */
.details .characteristics {
    flex: 0 0 63%;
    max-width: 63%;
}

/* Sección derecha (formulario) */
.details .formSection {
    flex: 0 0 34%;
    max-width: 34%;
    position: sticky;
    top: 100px;
    /* puedes ajustar según el header */
    align-self: flex-start;
}

/* Opcional: un estilo de fondo y padding para distinguir */
.details .formSection {
    border-radius: 10px;
    padding: 1.5rem;
}

.title-section {
    margin: 50px 0;
}

.title-section h2 {
    font-family: 'Cormorant regular';
    font-size: 30pt;
    color: var(--color-primary);
}

.title-section p {
    font-family: 'TT-Regular-Thin';
    color: var(--color-lighDark);
    font-size: 14pt;
    text-align: justify;
}

.tableDetails,
.tableCharacteristics {
    /* width: 80%; */
    margin: 40px 0;
    border-collapse: collapse;
}

.tableCharacteristics thead th {
    text-align: left;
    padding-bottom: 12px;
    font-family: 'Cormorant regular';
    font-size: 29pt;
    letter-spacing: -2px;
    color: var(--color-gold);
    font-weight: normal;
}

.tableDetails tbody tr {
    margin: 12px 0;
    line-height: 55px;
}



.tableCharacteristics tbody tr {
    margin: 12px 0;
    line-height: 55px;
}

.tableDetails tbody tr td {
    font-family: 'TT-Regular-Thin';
    border-bottom: 1px solid var(--color-primary);
    padding-left: 30px;
}

.tableDetails tbody tr td,
.tableCharacteristics tbody tr td {
    font-family: 'TT-Regular-Thin';
    padding-left: 30px;
    padding-right: 30px;
    font-size: 15px;
}

.nameProperty {
    display: flex;
    justify-content: left;
    gap: 7px;
}

.nameProperty::before {
    content: "• ";
    color: #000;
    font-size: 25pt;
    font-weight: bolder;
}

.tableCharacteristics tbody tr td.valueProperty {
    font-family: 'TT-Regular';
    font-weight: bolder;
    text-align: left;
}

/* .day-card {
    border: 2px solid #fff;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    width: 90px;
}
.day-card.active {
    background-color: #D1A500;
    border-color: #D1A500;
    color: #fff;
}

.type-btn {
    background-color: #0E3C1C;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
}
.type-btn.active {
    background-color: #D1A500;
    color: #0E3C1C;
}
 */

/* Formulario de dos pasos */
#form-container {
    background: var(--color-primary);
    border-radius: 15px;
    padding: 30px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.formSection div div h2 {
    color: var(--color-white);
    font-family: 'TT-Bold';
    font-size: 28px;
    margin: 10px 0 15px 0;
    text-align: center;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--color-lighDark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.step.active {
    background: var(--color-gold);
    color: var(--color-primary);
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step.active+.step::after {
    background: var(--color-gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'TT-Bold';
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'TT-Regular';
    color: var(--color-lighDark);
    background: var(--color-white);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'TT-Regular';
    color: var(--color-lighDark);
    background: var(--color-white);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* CONTENEDOR DEL SELECT */
select.form-control {
    width: 100%;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 60px 18px 20px;
    border: 2px solid #E3E3E3;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
}

/* AL ABRIR (Opcional pero recomendado) */
select.form-control option {
    color: var(--color-primary);
    background: #ffffff;
}

/* FLECHA PERSONALIZADA */
select.form-control {
    background-image: url("../images/arrow-select.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 40px;
}

/* CÍRCULO para flecha (imitando diseño) */
select.form-control {
    background-position: right 15px center;
    background-size: 40px;
    box-shadow: inset -45px 0 0 0 transparent;
}

select.form-control::after {
    content: "";
}


select.form-control {
    --circle-size: 34px;
    position: relative;
}

select.form-control:before {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--circle-size);
    height: var(--circle-size);
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
}


.slider-form {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.days-container {
    display: flex;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.days-container .slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    box-sizing: border-box;
    min-width: 100%;
    transition: opacity 0.4s ease;
}

/* 

.days-container {
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    width: max-content;
    position: relative;
    transition: transform 0.3s ease;
}

.slide {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}
 */
.day-card {
    border: 2px solid #e0e0e0;
    padding: 20px 10px;
    text-align: center;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    width: 30%;
    margin: 0 5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--color-primary);
}


.day-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.day-card.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fbfbfb;
    transform: translateY(-2px);
}

.day-name {
    display: block;
    font-size: 12px;
    font-family: 'TT-Bold';
    margin-bottom: 5px;
    text-transform: uppercase;
}

.day-number {
    display: block;
    font-size: 34px;
    font-family: 'TT-Bold';
    font-weight: bold;
    margin: 15px 0;
}

.month-name {
    display: block;
    font-size: 12px;
    font-family: 'TT-Regular';
    margin-top: 5px;
    text-transform: uppercase;
}

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

.nav-btn {
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-gold);
    transform: scale(1.1);
}

/* .nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
} */
.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* .meeting-type {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.type-btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    padding: 10px 20px;
    font-family: 'TT-Bold';
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.type-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.type-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-primary);
} */

.meeting-type {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background-color: #003b23;
    /* verde oscuro del fondo general */
    padding: 8px;
    border-radius: 999px;
    width: fit-content;
    margin: 0 auto;
}

.type-btn {
    flex: 1;
    background-color: transparent;
    color: #e9f2e8;
    /* texto claro */
    border: none;
    font-family: 'TT-Bold', sans-serif;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-btn.active {
    background-color: #406b56;
    /* verde más claro del “botón activo” */
    color: #ffffff;
}

.type-btn:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.content-step-confirm {
    display: grid;
    place-content: center;
}

.content-step-confirm .btn-next,
.content-step-confirm .btn-submit {
    background: white;
    color: var(--color-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'TT-Bold';
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.content-step-confirm .btn-submit {
    background: var(--color-gold);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #f0cc5a;
    transform: translateY(-2px);
}

.contact-form {
    margin-top: 20px;
}

.checkbox {
    padding: 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'TT-Regular';
    font-size: 10px;
    color: white;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
}

.form-group .form-label {
    color: white;
    margin-left: 20px;
}

.selected-info {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px 8px;
    margin-top: 20px;
    text-align: center;
}

.selected-info h3 {
    color: var(--color-primary);
    font-family: 'TT-Bold';
    font-size: 18px;
    margin-bottom: 10px;
}

.selected-info p {
    color: var(--color-lighDark);
    font-family: 'TT-Regular';
    font-size: 16px;
    margin-bottom: 15px;
}

.btn-change {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'TT-Bold';
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-change:hover {
    background: #0a2a1a;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.nav-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: solid 1px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #0a2a1a;
}

/* puntos de interes */
.poin-interes {
    text-align: center;
    color: var(--color-primary);
    padding: 2rem 1rem;
    background-color: white;
    font-family: 'Poppins', sans-serif;
}

.poin-interes h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant regular';
    font-size: 29pt;
}

.poin-interes .tabs {
    display: flex;
    margin: auto;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background-color: var(--color-white);
    width: max-content;
    padding: 2px;
    border-radius: 20px;
}

.poin-interes .tab {
    color: var(--color-lighDark);
    border: none;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    font-family: 'Cormorant regular';
}

.poin-interes .tab.active {
    background: white;
    color: var(--color-lighDark);
}

.content-interest {
    width: 100%;
    display: none;
}

.poin-interes .cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.poin-interes .card {
    flex: 1 1 200px;
    max-width: 310px;
    background: #fff;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.poin-interes .card:hover {
    transform: translateY(-5px);
}

/* .poin-interes .icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
} */

.poin-interes .card .icon-content,
.poin-interes .card h3,
.poin-interes .card .stars {
    height: 33%;
}

.poin-interes .card h3 {
    font-size: 33px;
    font-weight: 700;
    height: auto;
    font-family: 'Cormorant regular';
    margin: 28px 0 18px 0;
}

.poin-interes .stars {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 2rem;
    letter-spacing: -3px;
}

.stars span {
    text-align: center;
    font-size: 45pt;
}

.poin-interes .stars .gold {
    color: var(--color-gold);
}

.poin-interes .stars .dark {
    color: var(--color-primary);
}

.poin-interes .disclaimer {
        font-family: 'TT-Regular-Thin';
    width: 100%;
    font-size: 15px;
    color: var(--color-lighDark);
    padding: 0 12%;
    text-align: center;
}

.content-interest.active {
    display: block;
}

.tab.active {
    background-color: #406b56;
    /* o el color que uses para activo */
    color: #fff;
}

/* modal images */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.4s ease forwards;
}

.modal-content {
    margin: auto;
    display: block;
    width: 50%;
    max-height: auto;
    border-radius: 10px;
    animation: zoomIn 0.4s ease forwards;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
}

.close:hover {
    color: #f1c40f;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 📱 Responsividad */

@media (max-width: 1500px) {
    .details .formSection {
        padding: 0;
    }

    #form-container {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .details .characteristics {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .details .formSection {
        flex: 0 0 46%;
        max-width: 50%;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

@media (max-width: 992px) {
    .property-card {
        grid-template-columns: 1fr;
    }

    .thumbnail-slider {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        justify-content: center;
    }

    .thumbnail-slider img {
        width: 100px;
        height: 70px;
        flex: 0 0 auto;
    }

    .slider-container {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        justify-content: center;
    }

    .slider-slide {
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
    }

    .slider-slide img {
        width: 100px;
        height: 70px;
        flex: 0 0 auto;
    }

    .slider-nav {
        display: none;
        /* Hide navigation on mobile, use scroll */
    }

    .property-info {
        text-align: center;
    }

    .details {
        display: flex;
        justify-content: center;
    }

    .details .characteristics,
    .details .formSection {
        display: contents;
        width: 100%;
    }

    #form-container {
        padding: 20px;
        margin: 0 15px;
    }

    .step-indicator {
        margin-bottom: 20px;
    }

    .step {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .days-container {
        gap: 8px;
    }

    /* .day-card {
        width: 80px;
        padding: 12px 8px;
    } */

    .meeting-type {
        flex-direction: column;
        gap: 8px;
    }

    .type-btn {
        padding: 12px 20px;
    }

    .form-control,
    .form-input {
        padding: 14px 15px;
    }

    .tableDetails, .tableCharacteristics {
        width: 100%;
        margin: 0px 0;
        border-collapse: collapse;
    }

}

@media (max-width: 600px) {
    .property-card {
        padding: 40px 20px;
    }

    .details {
        padding: 50px;
    }

}

@media (max-width: 535px) {
    .property-card {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 10px;
        gap: 12px;
        display: grid;
        place-content: center;
    }

    .property-gallery, .slider-container, .property-info{
        gap: 10px;
        width: 100%;
    }

    .main-image {
        border-radius: 12px;
    }

    .main-image img {
        border-radius: 12px;
    }

    .thumbnail-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-height: 300px;
    }

    .thumbnail-slider img {
        height: 80px;
    }

    .property-info {
        margin-left: 15px;
        text-align: center;
    }

    .property-info h3 {
        font-size: 26px;
        padding: 12px 0;
    }

    .property-info p {
        font-size: 15px;
    }

    .property-info .details {
        font-size: 14px;
        gap: 10px;
    }

    .features{
        display: inline-grid
    }

    .btn-share {
        margin: auto;
    }

    .details {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
    }

    .details .characteristics,
    .details .formSection {
        width: 100%;
        max-width: 100%;
    }

    #form-container {
        padding: 15px 10px;
        margin: 0 10px;
    }

    .step-indicator {
        margin-bottom: 15px;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .day-card {
        padding: 42px 6px;
    }

    .day-name {
        font-size: 11px;
    }

    .day-number {
        font-size: 28px;
    }

    .meeting-type {
        flex-direction: column;
        gap: 6px;
    }

    .type-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .form-control,
    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .tableDetails,
    .tableCharacteristics {
        width: 100%;
        margin: 20px 0;
    }

    .tableCharacteristics thead th {
        font-size: 24pt;
    }

    .tableDetails tbody tr,
    .tableCharacteristics tbody tr {
        line-height: 45px;
    }

    .tableDetails tbody tr td,
    .tableCharacteristics tbody tr td {
        padding-left: 15px;
    }

    .nameProperty::before {
        font-size: 20pt;
    }

    .content-step-confirm .btn-next,
    .content-step-confirm .btn-submit {
        padding: 8px 16px;
        font-size: 14px;
    }

    .checkbox {
        font-size: 9px;
    }

    .checkbox input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }

    .selected-info {
        padding: 15px;
    }

    .selected-info h3 {
        font-size: 16px;
    }

    .selected-info p {
        font-size: 14px;
    }

    .btn-change {
        padding: 8px 16px;
        font-size: 12px;
    }

    .controls {
        margin: 15px 0;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Points of interest adjustments */
    .poin-interes {
        padding: 1rem 0.5rem;
    }

    .poin-interes .tabs {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .poin-interes .tab {
        padding: 0.3rem 0.8rem;
        font-size: 12px;
    }

    .poin-interes .cards {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .poin-interes .card {
        flex: 1 1 160px;
        max-width: 250px;
        padding: 1rem 0.5rem;
    }

    .poin-interes .card h3 {
        font-size: 28px;
    }

    .stars span {
        font-size: 40pt;
    }

    .poin-interes .disclaimer {
        font-size: 0.75rem;
    }

    /* Modal adjustments */
    .modal-content {
        width: 80%;
    }

    .close {
        top: 15px;
        right: 25px;
        font-size: 35px;
    }
}

