body {
    background-color: #ccc;
    margin: 0%;
} 

*, *::before, *::after { box-sizing: border-box; }

.header {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    border-bottom: 3px solid #000;
    background-color: #eee;
}

/* Slider */
.header__slider {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

/* Imágenes */
.header__img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.header__img.active {
    opacity: 1;
}

/* Overlay del texto */
.header__overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
}

.header__overlay h2 {
    color: #fff;
    font-size: 2.2rem;
    text-transform: uppercase;
    background: rgba(0,0,0,0.6);
    padding: 10px 16px;
    border-radius: 6px;
}

/* Flechas */
.header__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 2.2rem;
    padding: 8px 14px;
    cursor: pointer;
    transition: 0.3s;
}

.header__arrow:hover {
    background: rgba(0,0,0,0.85);
}

.header__arrow--left {
    left: 15px;
}

.header__arrow--right {
    right: 15px;
}



table {
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    border-collapse: collapse;
    background: linear-gradient(180deg, #0a0a0a, #111);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    color: #eee;
    font-family: sans-serif;
}

/* Encabezados */
th {
    background-color: #239;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 14px;
    text-align: left;
    letter-spacing: 0.05em;
}

/* Celdas */
td {
    padding: 12px 14px;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
}

/* Filas alternadas */
tr:nth-child(even) td {
    background-color: rgba(72, 136, 238, 0.08);
}

/* Hover elegante */
tr:hover td {
    background-color: rgba(72, 136, 238, 0.18);
}

/* Primera columna destacada */
td:first-child {
    font-weight: 600;
    color: #48e;
}

/* Responsive */
@media (max-width: 600px) {
    table {
        font-size: 0.85rem;
    }
}