/* Reset básico */
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  background-color: #fff;
  color: #333;
}

/* Logo */
.header {
  text-align: center;
  padding: 1rem 0 0.5rem;
}

.logo {
  max-width: 220px;
  height: auto;
}

/* Aviso de remodelación */
.aviso-remodelacion {
  text-align: center;
  margin: 1rem auto;
  font-size: 1rem;
  color: #333;
}

/* Contacto directo */
.contacto-directo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  max-width: 900px;
  margin: auto;
}

.tarjeta-contacto {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.tarjeta-contacto h3 {
  margin-top: 0;
  color: #111;
}

.tarjeta-contacto a {
  color: #0056b3;
  text-decoration: none;
}

.tarjeta-contacto a:hover {
  text-decoration: underline;
}

/* Formulario */
.formulario-contacto {
  background-color: #f5f5f5;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.formulario-contacto h2 {
  text-align: center;
  margin-top: 0;
  color: #222;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input[type="text"],
form input[type="email"] {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-enviar {
  margin-top: 1.5rem;
  background-color: #d32f2f; /* Rojo Montessori */
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-enviar:hover {
  background-color: #b71c1c;
}

/* Mensajes */
#mensaje-exito,
#mensaje-error {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}

/* WhatsApp flotante */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: inline-block;
  background-color: transparent;
}

.btn-whatsapp img {
  width: 56px;
  height: 56px;
}
.titulo-remodelacion {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #111;
}
form select,
form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}