/* assets/css/styles.css
   Estilos compartidos para index.php y enviar_formulario.php
*/

/* Tipografía y fondo */
body {
  padding-top: 0;
  background: #f5f5f5;
  color: #6c757d;
  font-family: Montserrat, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reutilizable: caja principal con efecto neumórfico (usar en navbar/banner contenedor) */
.bg-body-tertiary {
  border-radius: 10px;
  background-color: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

/* Encabezados */
h1, .display-5 {
  color: #009100;
  font-weight: 700;
}

/* Botón corporativo (usar junto a class="btn btn-success") */
.btn-success {
  background-color: #009100 !important;
  border-color: #009100 !important;
  border-radius: 10px;
  color: #fff;
}

/* Formularios - apariencia genérica, respeta Bootstrap pero suaviza bordes */
.form-control, .form-select, textarea.form-control {
  border-radius: 6px;
  box-shadow: none;
}

/* Fieldsets */
fieldset {
  border: 0;
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  background-clip: border-box;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.25);
}
legend {
  color: #009100;
  font-weight: 600;
}

/* Navbar logo */
.navbar .navbar-brand img {
  max-height: 64px;
  width: auto;
  display: block;
}

/* Banner image dentro del contenedor .bg-body-tertiary */
.bg-body-tertiary img,
.banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Contenedor principal */
.container.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 15px;
}

/* Mensaje de éxito (separado del alert) - tarjeta centrada */
.radicado-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.radicado-card .card {
  border-radius: 10px;
}
.radicado-card h2 {
  color: #009100;
  font-size: 2rem;
  margin: 0.25rem 0;
  font-weight: 800;
}

/* Pequeñas utilidades */
.text-success-strong {
  color: #009100;
  font-weight: 700;
}

/* Espaciados */
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }

/* Responsive tweaks */
@media (max-width: 576px) {
  .navbar .navbar-brand img { max-height: 48px; }
  .radicado-card h2 { font-size: 1.6rem; }
}
