/* ======= Leer antes de reservar – estilo referencia ======= */

.notice.card{
  padding:0;
  border:0;                     /* sin borde externo */
  border-radius:10px;
  background:#FBFCFE;
  box-shadow:0 1px 2px rgba(16,24,40,.04);
}

/* Título azul + línea azul */
.notice.card h2{
  margin:0;
  padding:18px 22px 14px;
  color: var(--blue, #003d76);  /* azul del tema */
  line-height:1.1;
  border-bottom:3px solid rgba(0,61,118,.25); /* línea azul */
}

/* Tabla sin bordes verticales ni caja */
.info-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}

/* Celdas sin borde; solo separadores horizontales suaves */
.info-table th,
.info-table td{
  padding:14px 18px;
  vertical-align:top;
  border:0;    
  text-align: left;                 /* sin bordes por defecto */
}
.info-table tr + tr th,
.info-table tr + tr td{
  border-top:1px solid #eaf0f9; /* solo líneas horizontales */
}

/* Columna izquierda (etiquetas) */
.info-table th{
  width:260px;
  color:#173a63;                /* azul grisáceo fuerte */
  font-weight:800;
  letter-spacing:.01em;
  background:transparent;       /* sin fondo */
}

/* Contenido */
.info-table td{ color:#243a55; }
.info-table td p{ margin:0 0 .6rem 0; }

/* Resaltados dentro del texto (¡Gratis!...) */
.info-table td b,
.info-table td strong{
  color:#0c5aa6;
  font-weight:800;
}

/* Logos de tarjetas (si los usás) */
.info-table .cards{ display:flex; align-items:center; gap:10px; }
.info-table .cards img{ height:26px; width:auto; display:inline-block; }

/* Responsive */
@media (max-width: 900px){
  .notice.card h2{ font-size:22px; padding:14px 16px; }
  .info-table th{ width:200px; }
}
@media (max-width: 620px){
  .info-table th{ width:auto; display:block; }
  .info-table td{ display:block; padding-top:8px; }
}
