@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

ul {
  list-style: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  background-color: #1f2937;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

header img {
    width: 150px;
    height: auto;
}

header nav ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

button a,
header a {
  color: #e5e7eb;
  font-size: 18px;
  text-decoration: none;
}

.container-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  gap: 40px;
}

.c1-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  margin-left: 40px;
}

#header-hero {
  font-size: 48px;
  color: #f9faf8;
  font-weight: 900;
}

.container-1 p {
  font-size: 18px;
  color: #e5e7eb;
}

#consulta {
  background-color: #3882f6;
  color: white;
  border-radius: 10px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
}

.imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.imagen img {
  max-width: 80%;
  min-width: 280px;
  height: auto;
  border-radius: 10px;
}

.container-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 80px;
  background-color: white;
}

#servicios {
  font-size: 36px;
  color: #1f2937;
  font-weight: 900;
  margin-bottom: 40px;
}

.servicios-lista {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.servicios-lista article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  gap: 10px;
}

.servicios-lista article img {
  width: 50%;
  height: auto;
}

.container-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 80px;
  background-color: white;
}

#nosotros {
  font-size: 36px;
  color: #1f2937;
  font-weight: 900;
  margin-bottom: 30px;
}

blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

blockquote p {
  background-color: #e5e7eb;
  font-size: 36px;
  font-weight: 300;
  color: #1f2937;
  padding: 40px;
  border-radius: 10px;
  font-style: italic;
  text-align: justify;
}

blockquote footer {
  margin-top: 20px;
}

.container-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 80px;
  background-color: white;
}

#contacto {
  font-size: 36px;
  color: #1f2937;
  font-weight: 900;
  margin-bottom: 30px;
}

.contacto-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #3882f6;
  color: white;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
}

.contacto-box address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
  flex: 1;
}

.contacto-box a {
  color: white;
  text-decoration: underline;
}

.horarios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.horarios ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: circle;
  margin-inline-start: 30px;
}


#final-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 80px;
  background-color: #1f2937;
  font-size: 18px;
  color: #e5e7eb;
  margin-top: auto;
}