/* Local Avenir Next Pro font faces (loaded from assets/Avenir_Next_Pro) */
@font-face {
    font-family: 'Avenir Next Pro';
    src: url('../Avenir_Next_Pro/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Pro';
    src: url('../Avenir_Next_Pro/AvenirNextLTPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Pro';
    src: url('../Avenir_Next_Pro/AvenirNextLTPro-Demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Pro';
    src: url('../Avenir_Next_Pro/AvenirNextLTPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Pro';
    src: url('../Avenir_Next_Pro/AvenirNextLTPro-It.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --main-color: #00A5B3;
    --secundary-color: #A7C2CD;
    --house-text-color: #A8A7A7;
    --main-background-color: white;
    --sales-options-background-color: #EB7C89;
    --main-details-text-color: #37A2AB;
    --secundary-details-text-color: #7E7773;
    --yellow-details-text-color: #F1A71F;
}

.test-border {
    border: 1px solid red !important;
}
html, body {
    font-family: 'Avenir Next Pro', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: normal !important;
}
.body-font{
    font-family: 'Avenir Next Pro', 'Helvetica Neue', Arial, sans-serif !important;
}
.mine-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.test-border{
    border: 1px solid red !important;
}
.mt{
    margin-top: 10px !important;
}
.mb{
    margin-bottom: 20px !important;
}

.title-inline {
    display: flex;
    align-items: center; /* centra verticalmente */
    gap: 10px; /* espacio entre imagen y texto */
}

.title-inline img {
    height: 28px; /* ajusta según tu diseño */
}
.casa-detalle-agent-image {
    width:160px;
    height: 160px;
    border-radius: 85%;
    object-fit: cover;
    opacity: 100%;
}
.container-casa-title{
    width: 100%;
    margin: auto;
    padding-bottom: 10px;
}
.container-all-data{
    width: 90%;
    margin: auto;
}
.property-details-data-text-agent{
    color: var(--main-details-text-color);
    font-size: 1vw;

    line-height: auto;
    letter-spacing: 0px;
    /* font-weight: bold; */
    text-transform: uppercase;
    margin-top: 10px;
}
.property-details-data-text-agent-data{
    
    font-size: 1vw;
    line-height: auto;
    letter-spacing: 0px;
    /* font-weight: bold; */
    text-transform: uppercase;
}

.detalles-seccion-header {
    /* background-color: #eeeeee; */
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 24px;
    margin-bottom: 16px;
    /* font-weight: bold; */
    /* text-transform: uppercase; */
    color: #37A2AB;
    font-size: 28px;
    width: 100%;
}

.section-item {
    color: white;
    background-color: var(--main-color);
    margin-bottom: 10px;
    text-align: center;
    padding: 6px;
    font-size: 12px;
    border-radius: 5px;
}

 .text-location-details {
        text-align: left;
        display: block;
        width: 100%;
        padding: 0px !important;
}
    

.searchPropertiesForm {
    background-color: var(--secundary-color) !important;
    border-radius: 3px;
    margin-top: 10px;
}

.container-social-media {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.container-social-media div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 25%;
}

.container-social-media img {
    transition: transform 0.3s ease;
    display: block;
}

.container-social-media img:hover {
    transform: scale(1.1);
}

/* .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 100;
    align-self: flex-start; 
    height: fit-content;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
} */

/* Media queries para diferentes resoluciones */
@media (max-width: 480px) {

    /* .sidebar-sticky {
    position: absolute;
    text-align: center;
} */
    .container-social-media {
        padding: 0 8px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container-social-media {
        padding: 0 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container-social-media {
        padding: 0 12px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .container-social-media {
        padding: 0 15px;
        justify-content: space-around;
    }
}

@media (min-width: 1281px) {
    .container-social-media {
        padding: 0 0;
        justify-content: space-between;
    }
}

/* Estilos para las imágenes de redes sociales */
.imagenes-social-ico {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 4px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .imagenes-social-ico {
        height: 25px;
        width: 25px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .imagenes-social-ico {
        height: 28px;
        width: 28px;
    }
}

@media (min-width: 1281px) {
    .imagenes-social-ico {
        height: 35px;
        width: 35px;
    }
}

.V2 option:checked,
.inputSearchV2 option:hover {
    color: black;
    background: var(--main-color);
    border: 1px solid var(--main-color) !important;
}

.background-color-main-color {
    background-color: var(--main-color) !important;
}

.border-color-main-color {
    border-color: var(--main-color) !important;
}

.primary-color-text {
    color: var(--main-color) !important;
}

.main-title {
    font-size: 26px;
    /* font-weight: bold; */
    height: 0 auto !important;
    display: block;
    margin-top: 40px;
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;

}

.home-language-item {
    color: var(--main-color);
    /* font-size: 15px; */
}

.font-weight-bold {
    /* font-weight: bold; */
}

.th-title {
    font-size: 14px;
    /* font-weight: bold; */
    /* color: var(--house-text-color); */
    color: #000;
}

.container-property-title {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 2px;
}

.main-title-v2 {
    font-size: 26px;
    /* font-weight: bold; */
    height: 0 auto !important;
    margin-top: 40px;

    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
}

.background-color-main-color {
    background-color: var(--main-background-color) !important;
}

.sales-options-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.sales-options-item {
    padding: 10px;
    background-color: var(--sales-options-background-color);
    text-align: center;
    padding: 6px;
    border-radius: 5px;
}
.center-videos{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sales-options-item a {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
}

.sales-options-item a:hover {
    color: white !important;
}

.youtube-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-information-container {
    margin-top: 40px;
}

.property-information-generic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

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

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

.w-100 {
    width: 100%;
}

.flex-block {
    display: block;
}

.font-weight-bold {
    /* font-weight: bold; */
}

.property-title-color {
    letter-spacing: 0px;
    font-size: 16px;
    line-height: auto;
    text-transform: uppercase;
    font-weight: normal;
}
.text-avenir-light {
    font-family: 'Avenir Next Pro', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}
.property-details-data-text-price{
    font-size: 16px;
    line-height: auto;
    letter-spacing: 0px;
    color:var(--main-details-text-color);
    white-space: nowrap;
    /* font-weight: bold; */
    text-transform: uppercase;
}
.property-details-data-text {
    color: var(--main-details-text-color);
    font-size: 25px;
}

.property-yellow-color {
    color: var(--yellow-details-text-color);
}

.house-details-title {
    color: var(--main-details-text-color);
    font-weight: 600;
    font-size: 28px;
}
.house-details-title-sub{
    color: var(--main-details-text-color);
    font-weight: 400;
    font-size: 14px;
}

.living-outdoor-table {
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    height: auto;
    letter-spacing: 0px;

}

.living-outdoor-table tr td:first-child {
    width: 70% !important;

}

.living-outdoor-table tr td:last-child {
    color: var(--color-house-details-text);
    width: 30%;

}


.contructions-table {
    table-layout: fixed;
    width: 100%;
    border: 1px;
        font-size: 14px;
    height: auto;
    letter-spacing: 0px;

}

.contructions-table tr td{
 vertical-align: top !important;
}

.living-outdoor-table tr td{
 vertical-align: top !important;
}

.text-datails-default{
         font-size: 14px;
    height: auto;
    letter-spacing: 0px;
}

.contructions-table tr td:first-child {
    width: 40% !important;
    padding: 5px;


}

/* .contructions-table tr td:first-child span {

    font-weight: bold !important;

} */


.contructions-table tr td:last-child {
    color: var(--color-house-details-text);
    width: 60%;
    padding: 5px;

}

.title-section {

    font-size: 26px;
    /* font-weight: bold; */
}

.text-linsting {
    color: var(--color-listing-text);
}

.footer-v2 {
    background-color: var(--color-primary);
    height: 150px;
}

.title-section {

    font-size: 26px;
    /* font-weight: bold; */
    color: var(--main-details-text-color);
}

.properties-details-options-container {
    display: grid;

    width: 70%;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.properties-details-options-container div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.property-button {
    background-color: white;
    color: var(--main-color);
    border: var(--main-color) 1px solid;
    border-radius: 5px;
    padding: 5px 40px;
    text-align: center;
}

.property-button:hover {
    background-color: var(--main-color);
    color: white;
}


.property-button:focus {
    background-color: var(--main-color);
    color: white;
    outline: none;
}

.property-button:active {
    background-color: var(--main-color);
    color: white;
}

.properties-images-main-text {
    color: var(--main-details-text-color) !important;
}

.uppercase-text {
    text-transform: uppercase;
}

.d-display {
    display: block !important;
}

.d-none {
    display: none !important;
}

.agent-whatsapp-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 35%;
}

.agent-whatsapp-section-item {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    width: 190px;
    height: 50px;
    opacity: 100%;
}

.whatsapp-agent-text {
    color: var(--main-details-text-color);
    /* font-weight: bold; */
/*     padding-top: 5px;
    margin-top: 23px; */
}

.salesOption::selection {
    color: white !important;
    /* font-weight: bold; */
}

label {
    display: flex;
    align-items: center;
}

label input[type="checkbox"] {
    margin-right: 8px;
}

.ocultaNav {
    display: none;
}

/* Estilos para enlaces de agentes */
.agent-name-link {
    color: black !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    transition: opacity 0.3s ease;
}

.agent-name-link:hover {
    opacity: 0.7;
    color: black !important;
    text-decoration: underline !important;
}

.agent-name-link:visited {
    color: black !important;
}

.agent-name-link:focus {
    color: black !important;
    outline: 1px dotted black;
}

/* Estilos creativos para mensaje "Under Construction" */
.under-construction-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 60px 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcc02, #02A5B3);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.construction-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 10px, transparent 10px, transparent 20px);
    animation: patternMove 20s linear infinite;
}

.under-construction-message {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: messageFloat 3s ease-in-out infinite alternate;
}

.construction-helmet {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: helmetSway 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.under-construction-text {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.word-under {
    display: block;
    color: #fff;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 5px 10px rgba(0, 0, 0, 0.5);
    animation: wordBounce 2s ease-in-out infinite;
}

.word-construction {
    display: block;
    color: #ffcc02;
    text-shadow:
        3px 3px 0 #ff6b35,
        -1px -1px 0 #ff6b35,
        1px -1px 0 #ff6b35,
        -1px 1px 0 #ff6b35,
        1px 1px 0 #ff6b35,
        0 5px 10px rgba(0, 0, 0, 0.5);
    animation: wordBounce 2s ease-in-out infinite 0.3s;
    margin-top: 10px;
}

.construction-tools {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.tool {
    font-size: 3rem;
    animation: toolFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tool:hover {
    transform: scale(1.2) rotate(15deg);
}

.tool-1 {
    animation-delay: 0s;
}

.tool-2 {
    animation-delay: 0.5s;
}

.tool-3 {
    animation-delay: 1s;
}

.tool-4 {
    animation-delay: 1.5s;
}

.construction-progress {
    margin-top: 40px;
}

.progress-bar {
    width: 300px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffcc02, #ff6b35, #f7931e);
    width: 75%;
    border-radius: 10px;
    animation: progressGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: progressShine 3s ease-in-out infinite;
}

.progress-text {
    color: white;
    font-size: 1.2rem;
    /* font-weight: bold; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    animation: textPulse 2s ease-in-out infinite;
}

#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    width: 109% !important;
}



/* Animaciones creativas */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes patternMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40px);
    }
}

@keyframes messageFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes helmetSway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes wordBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes toolFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

@keyframes progressGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 204, 2, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 204, 2, 1), 0 0 30px rgba(255, 107, 53, 0.8);
    }
}

@keyframes progressShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}


   

/* ============================================= */
/* MEDIA QUERIES RESPONSIVAS PARA TODAS LAS CLASES */
/* ============================================= */

/* MÓVILES PEQUEÑOS (320px - 480px) */
@media only screen and (max-width: 480px) {
    .ocultaNav {
        display: block;
    }

    .main-title,
    .main-title-v2 {
        font-size: 18px;
        padding: 10px 15px;
        margin-top: 20px;
    }

    .title-section {
        font-size: 20px;
    }

    .property-details-data-text {
        font-size: 18px;
    }


    .container-property-title {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 5px;
    }

    .sales-options-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .property-information-generic {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .properties-details-options-container {
        grid-template-columns: 1fr;
        width: 95%;
        gap: 5px;
    }

    .agent-whatsapp-container {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .property-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    .section-item {
        font-size: 10px;
        padding: 4px;
    }

    .sales-options-item a {
        font-size: 12px;
    }

    .home-language-item {
        font-size: 12px;
    }

    .th-title {
        font-size: 10px;
    }

    .under-construction-container {
        min-height: 250px;
        padding: 30px 10px;
    }

    .under-construction-text {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .under-construction-icon {
        font-size: 3rem;
    }

    .property-details-data-text-agent {
        font-size: 14px;
    }

    .property-details-data-text-agent-data {
        font-size: 14px;
    }
}

/* MÓVILES GRANDES (481px - 767px) */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .ocultaNav {
        display: block;
    }

    .main-title,
    .main-title-v2 {
        font-size: 22px;
        padding: 15px 20px;
        margin-top: 30px;
    }

    .title-section {
        font-size: 22px;
    }

    .property-details-data-text {
        font-size: 20px;
    }

    .container-property-title {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sales-options-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .property-information-generic {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .properties-details-options-container {
        grid-template-columns: repeat(2, 1fr);
        width: 85%;
        gap: 8px;
    }

    .agent-whatsapp-container {
        grid-template-columns: repeat(2, 1fr);
        width: 60%;
    }

    .property-button {
        padding: 6px 25px;
        font-size: 13px;
    }

    .section-item {
        font-size: 11px;
        padding: 5px;
    }

    .sales-options-item a {
        font-size: 12px;
    }
}

/* TABLETS (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .main-title,
    .main-title-v2 {
        font-size: 24px;
        padding: 18px 25px;
        margin-top: 35px;
    }

    .title-section {
        font-size: 24px;
    }

    .property-details-data-text {
        font-size: 22px;
    }

    .container-property-title {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sales-options-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .property-information-generic {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .properties-details-options-container {
        grid-template-columns: repeat(3, 1fr);
        width: 80%;
        gap: 8px;
    }

    .agent-whatsapp-container {
        grid-template-columns: repeat(2, 1fr);
        width: 50%;
    }

    .property-button {
        padding: 5px 30px;
        font-size: 13px;
    }

    .section-item {
        font-size: 11px;
        padding: 5px;
    }

    .sales-options-item a {
        font-size: 12px;
    }
}

/* DESKTOP PEQUEÑO (1025px - 1280px) */
@media only screen and (min-width: 1025px) and (max-width: 1280px) {

    .main-title,
    .main-title-v2 {
        font-size: 25px;
        padding: 18px 28px;
        margin-top: 38px;
    }

    .title-section {
        font-size: 25px;
    }

    .property-details-data-text {
        font-size: 23px;
    }

    .sales-options-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .property-information-generic {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .properties-details-options-container {
        width: 75%;
        gap: 8px;
    }

    .agent-whatsapp-container {
        width: 40%;
    }

    .property-button {
        padding: 5px 35px;
        font-size: 14px;
    }
}

/* DESKTOP GRANDE (1281px - 1600px) */
@media only screen and (min-width: 1281px) and (max-width: 1600px) {

    .main-title,
    .main-title-v2 {
        font-size: 26px;
        padding: 20px 30px;
        margin-top: 40px;
    }

    .title-section {
        font-size: 26px;
    }

    .property-details-data-text {
        font-size: 25px;
    }

    .properties-details-options-container {
        width: 70%;
        gap: 10px;
    }

    .agent-whatsapp-container {
        width: 35%;
    }

    .property-button {
        padding: 5px 40px;
        font-size: 14px;
    }
}

/* PANTALLAS MUY GRANDES (1601px+) */
@media only screen and (min-width: 1601px) {

    .main-title,
    .main-title-v2 {
        font-size: 28px;
        padding: 22px 35px;
        margin-top: 45px;
    }

    .title-section {
        font-size: 28px;
    }

    .property-details-data-text {
        font-size: 27px;
    }

    .properties-details-options-container {
        width: 65%;
        gap: 12px;
    }

    .agent-whatsapp-container {
        width: 30%;
    }

    .property-button {
        padding: 6px 45px;
        font-size: 15px;
    }

    .section-item {
        font-size: 13px;
        padding: 7px;
    }

    .sales-options-item a {
        font-size: 12px;
    }

    .home-language-item {
        font-size: 16px;
    }

    .th-title {
        font-size: 13px;
    }
}

/* REGLAS UNIVERSALES PARA IMÁGENES RESPONSIVAS */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTENEDORES FLEXIBLES */
.container-property-title,
.sales-options-container,
.property-information-generic,
.properties-details-options-container,
.agent-whatsapp-container {
    width: 100%;
    box-sizing: border-box;
}

/* TEXTO RESPONSIVO */
.main-title,
.main-title-v2,
.title-section,
.property-details-data-text {
    line-height: 1.2;
    word-wrap: normal;
}

/* BOTONES RESPONSIVOS */
.property-button,
.sales-options-item {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 767px) {
    .ocultaNav {
        display: block;
    }
}

.checkbox-wrapper-28 {
    --size: 25px;
    position: relative;
  }

  .checkbox-wrapper-28 *,
  .checkbox-wrapper-28 *:before,
  .checkbox-wrapper-28 *:after {
    box-sizing: border-box;
  }

  .checkbox-wrapper-28 .promoted-input-checkbox {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .checkbox-wrapper-28 input:checked ~ svg {
    height: calc(var(--size) * 0.6);
    -webkit-animation: draw-checkbox-28 ease-in-out 0.2s forwards;
            animation: draw-checkbox-28 ease-in-out 0.2s forwards;
  }
  .checkbox-wrapper-28 label:active::after {
    background-color: #e6e6e6;
  }
  .checkbox-wrapper-28 label {
    color: #37B4AA;
    line-height: var(--size);
    cursor: pointer;
    position: relative;
  }
  .checkbox-wrapper-28 label:after {
    content: "";
    height: var(--size);
    width: var(--size);
    margin-right: 8px;
    float: left;
    border: 2px solid #37B4AA;
    border-radius: 3px;
    transition: 0.15s all ease-out;
  }
  .checkbox-wrapper-28 svg {
    stroke: #37B4AA;
    stroke-width: 3px;
    height: 0;
    width: calc(var(--size) * 0.6);
    position: absolute;
    left: calc(var(--size) * 0.21);
    top: calc(var(--size) * 0.2);
    stroke-dasharray: 33;
  }

  @-webkit-keyframes draw-checkbox-28 {
    0% {
      stroke-dashoffset: 33;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes draw-checkbox-28 {
    0% {
      stroke-dashoffset: 33;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

/* --- SOLUCIÓN PARA QUE LA COLUMNA TENGA TODA LA ALTURA --- */
.row-flex {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 20px; 
        margin-top: 100px;
        z-index: 100;
        width: 100%;
        max-width: 320px;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 12px;
        /* border: 1px solid #eaeaea;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05); */
        
        /* Limpiamos estilos anteriores de fixed */
        right: auto;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}

/* --- AJUSTE PARA MÓVIL --- */
@media (max-width: 991px) {
    .sidebar-sticky {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 30px;
        box-shadow: none;
        border: 1px solid #eee;
    }
}


.iconosCasasThumbnail {
    width: 22px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.borde-gris {
    border: 1px solid #ccc;
}

.excel-container {
        background-color: #fff;
        margin-top: 10px;
        width: 100%;
    }
    .excel-table {
        width: 100%;
        border-collapse: collapse;
        /* border: 1px solid #d1d1d1; */
        /* min-height: 361px !important; */
    }
    .excel-table td {
        /* border: 1px solid #d1d1d1; */
        padding: 6px 8px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        /* color: #333; */
        vertical-align: middle;
        height: 38px;
    }
    
    .excel-icon-cell {
        /* background-color: #f9f9f9; */
        text-align: center;
        width: 40px;
        padding-right: 6px !important;
    }
    .excel-value {
        text-align: left;
        font-weight: normal;
        color:#37A2AB;
        padding-left: 6px !important;
        padding-right: 12px !important;
    }
    
    /* @media (min-width: 992px) {
        .no-padding-right { padding-right: 0; }
        .no-padding-left { padding-left: 0; }
    } */
    .sin-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .excel-border-left {
        border-left: 1px solid #d1d1d1;
    }

    .details-text-values {
        color: #37A2AB !important;
    }

