body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
width: 100%;
    max-width: 1000px;
    margin: auto;

}
 


.table {
    width: 100%;
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: fixed;
}

.table caption {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 8px 0px;
}

.table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
}

.table th, .table td {
    font-size: 14px;
    padding: 8px;
    text-align: center;
}

.table thead th{ 
    text-transform: uppercase;
    background-color: #ddd;
}


.table tbody td:hover {
    background-color: rgb(173, 229, 243);
}

@media screen and (max-width: 600px) {
    .table {
        border: 0px;
    }
    .table caption {
        font-size: 22px;
    }
    .table thead {
        display: none;
    }
    .table tr {
        margin-bottom: 8px;
        border-bottom: 4px solid #ddd;
        display: block;
    }
    .table th, .table td {
        font-size: 12px;
    }
    .table td {
        display: block;
        border-bottom: 1px solid #ddd;
        text-align: right;
    }
    .table  td:last-child {
        border-bottom: 0px;
    }
    .table td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        float: left;
    }
}

  .contenedor-imagenes {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto 40px;
  }

  .tooltip {
      position: relative;
      display: inline-block;
      max-width: 100%;
      text-decoration: none;
      flex: 1 1 300px;
  }

  .tooltip img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      transition: outline 0.3s ease, box-shadow 0.3s ease;
  }

  /* Efecto de marco al apoyar el mouse */
  .tooltip img:hover {
      outline: 4px solid #0077cc;
      /* Color institucional */
      outline-offset: 4px;
  }

  /* Tooltip emergente */
  .tooltip .tooltiptext {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: rgba(0, 0, 0, 0.85);
      color: #fff;
      padding: 12px;
      border-radius: 6px;
      font-size: 0.95rem;
      line-height: 1.5;
      width: 100%;
      max-width: 300px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: opacity 0.3s ease;
      z-index: 10;
  }

  .tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
  }

  /* Lista sin viñetas por defecto */
  .tooltiptext ul {
      list-style-type: none;
      margin: 0;
      padding-left: 1em;
  }

  /* Viñeta personalizada con ◆ */
  .tooltiptext li::before {
      content: "◆ ";
      color: #ffffff;
      /* Podés cambiar a dorado institucional si querés */
      margin-right: 6px;
  }