
/* ============================
   INDEX - SPEN PROPIEDADES
============================ */

.hero-home{
    position:relative;
    height:380px;
    background:url("../assets/banner.jpg") center center;
    background-size:cover;
    display:flex;
    align-items:center;
}

.hero-home .overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,.45);
}

.hero-home .contenido{
    position:relative;
    z-index:2;
    max-width:1200px;
    width:92%;
    margin:auto;
    color:#fff;
}

.hero-home h1{
    font-size:50px;
    line-height:1.08;
    margin-bottom:20px;
    max-width:700px;
}

.hero-home p{
    font-size:18px;
    color:#f0c24a;
    font-weight:1000;
}

/*====================================================
=            BUSCADOR HOME
====================================================*/

/*====================================================
=            BUSCADOR HOME
====================================================*/

.buscador-home{

    width:72%;

    max-width:980px;

    margin:-38px auto 18px 65px;

    background:#f0c24a;

    border-radius:14px;

    padding:8px;

    box-shadow:0 8px 22px rgba(0,0,0,.15);

    position:relative;

    z-index:999;

}

.buscador-home .fila{

    display:grid;

    grid-template-columns:1.8fr 1fr 1fr .9fr;

    gap:8px;

    margin-bottom:8px;

}

.buscador-home .fila:last-child{

    margin-bottom:0;

}

.buscador-home input,
.buscador-home select{

    width:100%;

    height:38px;

    background:#fff;

    border:1px solid #e2e2e2;

    border-radius:8px;

    padding:0 14px;

    font-size:14px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.25s;

}

.buscador-home input:focus,
.buscador-home select:focus{

    border-color:#8c0000;

    box-shadow:0 0 0 3px rgba(140,0,0,.10);

}

.buscador-home button{

    width:100%;

    height:38px;

    background:#8c0000;

    color:#fff;

    border:none;

    border-radius:8px;

    font-size:15px;

    font-weight:700;

    font-family:'Poppins',sans-serif;

    cursor:pointer;

    transition:.25s;

}

.buscador-home button:hover{

    background:#730000;

}



/*====================================================
=                BENEFICIOS HOME
====================================================*/

.beneficios{

    max-width:1200px;

    margin:35px auto 50px;

}

.beneficios .contenedor{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:35px;

    align-items:start;

}

.beneficio{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    text-align:left;

    padding:0;

}

.beneficio i{

    font-size:38px;

    color:#d6a300;

    min-width:42px;

    text-align:center;

    flex-shrink:0;

}

.beneficio span{

    font-size:15px;

    font-weight:600;

    color:#222;

    line-height:1.25;

}

/* DESTACADAS */

.destacadas{
    max-width:1200px;
    margin:50px auto;
}

.destacadas h2{
    font-size:40px;
    margin-bottom:25px;
}

.destacadas .cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CTA */

.acciones-home{
    max-width:1200px;
    margin:50px auto;
}

.acciones-home .contenedor{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.accion{
    color:#fff;
    border-radius:14px;
    padding:34px;
    min-height:90px;
}

.vender{background:#8c0000;}
.tasar{background:#d7a11d;color:#222;}
.comprar{background:#222;}

@media(max-width:900px){

.hero-home{
    height:380px;
}

.hero-home h1{
    font-size:35px;
}

.buscador-home .fila,
.beneficios .contenedor,
.destacadas .cards,
.acciones-home .contenedor{
    grid-template-columns:1fr;
}

}

footer img{
    width:50px;
    height:auto;
    display:block;
    margin:0 auto 15px;
}