body {
    margin: 0;
    padding: 0;
}

.table-container {
    overflow: auto;
    max-height: 800px; /* Adjust as needed */
    max-width: 100%; /* Adjust as needed */
    position: relative;
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 350px;
}

thead th {
    color: black;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    border-right: 1px solid #7c001f;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,1,64,1) 100%);
}

thead th.pro {
    color: black;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    border-right: 1px solid #ffe11c;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, #ff3a1c 0%, #ffe11c 100%);
}

thead th.sticky-col {
    left: 0;
    z-index: 3;
}

tbody td,
tbody th {
    border: none;
    padding: 14px;
}

tbody tr:nth-child(odd) {
    background-color: rgba(241, 241, 241, 0.5);
}

tbody tr:nth-child(even) {
    background-color: #bdbdbd39;
}

tbody tr.highlighted td {
    background-color: #dd0339;
    color: white;
}

th {
    min-width: 120px;
    text-align: center;
    padding-left: 0%;
    padding-right: 0%;
}

td.sticky-col {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #ff0140;
    z-index: 1;
    color: rgb(255, 255, 255);
    max-width: 180px;
    font-size: 14px; /* Corregido */
    text-align: left;
}

td {
    font-size: 14px;
    text-align: center;
}

.space {
    padding: 30px 0 30px 0;
}

.plan {
    font-size: 13px;
    color: #ffe9e9;
    padding: 15px;
}

.cta-price {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background-color: #ff0140;
    padding: 7px 12px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: auto;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.legal {
    padding: 20px;
    font-size: 13px;
}

.titulo {
    font-size: 16px;
    margin-top: auto; /* Eliminado el repetido */
}

thead th div.plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 150px;
}

thead th div.plan span {
    display: block;
    margin-bottom: 10px;
}

thead th div.plan button {
    background-color: #ff4b4b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

thead th div.plan .save {
    background-color: #f0f0f0;
    color: #ff0140;
    padding: 5px 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 10px;
}

.logo {
    max-width: 90px;
    text-align: center;
}

.text-center {
    text-align: center;
    font-size: 14px;
}

.logobottom {
    display: block;
    margin: 0 auto; /* Centra la imagen horizontalmente */
    max-width: 300px; /* Ajusta según el tamaño del logo */
    height: auto;
    text-align: center;
    margin-bottom: 20px;
}