/* ============================================================
   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; /* azul por defecto */
  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,
    border-left-color 0.25s ease;
}

/* ============================================================
   HOVER — GLOW INTERNO (INSET) NARANJA + ÁMBAR ELEGANTE
   ============================================================ */
.sires-page .db-card:hover {
  transform: translateY(-4px);

  /* Glow interno elegante */
  box-shadow:
    inset 0 0 10px rgba(227, 100, 20, 0.22),   /* naranja interno suave (#E36414) */
    inset 0 0 18px rgba(236, 159, 5, 0.18),    /* ámbar interno leve (#EC9F05) */
    0 6px 12px rgba(0, 0, 0, 0.10);            /* sombra externa discreta */

  /* Borde cálido + barra naranja Pantone */
  border-color: #EFC894;       /* dorado editorial suave */
  border-left-color: #E36414;  /* barra lateral naranja Pantone */
}

/* 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);
}
