
.containertabla {
    margin-top: 100px;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.table {
    margin-top: 40px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    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 {
    border-bottom: 2px solid #009dff; /* Línea azul en la parte inferior */
}

.table th, .table td {
    font-size: 15px;
    padding: 8px;
    text-align: center;
    /* border: 2px solid #009dff; */ /* Línea azul en el lado derecho */
}

.table thead th{ 
    text-transform: uppercase;
    background-color: transparent; /* Eliminar fondo */
    border: none; /* Eliminar bordes */
}

.table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.table tbody td:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

@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;
    }
}












.title-wrapper {
    margin-top: 60px;
    text-align: center;
    margin-bottom: -52px; /* Espacio entre el título y el contenido siguiente */
  }
  
  .title {
    font-size: 24px; /* Tamaño del título */
    font-weight: bold; /* Negrita */
    margin-bottom: 5px; /* Espacio entre el título y la línea */
  }
  
  .line {
    display: inline-block;
    width: 100%; /* La línea ocupa el ancho completo */
    height: 2px; /* Grosor de la línea */
    background-color: #009dff; /* Color de la línea */
    margin-bottom: 5px; /* Espacio entre el título y la línea */
  }
  
  