* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
img {
  max-width: 100%;
}

.bold {
  font-weight: 700;
}
button.burger-button {
  border: none;
  background-color: transparent;
}

.body-bg {
  /* width: 100vw; */
  /* height: 100vh; */
  /* max-width: 800px; */
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6f6f6;
}
.topbar {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: teal;
  position: fixed;
  z-index: 10;
  background-color: rgb(254, 254, 254);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.06);
}
.top-nav {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 100%; */
  height: 80px;
  /* top: 0; */

  padding: 0 20px;
}

.burger-button {
  display: flex;
  align-items: center;
  /* background-color: aqua; */
  /* padding: 4px;
  margin: 10px; */
}
.menu-icon {
  width: 48px;
  /* background-color: aqua; */

  /* background-color: #a7a2a2; */
}
.main-content {
  z-index: 1;
  padding: 0 20px;
  max-width: 800px;
  /* margin-bottom: 50px; */
}
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 30vh 0 10vh 0;
}

.logo {
  max-width: 250px;
  margin-bottom: 50px;
}

.title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: #1b1b1a;
  line-height: 100%;
}

.services {
  /* max-width: 600px; */
  display: flex;
  text-align: center;
  width: 100%;
  gap: 2px; /* Espacio entre los ítems */
  margin-bottom: 100px;
}

.services__card {
  transform: scale(0.95);
  opacity: 0.75;
  flex: 1 1 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services__icon {
  width: 64px;
}
.services__title {
  padding: 10px 2px;
  font-size: 16px;
  line-height: 20px;
}

.services__extend {
  margin: 10vh 0;
  padding: 0 10px;
}
.services__extend p {
  margin-bottom: 2rem;
}
.services__extend h3 {
  color: #454545;
  font-size: 2rem;
  font-weight: 200;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.contact__title {
  width: 100%;
  font-weight: 200;
  font-size: 2rem;
  margin-bottom: 30px;
  border-bottom: solid 1px #ccc;
}
.contact-icon {
  margin-right: 5px;
  line-height: 20px;
  max-width: 28px;
}

.contact__traditional,
.contact__whatsapp {
  font-size: 1.1rem;

  display: flex;
  text-align: center;
  justify-content: space-evenly;
  width: 100%;
  align-items: center;
  margin-bottom: 30px;
}

.contact__traditional a,
.contact__whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  & span {
    font-weight: 600;
    color: initial;
  }
}
@media (max-width: 400px) {
  .contact__traditional,
  .contact__whatsapp {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .contact__traditional a,
  .contact__whatsapp a {
    margin-bottom: 10px;
  }
}
.footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* background-color: #fefefe; */
}
.map {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin-bottom: 20px;
}
.address {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262624;
  color: #fefefe;
  width: 100%;
  height: 60px;
}
