/* ------------------------------------------
   STYLES.CSS — ESPECIES/CARETTA_CARETTA (/)
   ------------------------------------------*/

/* TOKENS */
:root {
  --deep:    #0D2B4E;
  --mid:     #1A6B8A;
  --turq:    #00B4D8;
  --turq-lt: #48CAE4;
  --white:   #FFFFFF;
  --radius:  14px;
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body); font-size: 17px; color: var(--white);
  background: linear-gradient(180deg,
    #0D2B4E 0%, #0F3560 8%, #1A6B8A 18%, #0D7FA0 30%,
    #0B6E8C 42%, #0A5C78 54%, #093D58 66%,
    #0A4D6A 78%, #0C3A58 90%, #0D2B4E 100%);
  min-height: 100vh;
}

/* ── FICHA RÁPIDA ── */
.ficha-section { padding: 4rem 2rem 3rem; }
.ficha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem;
}
.ficha-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.ficha-label {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--turq-lt);
}
.ficha-value { font-size: .95rem; color: rgba(255,255,255,.88); }
.ficha-value em { font-style: italic; }
.status-danger    { color: #ffb3a7; }
.status-vulnerable{ color: #ffe0a0; }
.status-critical  { color: #ffaaaa; }
.status-lc        { color: #a0e4c0; }

/* TABLA TAXONÓMICA */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 1rem;
}
thead th, table tr th {
  background: rgba(72,202,228,.15);
  color: var(--turq-lt);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
table tr td {
  padding: .8rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: .98rem;
}
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: rgba(255,255,255,.04); }
table {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
}

/* NOMBRE GRID */
.nombre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0;
}
.nombre-item {
  background: rgba(255,255,255,.06);
  border: .5px solid rgba(255,255,255,.05);
  border-radius: 3px;
  padding: .5rem .5rem;
  font-size: .98rem;
  color: rgba(255,255,255,.85);
}