* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.top-color {
  background-color: #6d2c34;
  padding: 20px;
}

.container-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.container-header h1 {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 8px;
}

.container-header h2 {
  font-size: 1.2em;
  font-weight: 500;
}

.container-header p {
  font-size: 0.8em;
  margin: 20px auto;
}

.container-services,
.container-call {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 32px;
  margin-bottom: 24px;
  border: 3px solid #626365;
  border-radius: 10px;
  background-color: #f4f4f5;
}

.container-services p,
.container-call p {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 16px;
}

.list li {
  font-size: 0.8em;
}

.btn {
  display: inline-block; 
  margin-top: 8px;
  background: linear-gradient(to right, #000000, #6d2c34);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 100px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(to right, #1a1a1a, #7e363e);
  transform: scale(1.05);
}

.container-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

}

.container-social a img:hover {
  transform: scale(1.05);
}

.cite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
   font-size: 0.8em;
   margin: 60px 80px 16px 80px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6d2c34;
  padding: 20px;
  color: #fff;

}

