html, body {
  margin: 0;
  padding: 0;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f8f8f8;
  height: 100%;
  color: #333;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 960px;
  margin: auto;
}

h1 {
  color: #555555;
  margin: 0
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.contact-box {
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.contact-box p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-box a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 999px;
  background-color: #0ba1a6;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-box a img {
  width: 30px;
  height: auto;
  filter: invert(1);
}

.footer {
  margin-top: 60px;
  font-size: 0.85rem;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer p {
  padding-right: 20px;
  border-right: 1px solid #ccc;
}

.footer p:last-child {
  padding-right: 0;
  border-right: none;
}

.footer img {
  height: 24px;
  width: auto;
}

/* Media Queries para Tablets */
@media screen and (max-width: 1024px) {
  .container {
    max-width: 90%;
  }

  .logo {
    width: 200px;
    margin-bottom: 30px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .contact-box p {
    font-size: 1rem;
  }

  .contact-box a {
    font-size: 1.1rem;
  }
}

/* Media Queries para Móviles */
@media screen and (max-width: 768px) {
  .container {
    max-width: 80%;
    margin: auto;
  }

  .logo {
    width: 150px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  .contact-box {
    text-align: left;
    margin-top: 40px;
  }
}

/* Media Queries para Móviles Pequeños */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }

  p {
    font-size: 0.9rem;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }

  .contact-box p {
    font-size: 0.9rem;
  }
}