/* ficha.css */

/* Títulos */
h4.ficha-title {
  font-size: 1.3rem;
  color: #034a85;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.8em;
}

/* Tabla general */
table.galicia-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 850px;
  margin: 1.5em 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

table.galicia-table th,
table.galicia-table td {
  border: 1px solid #d6e4f5;
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

table.galicia-table th {
  background-color: #e6f0fa;
  font-weight: 600;
  width: 30%;
  color: #034a85;
}

table.galicia-table tr:nth-child(even) td {
  background-color: #f5faff;
}

/* Secciones */
.section {
  margin-bottom: 2.5em;
}

/* Recomendaciones */
.check-text {
  display: flex;
  align-items: center;
  gap: 0.8em; 
}
.check {
  color: #28a745;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.text {
  flex: 1;
}

/* Iconos */
.icon {
  width: 30px;
  height: 30px;
  stroke: #034a85;
}

/* Link a mapas */
a.maps-link {
  display: inline-block;
  margin-top: 0.5em;
  color: #0288d1;
  text-decoration: none;
  font-weight: bold;
}
a.maps-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  h4.ficha-title { font-size: 1.1rem; gap: 6px; }
  table.galicia-table th,
  table.galicia-table td { padding: 10px 12px; font-size: 0.95rem; }
  .check-text { gap: 0.6em; }
}
@media (max-width: 480px) {
  h4.ficha-title { font-size: 1rem; gap: 5px; }
  table.galicia-table th,
  table.galicia-table td { padding: 8px 10px; font-size: 0.9rem; }
  .check-text { gap: 0.5em; }
}
@media (min-width: 1200px) {
  table.galicia-table { max-width: 1000px; }
  h4.ficha-title { font-size: 1.5rem; }
  table.galicia-table th,
  table.galicia-table td { padding: 16px 22px; font-size: 1.05rem; }
}
