* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #5c5c5c;
    background-color: #f7f7f7;
}

.azul {
    color: #005cb9;
}

.svg-azul {
    color: #a1bdfe;
}

.icono-azul {
    color: #5bb1fa;
}

.bold {
    font-weight: 700 !important;
}


/* SHOWCASE */

#showcase {
    background-image: url("../images/landing-deskop-100.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
}


/*SECTION PROMO TEXT*/

#promo-text>p {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}


/* ZONAS */

#zonas {
    width: 40vw;
    font-size: 16px;
    line-height: 1;
}

#zonas>button {
    border: none;
    background-color: transparent;
    color: #000;
    padding: 0 15px;
    text-transform: uppercase;
    padding-bottom: 7px;
}

#zonas>button:focus {
    outline: none;
}

.btn-active {
    color: #006eac !important;
    border-bottom: 2px #005cb9 solid !important;
}


/* PROYECTOS */

.ficha-proyecto {
    background-color: #fff;
    min-height: 530px;
}

.ficha-proyecto img {
    min-height: 191px;
}

.detalle-proyecto {
    padding: 1rem;
    min-height: 339px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sm-text {
    font-size: 12px;
}

.nombre-proyecto {
    font-size: 20px;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    color: #000;
    line-height: 1;
}

.linea {
    width: 50px;
    border-bottom: 3px #005cb9 solid;
    margin: 7px 0;
}

.oferta {
    padding-bottom: 4px;
}

.oferta p {
    line-height: 1;
    font-weight: 700;
    color: #005FAE;
}

.desde {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 7px;
    line-height: 1;
}

.uf {
    font-size: 18px;
    color: #000;
}

.btn-cotizar {
    background-color: #005cb9;
    width: 200px;
    height: 40px;
    padding: 4px 15px;
    border: none;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direccion>p {
    line-height: 1;
}

.antes {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1;
}

.descuento {
    background-color: #005cb9;
    color: #ffffff;
    padding: 2px 7px;
    width: fit-content;
    margin-bottom: 5px;
}

footer {
    background-color: #005cb9;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 12px;
}

footer a,
footer a:hover {
    color: #ffffff;
}


/* MEDIA */

@media (max-width: 1024px) {
    #showcase {
        height: 30vh;
    }
}

@media (max-width: 750px) {
    #showcase {
        background-image: url("../images/landing-mobile-100.jpg");
        background-size: cover;
        height: 60vh;
    }
    #zonas {
        width: 80vw;
    }
}

@media (max-width: 576px) {
    .row {
        margin-top: 0 !important;
    }
    .ficha-proyecto {
        margin-bottom: 1.5rem;
    }
}