﻿/* Estilos base */
body {
    margin: 0;
    font-family: Poppins, sans-serif;
}
main {
    float: left;
    width: 100%;
}

p {
    margin: 0;
    font-family: Segoe UI, sans-serif;
}

.header {
    background-color: transparent;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .header.fixed {
        background-color: rgba(255, 255, 255, 1);
        color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

        .header.fixed a {
            color: #000000;
        }

            .header.fixed a:hover {
                color: #FFFFFF;
            }

        .header.fixed .logo {
            color: #000000;
        }

    .header .container {
        max-width: 1200px; /* Ajusta este valor según el ancho máximo deseado */
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        background: #fff;
        border-radius: 2px;
        display: block;
        height: 3px;
        margin: 5px 0;
        transition: 0.3s;
        width: 25px;
    }

.logo {
    width: 30%;
    float: left;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 28px;
}

    .logo span {
        font-weight: 900;
    }

nav {
    width: 70%;
    float: left;
    text-align: right;
}

    nav a {
        color: #FFFFFF;
        text-decoration: none;
        padding: 0 10px;
        text-align: right;
    }

        nav a:hover {
            color: #FFFFFF;
            text-decoration: none;
            background-color: #FF2C57;
            padding: 10px;
            box-sizing: revert-layer;
        }

.banner {
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.bannerLogin {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

    .banner-content p {
        font-family: Poppins, sans-serif;
        font-size: 18px;
        font-weight: 500;
    }

.button {
    font-family: Poppins, sans-serif;
    background-color: transparent;
    border: 3px solid #FFFFFF;
    border-radius: 15px;
    color: #FFFFFF;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-weight: 600;
}

    .button:hover {
        background-color: #F22A53;
        border: 3px solid #F22A53;
        border-radius: 10px;
        color: #FFFFFF;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
    }

.buttonSelected {
    background-color: #FF2C57;
    border: 3px solid #FF2C57;
    border-radius: 10px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.smallButtonWhite {
    background-color: #FF2C57;
    border: 3px solid #FF2C57;
    border-radius: 10px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.bigC {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 0;
    width: 100%;
    position: relative;
}

.topContainer {
}

.fullcontainer {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    float: left;
}

.title-section {
    display: flex;
    align-items: center;
}

.vertical-lines {
    width: 55px;
    height: 150px;
    margin-right: 20px;
    position: absolute;
    left: -50px;
    top: 0;
    margin-top: 2rem;
}

.linea {
    height: 80px; /* Alto de las líneas */
    width: 5px; /* Ancho de las líneas */
    background-color: #FF2C57; /* Color de las líneas */
    margin: 0 5px; /* Espacio horizontal entre las líneas */
    display: inline-block; /* Permite que las líneas estén una al lado de la otra */
    vertical-align: text-top;
    vertical-align: text-top;
    animation: moveUpDown 1.5s infinite ease-in-out;
}

.lineaDos {
    height: 150px;
    animation: moveUpDownLineaDos 1s infinite ease-in-out alternate;
}


@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes moveUpDownLineaDos {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.color {
    color: #FF2C57;
}

.title {
    font-size: 2em;
    font-weight: bold;
}

.subtitle {
    font-size: 16px !important;
    font-family: Poppins, sans-serif;
    font-weight: normal;
}

.content {
    margin-top: 20px;
}

.pColor {
    color: #727693;
}

.decorative-shapes {
    position: absolute;
    right: -20%;
    top: 0;
    z-index: -1;
}

    .decorative-shapes img {
        max-width: 100%;
        height: auto;
        position: relative;
        float: left;
    }

.medium-text-space {
    width: 70%;
}

.bold {
    font-weight: bold;
}

.height250 {
    height: 250px;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
    padding: 0;
}

.banner50 {
    width: 50%;
    float: left;
}

.checked {
    height: 15px;
    padding: 0 10px 0 0;
}

.cuadrado {
    height: 10px;
    padding: 0 10px 0 0;
}

.listServices p:hover {
    font-weight: bold;
    cursor: default;
}

.imgServicios {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

    .imgServicios img {
        max-width: 80%;
        float: right;
        padding: 40px 0 0 0;
    }

.listServices p > .minimoProgress {
    font-size: 10px;
    cursor: default;
}

.minimoProgress {
    color: #FFFFFF;
}

.listServices p:hover .minimoProgress {
    color: #FF2C57;
}


.medium-text-space {
    position: relative;
    width: 70%;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.5s;
    z-index: 2;
}

    .overlay img {
        position: relative;
        z-index: 3;
        width: 100%;
        bottom: -10px;
    }

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 40%;
}

.full-content {
    width: 60%;
}

    .full-content p {
        font-size: 20px !important;
        font-family: Poppins, sans-serif;
        font-weight: normal;
    }


.centeredTop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 50%;
    box-sizing: border-box;
}

.height250 {
    height: 250px;
}

.imagen-de-fondo {
    height: 100vh; /* 100% de la altura de la ventana del navegador */
    width: 100%; /* se ajusta al ancho de la ventana */
    background-image: url("fondo.png"); /* reemplaza con la URL de tu imagen */
    background-size: cover; /* asegura que la imagen cubra completamente el área sin perder sus proporciones */
    background-position: center; /* centra la imagen en el elemento */
}
.imagen-de-fondo-Login {
    width: 100%; /* se ajusta al ancho de la ventana */
    background-image: url("fondoLogin.png"); /* reemplaza con la URL de tu imagen */
    background-size: cover; /* asegura que la imagen cubra completamente el área sin perder sus proporciones */
    background-position: center; /* centra la imagen en el elemento */
}

/****   FILTROS ALQUILER    ******/
.select-css {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    line-height: 1.3;
    padding: 0.4em 1.4em 0.3em 0.8em;
    width: 400px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 20px auto;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
    border-radius: 0.3em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}
.searchFiltros .boxFiltrosHome {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 50px;
    height: 30px;
}
.searchFiltros select {
    margin: 0 1% 0 0;
    padding: 10px;
    font-size: 16px;
    color: #333333;
    box-sizing: border-box;
    float: left;
    width: calc(100% - 76% - 5%);
}

.searchFiltros p {
    text-align: center;
    width: 23%;
    margin: 20px 38%;
    float: left;
}
.filtrosDestacados {
    width: 100%;
    float: left;
}
    .filtrosDestacados .accesoFiltros {
        width: 29%;
        margin: 1% 1% 0 1%;
        display: inline-block;
        position: relative;
        text-align: center;
    }
    .filtrosDestacados .accesoFiltros p {
        overflow: hidden;
        padding: 0;
        margin: 0;
        float: left;
        width: 100%;
    }
    .filtrosDestacados .accesoFiltros img {
        width: 100%;
        float: left;
        transition: all 0.2s ease-in-out 0s;
    }
    .filtrosDestacados .accesoFiltros img:hover,
    .filtrosDestacados .accesoFiltros:hover img{
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        transition: all 0.2s ease-in-out 0s;
    }
    .filtrosDestacados .accesoFiltros span {
        width: auto;
        font-weight: 400;
        z-index: 3;
        position: relative;
        font-size: 18px;
        border: 3px solid transparent;
        background-color: transparent;
    }
    .filtrosDestacados .accesoFiltros span i.proximamente {
        display: none;
    }
    .filtrosDestacados .accesoFiltros:hover span,
    .filtrosDestacados .accesoFiltros span:hover {
        background-color: #F22A53;
        border: 3px solid #F22A53;
    }
        .filtrosDestacados .accesoFiltros:hover span.buttonNone,
        .filtrosDestacados .accesoFiltros span.buttonNone:hover {
            background-color: #AAAAAA;
            border: 3px solid #AAAAAA;
        }
    .filtrosDestacados .accesoFiltros:hover span i.proximamente,
    .filtrosDestacados .accesoFiltros span:hover i.proximamente {
        display: block;
        cursor: default;
    }
    .filtrosDestacados .accesoFiltros:hover span m,
    .filtrosDestacados .accesoFiltros span:hover m {
        display: none;
    }

    .lineD {
        position: relative;
    }

.lineD::after, .buttonSecond::after {
    -webkit-transform: scaleX(1) !important;
    -ms-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
    background-color: #FF2C57;
    transform-origin: left center;
    transition: transform .4s cubic-bezier(0.165,.84,.44,1);
    transition-delay: .5s;
    position: absolute;
    top: 55%;
    content: "";
    left: 5px;
    bottom: 0;
    height: 35%;
    z-index: -1;
    width: 100%;
}

.spaceBottom {
    padding: 50px 0;
}

.imgInmuebles {
    float: left;
    width: 40%;
}

    .imgInmuebles img {
        max-width: 100%;
        display: block;
    }

.containerLeft {
    position: relative;
    width: 50%;
}

.containerRight {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 2rem 2rem 0 2rem;
}


.smallButton {
    font-family: Poppins, sans-serif;
    background-color: transparent;
    border: 2px solid #F22A53;
    border-radius: 15px;
    color: #F22A53;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 10px 2px;
    cursor: pointer;
    font-weight: 600;
}

    .smallButton:hover {
        background-color: #F22A53;
        border: 2px solid #F22A53;
        border-radius: 10px;
        color: #FFFFFF;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 10px 2px;
        cursor: pointer;
    }

.smallButtonNone:hover {
    background-color: #AAAAAA;
    border: 2px solid #AAAAAA;
    border-radius: 10px;
    color: #FFFFFF;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 10px 2px;
    cursor: default;
}

.text-space {
    margin: 0 0 20px 0;
}

.top-space {
    margin: 40px 0 0 0 !important;
}

.banner-h3 {
    padding: 0;
    margin: 50px 0;
    font-weight: 500;
}

.banner-h4 {
    font-weight: 300;
}

.bgColorGray {
    background-color: #F7F5F8;
}

.padding-space {
    padding: 2rem 0;
}

.text-center {
    text-align: center;
}

.containerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.benefit {
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .benefit img {
        width: 50px;
        height: 50px;
        transition: transform 0.5s ease, z-index 0.5s ease;
    }

    .benefit h3 {
        margin-top: 10px;
        font-size: 1.2em;
        transition: color 0.3s ease, transform 0.5s ease;
    }

    .benefit p {
        font-size: 0.9em;
        color: #666666;
        transition: color 0.3s ease, transform 0.5s ease;
    }

    .benefit:hover {
        background-color: #FF2C57;
        color: #FFFFFF;
    }

        .benefit:hover p,
        .benefit:hover h3 {
            color: #FFFFFF;
            transform: translateY(-30px);
            cursor: default;
        }

        .benefit:hover img,
        .benefit img:hover {
            z-index: -1;
            position: relative;
        }

.buttonSecond {
    border: none;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 26px;
    margin: 10px 2px;
    position: relative;
}



.faq-container {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    padding: 50px 0 0 0;
    width: 100%;
    float: left;
}

.faq {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 60%;
    margin-right: 20px;
}

.faq-header {
    background-color: #FF2C57;
    color: #fff;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 20px;
}

.faq-question {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.faq-answer {
    padding: 20px;
    display: none;
    color: #666;
    background-color: #f5f5f5;
}

.illustration {
    flex-shrink: 0;
    width: 40%;
}

    .illustration img {
        max-width: 100%;
        height: auto;
    }

.specialServices h3 {
    font-weight: bold;
    padding: 0;
    margin: 40px 0 20px 0;
    padding-bottom: 0 !important;
    font-family: Segoe UI, sans-serif;
    font-size: 38px;
}

.white {
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    /*border-top: 2px solid #FFFFFF;*/
    padding: 2px 0;
    font-family: Poppins, sans-serif;
    font-size: 12px;
}

.specialServices .full-content {
    width: 80%;
}

    .specialServices .full-content p {
        width: 60%;
        margin: auto;
        font-family: Poppins, sans-serif;
        font-size: 16px !important;
        margin-bottom: 30px;
    }

    .specialServices .full-content .buttonSelected,
    .specialServices .full-content .button {
        padding: 10px 25px;
    }

.middle50 {
    width: 50%;
    float: left;
    margin: 10px 0;
}

    .middle50:hover {
        font-weight: bold;
    }

.formularioWeb p {
    margin: 10px 0;
    float: left;
    width: 100%;
    font-family: Poppins, sans-serif;
}

.formularioWeb label {
    width: 100%;
    float: left;
    font-family: Poppins, sans-serif;
}

.formularioWeb input#nombre {
    width: 90%;
    float: left;
}

.formularioWeb input,
.contactoPropietario input {
    width: 100%;
    float: left;
    font-family: Poppins, sans-serif;
    border: 1px solid #DDDDDD;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.formularioWeb #email {
    width: 100%;
    float: left;
}

.formularioWeb #comentario,
.contactoPropietario textarea {
    width: 100%;
    float: left;
    height: 80px;
    font-family: Poppins, sans-serif;
    border: 1px solid #DDDDDD;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.formularioWeb .cobligatorio {
    color: #727692;
    width: 100%;
    font-size: 12px;
    margin: 0 0 10px 0;
}

.formularioWeb .buttonForm input {
    cursor: pointer;
    width: auto;
    float: right;
    padding: 15px 32px;
}

.footTitle {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    /*color: #FFFFFF;*/
    margin: 0 0 20px 0;
}

.footLink a {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    color: #FFFFFF !important;
    text-decoration: none;
    color: #000000;
}

.middle50:hover .footTitle,
.middle50 .footTitle:hover,
.middle50:hover .footLink,
.middle50 .footLink:hover {
    font-weight: 400 !important;
}

.footLink a:hover {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    color: #FF2C57 !important;
    text-decoration: underline;
}

.fullBottom {
    margin: 0;
    border-top: 2px solid #2E2E2E;
    text-align: center;
    padding: 20px 0;
    float: left;
    width: 100%;
    background-color: #191919;
    color: #FFFFFF;
    font-family: Segoe UI, sans-serif;
    font-size: 12px;
}

.responsive-img {
    width: 100%;
}

.bottomFoot {
    background-color: #191919;
    color: #FFFFFF;
}

.floatLeft {
    float: left;
}

.bigPadding {
    padding: 40px 0 30px 0;
}

.container60 {
    width: 60%;
    float: left;
    margin: 10px 0;
}

.container40 {
    width: 40%;
    float: left;
    box-sizing: border-box;
    margin: 10px 0;
}

.redesSociales {
    width: 100%;
    float: left;
    margin: 20px 0 0 0;
}

    .redesSociales img {
        width: 50px;
        margin: 10px 10px 0 0;
    }



/* Hamburger menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: #fff;
        margin: 4px 0;
        transition: all 0.3s;
    }

.textDestacado {
    color: #727693;
    font-size: 14px;
    margin: 20px 0;
    font-family: Segoe UI, sans-serif;
    font-weight: bold;
}



/************************************/
/*		   EFECTO ACOORDEON			*/
/************************************/
.accordion {
    background-color: #FFFFFF;
    color: #444;
    cursor: pointer;
    padding: 2% 5% 2% 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Myriad Pro';
    border-bottom: 1px solid #CBDAEB;
    margin: 2rem 0 0 0;
    float: left;
}

    .accordion.active, .accordion:hover {
        background-color: #FFFFFF;
    }

    .accordion:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

.active:after {
    content: "\2212";
}

.panel {
    background-color: #F9F9F9;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    width: 100%;
    transition: max-height 0.2s ease-out;
    box-sizing: border-box;
}

    .panel a {
        width: 100%;
        float: left;
        color: #0576A0;
        font-size: 16px;
        text-decoration: none;
        padding: 2%;
    }

        .panel a:hover {
            background-color: #E5EEF8;
            text-decoration: none;
        }

    .panel select {
        margin: 15px;
        width: calc(100% - 30px);
    }

    .panel .labelchecked:first-child {
        padding-top: 10px;
    }

    .panel .labelchecked {
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding: 0 10px 10px;
    }

        .panel .labelchecked label {
            font-family: 'Myriad Pro';
            font-size: 14px;
        }

section.left .panel {
    background-color: #FFFFFF;
}
section.left .buttonSelected,
section.left .buttonSelected:hover,
.contactoPropietario .buttonSelected {
    padding: 10px 20px;
    font-size: 12px;
    margin: 30px 0 0;
}



section.left .panel select {
    font-size: 13px;
}


/************************************/
/*	 PANTALLA INICIO PROPIETARIO	*/
/************************************/
.boxPropiedad {
    border: 1px solid #D7D7D7;
    width: 100%;
    float: left;
    margin: 2% 0;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

    .boxPropiedad:hover {
        box-shadow: 0 8px 16px -4px rgb(9 30 66 / 25%), 0 0 0 1px rgb(9 30 66 / 8%);
    }

.boxImg {
    float: left;
    position: relative;
    width: 250px;
    height: 188px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .boxImg img {
        display: flex;
        justify-content: center;
        height: 100%;
    }

    .boxImg .alquilado {
        z-index: 1;
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #4DFFD2;
        font-family: Poppins;
        color: #000000;
        font-size: 10px;
        padding: 10px;
        cursor: default;
    }

.boxInfo {
    float: left;
    position: relative;
    height: 188px;
    width: calc(100% - 260px);
    margin: 0 0 0 10px;
}

    .boxInfo p, .lineas {
        width: calc(100% - 20px);
        padding: 0;
        margin: 0 10px 5px 0;
        float: left;
        box-sizing: border-box;
    }

    .boxInfo .tipo, .tipo {
        font-family: Poppins;
        color: #FFFFFF;
        font-size: 8px;
        padding: 4px 8px;
        cursor: default;
        font-weight: bold;
        background-color: #FF2C57;
        background-color: #FF2C57;
        margin: 5px 0 0 0;
        float: left;
    }

    .boxInfo .alias {
        color: #003399;
        font-size: 20px;
        font-family: Poppins Medium;
        margin: 0 10px 5px 0;
    }

    .boxInfo .ubicacion {
        font-family: Myriad Pro;
        color: #545454;
        font-size: 10px;
        font-weight: bold;
        line-height: 10px;
    }

    .boxInfo .direccion {
        font-family: Poppins;
        color: #000000;
        font-size: 16px;
        line-height: 15px;
    }

    .boxInfo .caracteristicas {
        font-family: Myriad Pro;
        color: #000000;
        font-size: 11px;
        line-height: 10px;
    }

    .boxInfo .bottom.lineas {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .boxInfo .lineas p.completo-right {
        float: right;
        padding: 0;
        font-family: Poppins SemiBold;
        color: #003399;
        font-size: 26px;
        width: 27%;
        text-align: right;
        margin: 0;
    }

    .boxInfo .lineas p.completo-left {
        float: left;
        padding: 0;
        margin: 0;
        width: 70%;
    }

.completo-left label.fontBold {
    color: #525252;
    font-weight: bold;
}
.completo-left label {
    width: 100%;
    float: left;
    font-family: Poppins;
    color: #666666;
    font-size: 13px;
    text-align: left;
}

section.left {
    width: 30%;
    float: left;
}
    section.left .searchFiltros {
        width: 80%;
        margin: 0 10%;
    }
        section.left .searchFiltros p {
            text-align: left;
            width: 100%;
            margin: 0;
            float: left;
        }
section.right {
    width: 50%;
    margin: 0 20% 0 0;
    float: left;
}



/************************************/
/*			INTERNA PROPIEDAD		*/
/************************************/
.inmuebleLeft {
    width: 76%;
    float: left;
    margin: 2% 2% 2% 0;
    font-family: 'Myriad Pro';
}


.fullLine {
    width: 100%;
    float: left;
}

    .fullLine h1 {
        font-family: 'Poppins SemiBold';
        font-size: 30px;
        color: #000000;
        margin-top: 0;
    }

.outPaddingTop {
    padding-top: 0;
}

.inmuebleBloque {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.nameBloque {
    width: 100%;
    float: left;
    border-bottom: 3px solid #D7002B;
    color: #D7002B;
    font-family: 'Myriad Pro';
    font-size: 18px;
}

.bodyBloque {
    width: 96%;
    padding: 2%;
    float: left;
}

    .bodyBloque img {
        max-width: 100%;
    }

.bodyBloquePadding {
    width: 96%;
    padding: 2%;
    float: left;
}

.bodyBloqueMiddle {
    width: 50%;
    float: left;
    text-align: left;
    margin: 0 0 5px 0;
}

    .bodyBloqueMiddle bdi {
        color: #999999;
    }

.comodidades {
    float: left;
    margin: 0 10px 10px 10px;
    background-color: #ECDDE9;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: default;
}

    .comodidades:hover {
        background-color: #F22A53;
        color: #FFFFFF;
        transition: all .3s ease-in-out;
    }

.inmuebleRight {
    width: 20%;
    float: left;
    font-family: 'Myriad Pro';
    margin: 2% 0 0 0;
}

.Monto {
    background-color: #FF2C57;
    color: #FFFFFF;
    width: 100%;
    float: left;
    text-align: center;
    padding: 20px 10px;
    cursor: default;
    border-radius: 0 10px;
}

    .Monto span {
        font-size: 20px;
        width: 100%;
        float: left;
        margin: 2% 0 2% 0;
    }

    .Monto p {
        font-size: 28px;
        width: 100%;
        float: left;
        font-family: 'Montserrat';
        margin: 0;
    }

.Garantias {
    width: 100%;
    float: left;
    margin: 30px 0;
    border: 1px solid #DDDDDD;
    padding: 10px;
    border-radius: 0 10px;
}

    .Garantias span,
    .contactoPropietario span.contactoTitle {
        width: 100%;
        float: left;
        margin: 10px 0 20px 0;
        font-family: 'Montserrat';
        font-size: 20px;
        text-align: center;
    }

.GarantiasBody {
    width: 100%;
    float: left;
    margin: 10px 0;
}

    .GarantiasBody .aceptada {
        width: auto;
        padding: 10px;
        background-color: #EEEEEE;
        border: 2px solid #EEEEEE;
        font-size: 13px;
        margin: 5px;
        float: left;
        font-family: 'Myriad Pro';
        cursor: default;
        border-radius: 5px;
    }

        .GarantiasBody .aceptada:hover {
            background-color: #CFCFCF;
            /*color: #FFFFFF;*/
            transition: all .2s ease-in-out;
        }

.contactoPropietario {
    background-color: #EEF0F2;
    width: 100%;
    float: left;
    padding: 10px;
    border-radius: 0 10px;
}
    .contactoPropietario .form-group {
        width: 100%;
        float: left;
        margin: 0 0 15px 0;
    }
    .contactoPropietario .form-group span{
        width: 100%;
        float: left;
        margin: 0;
    }


/* Estilos responsivos */
@media (max-width: 1200px) {
    .header {
        flex-direction: column;
        background-color: #FFFFFF;
    }

        .header nav a {
            margin: 5px 0;
        }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .title {
        font-size: 1.5em;
        margin: 10px 0 0 8%;
        width: 100%;
        float: left;
        box-sizing: border-box;
    }

    .title-section {
        margin: 0 0 10px 0;
        width: 100%;
        float: left;
        box-sizing: border-box;
    }

    .containerLeft,
    .content {
        font-size: 0.9em;
        margin: 10px 0 0 8%;
        width: 85%;
        text-align: justify;
    }

    .decorative-shapes {
        display: none;
    }

    .responsive-img {
        width: auto;
    }

    .responsiveMaxWidth {
        max-width: 600px;
    }

        .responsiveMaxWidth h1 {
            font-size: 24px;
            background-color: #FF2C57;
        }

        .responsiveMaxWidth p {
            font-size: 16px;
            padding: 0px 20% 30px 20%;
        }

    .centeredTop {
        top: 50%;
    }

    .banner-content {
        position: relative;
        top: 100px;
    }

    .lineD::after, .buttonSecond::after {
        display: none;
    }

    .vertical-lines {
        left: 0;
        margin: 10px 0 0 8%;
        width: 50%;
        height: 30px;
    }

    .linea {
        height: 5px; /* Cambia la altura para que las líneas sean horizontales */
        width: 40px; /* Cambia el ancho para que las líneas sean más largas */
        background-color: #FF2C57;
        margin: 5px 0; /* Ajusta los márgenes para separar las líneas horizontalmente */
        display: block;
        animation: moveLeftRight 0.5s infinite ease-in-out alternate; /* Nueva animación */
    }

    @keyframes moveLeftRight {
        0% {
            width: 40px; /* Ancho inicial */
        }

        100% {
            width: 60px; /* Ancho final (ajusta según tus necesidades) */
        }
    }

    .lineaDos {
        height: 5px; /* Cambia la altura para que las líneas sean horizontales */
        width: 80px; /* Cambia el ancho para que las líneas sean más largas */
        background-color: #FF2C57;
        margin: 5px 0; /* Ajusta los márgenes para separar las líneas horizontalmente */
        display: inline-block;
        animation: moveLeftRightLine2 1s infinite ease-in-out alternate; /* Nueva animación */
    }

    @keyframes moveLeftRightLine2 {
        0% {
            width: 80px; /* Ancho inicial */
        }

        100% {
            width: 100px; /* Ancho final (ajusta según tus necesidades) */
        }
    }

    .banner50 {
        width: 100%;
    }

    .full-content {
        width: 80%;
    }

        .full-content p {
            font-size: 26px !important;
        }

    .imgInmuebles {
        width: 100%;
    }

    .containerRight {
        width: 100%;
    }

    .container {
        box-sizing: border-box;
    }

    .imgServicios {
        display: none;
    }

    .faq-container {
        display: inherit;
    }

    .faq {
        width: 90%;
        margin: 0 5% 5% 5%;
    }

    .illustration {
        display: none;
    }

    .bottomFoot .containerLeft {
        width: 100%;
    }

    .bottomFoot .title {
        font-size: 2.0em;
        margin: 0;
    }

    .bannerT {
        margin-bottom: 50px;
    }

    .specialServices .full-content p {
        width: 100%;
    }

    .menu-toggle span {
        background-color: #000000;
    }

    .header .container {
        color: #000000;
    }

    .header nav a {
        margin: 10px 20px 10px 0;
        padding: 0 10px;
    }

    nav.active {
        padding: 20px 0;
    }

    nav a:hover {
        padding: 0 10px;
        width: auto;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 55px;
        left: 0;
        z-index: 10;
        text-align: center;
    }

        nav.show {
            display: flex;
        }

    .menu-toggle {
        display: flex;
    }

    .header.fixed a {
        color: #FFFFFF;
    }

    .menu-toggle {
        display: flex;
    }

    nav.active {
        display: flex;
    }

    .responsiveMaxWidth {
        max-width: 900px;
    }

    .bottomFoot .containerLeft,
    .bottomFoot .containerRight {
        width: 80%;
        margin: 30px 10% 0 10% !important;
    }

    .searchFiltros .boxFiltrosHome {
        width: 100%;
    }

    .searchFiltros .boxFiltrosHome {
        width: 90%;
        margin: 0 auto;
        padding: 0;
        height: auto;
    }
    .searchFiltros select {
        width: 60%;
        margin: 1%;
    }
    section.right {
        width: 65%;
        margin: 0 5% 0 0;
        float: left;
    }

    .inmuebleLeft,
    .inmuebleRight {
        width: 90%;
        margin: 0 5%;
        float: left;
    }
    .inmuebleRight {
        margin: 0 5% 50px 5%;
    }
    .bodyBloque {
        text-align: center;
    }
}


@media (max-width: 900px) {
    .responsiveMaxWidth h1 {
        font-size: 24px;
        margin: 20px 10%;
    }
    section.left {
        width: 100%;
        float: left;
    }
        section.left .searchFiltros {
            width: 90%;
            margin: 0 5%;
        }
            section.left .searchFiltros p {
                padding: 2% 0 2% 0;
            }
    section.right {
        width: 90%;
        margin: 50px 5%;
    }
    .containerLeft, .content {
        text-align: left;
    }
    .formularioResponsive {
        float: left;
        margin: 50px 8% 30px !important;
        width: 85%;
    }
}
@media (max-width: 800px) {
    .filtrosDestacados .accesoFiltros {
        width: 90%;
        margin: 5%;
    }
    .boxImg,
    .boxInfo {
        width: 100%;
        height: 100%;
    }
    .boxImg {
        min-height: 100px;
    }
        .boxImg img {
            width: 100%;
        }
    .boxInfo {
        min-height: 200px;
    }
        .boxInfo .tipo {
            font-size: 10px;
        }

    .boxImg .alquilado {
        font-size: 16px;
        padding: 20px;
    }




}