/* =========================
   REBECA & BEAUTY - ESTILOS GENERALES
   ========================= */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======== BODY ======== */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #3297a8; /* Azul suave de fondo */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ======== CONTENEDORES ======== */
.containeruno {
  width: 75%;
  margin: 2px auto;
  padding: 5px;
}

.container {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 340px;
  text-align: center;
}

/* ======== IMAGEN DEL LOGO ======== */
img.logo {
  width: 120px;
  height: auto;
  margin-bottom: 2px;
}

.ellogo {
  width: 50%;
  text-align: center;
  padding: 2px;
}

/* ======== TITULOS ======== */
h1 {
  font-size: 1.4rem;
  margin: 5px 0;
  color: #333;
}

h2 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #666;
}

/* ======== FORMULARIO ======== */
form {
  text-align: left;
  margin-top: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #25D366;
  outline: none;
}

/* ======== BOTÓN DE WHATSAPP ======== */
button {
  width: 100%;
  padding: 12px;
  background-color: #25D366; /* Color WhatsApp */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #1DA851;
  transform: scale(1.02);
}

/* ======== PIE DE PÁGINA ======== */
.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}
