@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;700&display=swap');

* {
  font-family: 'Ubuntu', sans-serif;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9f9f9;
}

.contacto {
  flex-grow: 1;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.contacto h2 {
  font-size: 3rem;
  color: #f99e61;
  margin-bottom: 2rem;
  font-weight: 700;
}

.info-contacto {
  background-color: #57ace4;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 2rem auto;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
}

.info-contacto a {
  color: #f99e61;
  text-decoration: none;
}

.info-contacto a:hover {
  text-decoration: underline;
}


.bottom-nav {
  background: #f99e61;
  border-radius: 40px;
  box-shadow: 0 4px 12px #cf8250;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}

.bottom-nav .bubble {
  background-color: white;
  color: #f99e61;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px #805132;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.bottom-nav .bubble:hover {
  background-color: #57ace4;
  color: white;
  transform: scale(1.05);
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  color: #8e8e93;
  background-color: #fff;
  font-weight: 300;
}
