body {
  background: #f7fbff;
  padding-top: 80px;
}

.contacto {
  max-width: 600px;
  margin: 60px auto;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.contacto h1 {
  color: #0077b6;
  margin-bottom: 10px;
}

.contacto p {
  color: #555;
  margin-bottom: 25px;
}

.campo {
  text-align: left;
  margin-bottom: 18px;
}

.campo label {
  display: block;
  font-weight: 600;
  color: #023e8a;
  margin-bottom: 6px;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.8px solid #00b4d8;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  transition: border-color 0.2s;
}

.campo input:focus,
.campo textarea:focus {
  border-color: #0096c7;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-pedir {
  background: #05ca26;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-pedir:hover {
  background: #00b66a;
}

.btn-email {
  background: #023e8a;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-email:hover {
  background: #001f54;
}
