main {
    background-color: #101e2b;
    color: #fff;
    font-size: 1rem;
    min-height: calc(100vh - 150px);
    margin: 0;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1000px;
    width: min(100%, 1000px);
    margin-inline: auto;
    margin-block: clamp(16px, 3vw, 25px);
    padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #f1cd1c;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #f1cd1c;
}

.section-subtitle {
    font-size: 1.5rem;
}

.fichasGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 0;
    margin: 0;
}

.fichasGrid .fichaItem {
    list-style: none;
}

.fichaLink {
    display: block;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: #101e2b !important;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    background: linear-gradient(145deg, #f1cd1c 0%, #d9b315 100%);
    box-shadow: 0 2px 6px rgba(241, 205, 28, 0.25);
}

.fichaLink:hover,
.fichaLink:focus {
    border-color: #f1cd1c;
    transform: translateY(-2px);
    outline: none;
    background: linear-gradient(145deg, #ffe066 0%, #f1cd1c 100%);
    box-shadow: 0 4px 12px rgba(241, 205, 28, 0.4);
}
