/* === Estilos generales === */
body {
  background-color: #faf6f2;
  font-family: 'Poppins', sans-serif;
  color: #4a3f35;
}

/* Marca y logo */
.navbar-brand {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #e5d4b8 !important;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.logo-redondo {
  width: 60px;   /* nuevo ancho */
  height: 60px;  /* nueva altura */
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 10px rgba(229, 212, 184, 0.7);
  object-fit: cover;
}

/* === Navbar === */
.custom-navbar {
  background-color: #fffaf6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-redondo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: #4a3f35;
}

.nav-link {
  color: #4a3f35;
  transition: 0.3s;
  border-radius: 8px;
  padding: 8px 14px;
}

/* === Formulario === */
.recuadro-form {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 40px auto;
  padding: 30px 25px;
  border: 1px solid #e6e3df;
  transition: transform 0.3s, box-shadow 0.3s;
}

.recuadro-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* === Títulos === */
.section-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #4a3f35;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #b2744c;
  display: block;
  margin: 10px auto;
  border-radius: 5px;
}

/* === Inputs === */
.form-control,
.form-select,
textarea {
  border-radius: 12px;
  border: 1px solid #e6e3df;
  padding: 10px;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #b2744c;
  box-shadow: 0 0 5px rgba(178,116,76,0.3);
  outline: none;
}

/* === Botón === */
.btn-primary-custom {
  width: 100%;
  background-color: #b2744c;
  color: #fff;
  border-radius: 20px;
  padding: 10px;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary-custom:hover {
  background-color: #8e5d3c;
  transform: translateY(-2px);
}

/* === Mensaje de éxito === */
#mensajeExito {
  opacity: 1 !important;
  height: auto !important;
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}

/* === Footer === */
.footer-custom {
  background-color: #4a3f35;
  color: #fff;
}

.footer-link {
  color: #e6c7a2;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 576px) {
  .recuadro-form {
    padding: 20px 15px;
    margin: 20px 10px;
  }
}

