@charset "UTF-8";
/* --------------------   RESETEO UNIVERSAL    -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------   GRID LAYOUT  -------------------- */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0, 5fr auto 0, 5fr;
  grid-template-areas: "header header" "main main" "footer footer";
} /* --------------------   HEADER  -------------------- */
.header {
  background-color: #1c0d02;
  font-family: "'Inter', sans-serif";
  font-size: 18px;
  padding: 20px;
  grid-area: header;
}
.header a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fafafa;
}
.header nav {
  padding: 20px;
  list-style: none;
  display: flex;
}
.header nav ul {
  display: flex;
}
.header nav ul li {
  display: flex;
  margin: 10px;
}
.header img {
  background-color: #1c0d02;
  width: 250px;
  height: 100px;
  border: none;
  display: flex;
  justify-content: left;
}
.header .navbar-dark .navbar-nav .nav-link {
  color: #fafafa;
}

/* --------------------   WHATSAPP LOGO    --------------------*/
#whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#whatsapp svg {
  width: 80px;
}

#whatsapp path {
  fill: #1c0d02;
}

/* --------------------   MAIN: aplicar a todo el documento    -------------------- */
.main {
  color: #1c0d02;
  background-color: #fafafa;
  font-family: "'Inter', sans-serif";
  grid-area: main;
}

/* --------------------   SECCIÓN HERO    -------------------- */
.hero-container {
  min-height: 100vh;
  background-image: url("../multimedia/hero2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fafafa;
}
.hero-container div {
  min-height: inherit;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-container div h1 {
  font-family: "Times New Roman", Times, serif !important;
  font-size: 5vw;
  padding-bottom: 30px;
  font-size: 40px;
}
.hero-container div a {
  text-decoration: none;
  color: #fafafa;
  padding: 9px 20px;
  border: 1px solid #fafafa;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.hero-container div a:hover {
  background-color: #fafafa;
  color: #1c0d02;
}
.hero-container div a p {
  margin-bottom: 0 !important;
}

/* --------------------   SECCIÓN PRINCIPAL    -------------------- */
.principal-container {
  margin-top: 4%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.principal-container img {
  width: 300px;
  height: 300px;
}

/* --------------------   SECCIÓN SERVICIOS    -------------------- */
.servicios-container {
  padding: 100px;
  justify-content: space-between;
  align-items: center;
}
.servicios-container div h2 {
  text-align: center;
  text-transform: uppercase;
}

.servicios-container-img {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 50px;
}

.servicios-container-img-botton {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.servicios-img {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: 0, 5s;
}
.servicios-img i {
  font-size: 40px;
  margin-bottom: 10px;
}
.servicios-img i:hover {
  color: #fafafa;
}
.servicios-img:hover {
  background: #1c0d02;
  color: #fafafa;
  transform: scale(1.05);
}

/* --------------------   SECCIÓN QUIENES SOMOS    -------------------- */
.quienes-somos-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quienes-somos-container div h2 {
  text-align: center;
  text-transform: uppercase;
}
.quienes-somos-container div p {
  margin: 50px;
  text-align: justify;
}
.quienes-somos-container div img {
  width: 550px;
  height: 550px;
}

/* --------------------   SECCIÓN DONDE ESTAMOS    -------------------- */
.donde-estamos-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(84, 58, 58, 0.2862745098);
  padding: 15px 15px 10px;
}
.donde-estamos-container div {
  width: 50%;
}
.donde-estamos-container div h2 {
  text-align: center;
  text-transform: uppercase;
}
.donde-estamos-container div p {
  margin: 50px;
  text-align: justify;
}

#mapa {
  width: 100%;
  height: 350px;
}

/* --------------------   SECCIÓN CONTACTO     -------------------- */
.contacto-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contacto-container div h2 {
  text-align: center;
  text-transform: uppercase;
  padding: 0px 50px 15px 50px;
}
.contacto-container div img {
  width: 550px;
  height: 550px;
}

.contacto-form-container {
  width: 100%;
}

.contacto-form {
  margin: 0px 100px 0px 100px;
  box-sizing: border-box;
}

.boton-enviar {
  text-decoration: none;
  background-color: #fafafa;
  color: #1c0d02;
  padding: 9px 20px;
  border: 1px solid #1c0d02;
  transition: all 0.3s ease-in-out;
}
.boton-enviar:hover {
  background-color: #1c0d02;
  color: #fafafa;
  border: 1px solid #1c0d02;
}

/* --------------------   FOOTER    -------------------- */
.footer-container {
  padding: 100px 30px;
  width: 100%;
  color: #fafafa;
  background-color: #1c0d02;
  grid-area: footer;
  display: flex;
  text-align: center;
  justify-content: center;
}

.footer-left {
  padding: 20px 20px;
}

.footer-center {
  padding: 20px 20px;
}
.footer-center img {
  max-width: 50%;
  filter: invert(100%);
}

.footer-right {
  padding: 20px 20px;
}

/* --------------------   MEDIA QUERIES  -------------------- */
/* ----------   PRIMER CAMBIO  ---------- */
@media only screen and (max-width: 1280px) {
  .grid-container {
    zoom: 65%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "header" "main" "footer";
  }
  .header {
    justify-content: space-around;
  }
  .principal-container {
    margin-top: 0px;
  }
  .principal-container img {
    padding: 25px 0px 0px 0px;
    width: 550px;
    height: 550px;
  }
  .servicios-container {
    padding: 50px 0px 0px 0px;
  }
  .servicios-container {
    flex-direction: column;
    align-items: center;
  }
  .quienes-somos-container {
    flex-direction: column;
    align-items: center;
    padding: 25px;
  }
  .quienes-somos-container div h2 {
    padding: 50px 0px 0px 0px;
  }
  .donde-estamos-container {
    flex-direction: column;
    align-items: center;
    padding: 25px 25px 50px 25px;
  }
  .donde-estamos-container div h2 {
    padding: 25px 0px 0px 0px;
  }
  .donde-estamos-container div {
    width: 100%;
  }
  .donde-estamos-container div p {
    margin: 50px;
    text-align: justify;
  }
  .contacto-container {
    flex-direction: column;
    align-items: center;
    padding: 50px 25px 25px 25px;
  }
  .contacto-container div h2 {
    padding: 50px 0px 0px 0px;
  }
  .footer-container {
    padding: 50px 30px 40px 30px;
  }
}
/* ----------   SEGUNDO CAMBIO  ---------- */
@media screen and (max-width: 910px) {
  .servicios-container-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 50px;
  }
}
/* ----------   TERCER CAMBIO  ---------- */
@media screen and (max-width: 700px) {
  body {
    width: 100%;
  }
  .footer-container {
    flex-direction: column;
  }
}
/* ----------   CUARTO CAMBIO  ---------- */
@media screen and (min-width: 1000px) {
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header nav {
    width: 100%;
  }
  #navbarNav {
    justify-content: flex-end !important;
  }
}/*# sourceMappingURL=style.css.map */