/* Botões, Cards e Seções */
.banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/banner.webp') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.banner h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.banner p {
    color: #ccc;
    margin-bottom: 20px;
}

.btn {
    background-color: #00bcd4;
    color: #121212;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0097a7;
    color: #fff;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-left: 4px solid #00bcd4;
    padding-left: 10px;
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #00bcd4;
}

/* Container do Slide Otimizado para Mobile */
.card-slider {
    width: 100%;
    aspect-ratio: 1280 / 928; /* Mantém a proporção exata solicitada */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Oculta a barra de rolagem no Firefox */
    display: flex;
    background-color: #121212;
}

.card-slider::-webkit-scrollbar {
    display: none; /* Oculta a barra de rolagem no Chrome/Safari */
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.mod-badge {
    background-color: rgba(0, 188, 212, 0.15);
    color: #00bcd4;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.card-description {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #00bcd4;
    color: #121212;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: #0097a7;
    color: #fff;
}
