
html {
  box-sizing: border-box;
  font-size: 62.5%; /** Reset para REMS - 62.5% =10px de 16px **/
}
*, *::before, *::after {
  box-sizing: inherit;
}
body{
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  line-height: 2;
}
/** Globales **/
img {
  max-width: 100%
}
.contenedor {
  max-width: 120rem; /** =1200px **/
  margin: 0 auto;
  }

  h1 {
    font-size: 3.8rem;

  }
  h2{
    font-size: 3.4rem;
  }
  h3 {
    font-size: 2.8rem;
  }
  h4 {
    font-size: 2.3rem;
  }
 /* Utilidades */
 .seccion {
   margin-top: 2rem;
   margin-bottom: 2rem;
}

  .fw-300 {
    font-weight: 300;
  }

 .centrar-texto {
   text-align: center;
 }
 .d-block {
   display: block!important;
 }
 .contenido-centrado {
   max-width: 800px;
   text-align: justify;
 }
 /** Botones **/

  .boton {
   color: #ffffff;
   font-weight: 700;
   text-decoration: none;
   font-size: 1.8rem;
   padding: 1rem 3rem;
   margin-top: 3rem;
   display: inline-block;
   text-align: center;
   border: none;
}
.boton:hover {
  cursor: pointer;
}
 .boton-rojo {
   background-color: #AA0400;
 }
 .boton-verde {
   background-color: #2386CC;
 }

/* Header */
.site-header {
  background-color: #333333;
  padding: 0rem 0 1rem 0;
}
.site-header.inicio {
  background-image: url(../img/header3.jpg);
  background-position: center;
  background-size: cover;
  height: 80vh;
  min-height: 50rem;
  }
  .contenido-header {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }
.contenido-header H1 {
  color: #ffffff;
  padding-bottom: 2rem;
  max-width: 70rem;
  line-height: 1;

  }
.barra {
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
  align-items: center;
  }

/*Navegacion*/
.navegacion a {
color: white;
text-decoration: none;
font-size: 1.8rem;
margin-right: 2rem;
}
.navegacion a:hover{
  color: #AA0400;
}
.navegacion a:last-of-type{
  margin: 0;
}

/*Iconos Nosotros */
.iconos-nosotros {
  display: flex;
  justify-content: space-between;
    }
.icono {
  flex-basis: calc(33.3% - 1rem);
  text-align: center;
}
.icono h3 {
  text-transform: uppercase;
}

/** Anuncios **/
.contenedor-anuncios {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.anuncio {
  flex: 0 0 calc(33.3% - 1rem);
  border: 1px solid #B5B5B5;
  background: #F5F5F5;
  margin-bottom: 2rem;
  }
.contenido-anuncio {
  padding: 2rem;
}
.contenido-anuncio h3,
.contenido-anuncio p {
  margin: 0;
  }
  .precio {
    color: #AA0400;
    font-weight: 700;
  }
  .iconos-caracteristicas {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    max-width: 500px;
    flex: 1;
  }
  .iconos-caracteristicas li{
    /* flex: 1; */
    display: flex;
  }
  .iconos-caracteristicas li img {
    margin-right: 2rem;
  }
.ver-todas {
  display: flex;
  justify-content: flex-end;
}

/** Contacto Home **/
.imagen-contacto {
  background-image: url(../img/encuentra.jpg);
  background-position: center center;
  background-size: cover;
  height: 40rem;
  display: flex;
  align-items: center;
}
 .contenido-contacto {
   flex: 1;
   color: #ffffff;
   font-size: 1.8rem;
 }

/** Seccion inferior **/
.seccion-inferior {
  display: flex;
  justify-content: space-between;
}
.seccion-inferior .blog  {
  flex-basis: 60%;
}
.seccion-inferior .testimoniales {
  flex-basis: calc(40% - 2rem);
}
.entrada-blog {
  display: flex;
  justify-content: space-between;
}
.entrada-blog .imagen {
  flex-basis: 40%;
}
.entrada-blog .texto-entrada {
  flex-basis: calc(60% - 3rem);
}
.texto-entrada a {
  color: #000000;
  _.

  text-decoration: none;
}+.texto-entrada h4 {
  margin: 0;
  line-height: 1.4;
}
.texto-entrada h4::after {
  content: '';
  display: block;
  width: 15rem;
  height: .5rem;
  background-color: #AA0400;
  margin-top: 1rem;
}
.texto-entrada span {
  color: #AA0400;
}
/** Testimoniales **/
.testimonial {
  background-color: #AA0400;
  font-size: 2.4rem;
  padding: 2rem;
  color: #FFFFFF;
  border-radius: 5%;
}

.testimonial p{
  text-align: right;
  padding-right: 2rem;
}
.testimonial blockquote::before {
  content: '';
  background-image: url(../img/Comillas.svg);
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  top: 1.6rem;
  left: -3rem;

}
.testimonial blockquote {
  position: relative;
  padding left: 5rem;
  font-weight: 300;
  text-align: justify;
}
/*** Footer ***/
.site-footer {
  background-color: #333333;
  }
  .contenedor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .copyright {
    margin-left: 0;
    color: #ffffff;
  }

  /** INTERNAS **/
  /** NOSOTROS **/
  .contenido-nosotros {
    display: grid;
   grid-template-columns: 45% 55%;
   grid-column-gap: 2rem;
   text-align: justify;
  }

  .texto-nosotros blockquote {
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    padding: 3rem 0;
    text-align: justify;
  }

  /**ANUNCIO**/
  .resumen-propiedad {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /** CONTACTO **/
.contacto p {
    font-size: 1.5rem;
    color: #333333;
    margin: 2rem 0 0 0;
  }
legend {
  font-size: 2.2rem;
  color: #333333;

}
  label {
    font-weight: 700;
    text-transform: uppercase;
    display: block;

  }

  /** FORMULARIO **/
  input:not([type=submit]),
  textarea,
  select {
    padding: 1rem;
    display: block;
    width: 100%;
    background-color: #e1e1e1;
    margin-bottom: 2rem;
    border: none;
    border-radius: 1rem;
  }
  input[type="radio"] {
    width: auto;
    margin: 0;
  }
  select {
    -webkit-appearance: none;
  }
textarea {
  height: 10rem;
  }
  .forma-contacto {
    max-width: 30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

  }
