/* ============================================================
   ESTILOS PARA LA PÁGINA SIRES (ENCAPSULADOS EN .sires-page)
   Diseño premium editorial — USTA / Ideas Claras
   ============================================================ */

/* TITULOS PRINCIPALES */
.sires-page .db-section-title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0C4767;
  margin: 0.6rem 0 0.4rem;
  border-bottom: 3px solid #E36414;
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* SUBTÍTULOS */
.sires-page .db-section-subtitle {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0C4767;
  margin: 0.1rem 0 0.45rem;
  padding-left: 0.5rem;
  border-left: 4px solid #E36414;
}

/* GRID ESTÉTICO — SIEMPRE 2 COLUMNAS EN ESCRITORIO */
.sires-page .db-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas fijas */
  gap: 0.7rem;
  margin: 0.2rem 0 0.8rem 0;
}

/* RESPONSIVE — EN PANTALLAS PEQUEÑAS, 1 COLUMNA */
@media (max-width: 900px) {
  .sires-page .db-grid {
    grid-template-columns: 1fr;
  }
}

/* TARJETAS — FONDO BLANCO ELEGANTE + SEPARACIÓN PREMIUM */
.sires-page .db-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ddd;
  border-left: 6px solid #0C4767;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  overflow: hidden;
  margin: 0.45rem 0.15rem; /* separación elegante entre tarjetas */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* HOVER — GLOW PREMIUM DORADO (HACIA ADENTRO) */
.sires-page .db-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.15),              /* sombra base profesional */
    inset 0 0 0 3px rgba(242, 195, 107, 0.55),   /* aro dorado interno */
    inset 0 0 22px rgba(255, 215, 130, 0.35),    /* brillo dorado interno */
    inset 0 12px 18px rgba(255,255,255,0.35),   /* luz superior interna */
    inset 0 -10px 16px rgba(0,0,0,0.08);         /* profundidad inferior */

  border-color: #F2C36B;                         /* dorado editorial */
  border-left-color: #E36414;                    /* acento institucional */
}

/* LOGOS */
.sires-page .db-card-logo {
  flex: 0 0 165px;
  text-align: center;
  margin-right: 1rem;
}

.sires-page .db-card-logo img {
  max-width: 165px;
  max-height: 95px;
  object-fit: contain;
}

/* CONTENIDO DE TARJETAS */
.sires-page .db-card-body {
  flex: 1;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #222;
}

.sires-page .db-card-body p {
  margin: 0 0 0.55rem 0;
}

/* ============================================================
   BOTÓN “INGRESAR” — ÁMBAR PREMIUM
   ============================================================ */
.sires-page .db-btn {
  background: linear-gradient(135deg, #EC9F05, #E36414); /* ÁMBAR → NARANJA */
  color: #ffffff;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  font-size: 1.15rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.sires-page .db-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}
