/* HERO */
.hero {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFBF1;
    text-align: center;
    padding: 2rem;
    padding-top: 6rem;
    max-width: 1000px;
    overflow-x: hidden;
    margin: 0 auto;
}

.lp-content {
    justify-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

body {
    background-image:
        url('https://i.imgur.com/1baUCMR.jpeg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 251, 241, 1);
}

.header{
     background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
        url('https://i.imgur.com/BTwkjVT.jpeg');
        padding-top: 56.25%;
        background-size: cover;
        background-position: bottom center;
        background-repeat: no-repeat;
        height: 100%;
}

/* CARDS EXPANSÍVEIS */
.game-section {
    padding: 60px 0;
}

.owl-carousel .owl-stage-outer {
    padding: 4rem;
}

.custom-carousel {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .custom-carousel .item {
        width: 300px;
    }

    /* ajuste ao seu layout (280–320) */
}

@media (max-width: 576px) {
    .hero {
        padding-inline: 16px;
    }
}

.titulo {
    max-width: 90vw;
}

.custom-carousel .item {
    position: relative;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transform: scale(0.9);
}


.custom-carousel .item .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.custom-carousel .item .card>img {
    height: 180px;
    /* ajuste ao gosto */
    object-fit: contain;
    padding: 2rem;
}

/* imagem de fundo */
.custom-carousel .item .item-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

/* gradiente por cima da imagem */
.custom-carousel .item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 16px;
}

/* bloco deslizante do conteúdo */
.custom-carousel .item .item-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 20px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 1;
    transform: translateY(calc(100% - 56px));
    transition: transform .4s ease;
}

.custom-carousel .item .item-title {
    margin: 0 0 4px;
    font-size: 1.125rem;
    font-weight: 700;
}

.custom-carousel .item .item-desc>*:not(.item-title) {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .35s ease .1s, transform .35s ease .1s;
}

.custom-carousel .item.active .item-desc {
    transform: translateY(0);
}

.custom-carousel .item.active .item-desc>*:not(.item-title) {
    opacity: 1;
    transform: translateY(0);
}

/* acessibilidade (foco via teclado) */
.custom-carousel .item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.custom-carousel .item .btn {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    border-radius: 10px;
}

.btn-gorillas {
    background-color: #D9FF05;
    color: #203023;
}

.btn-falcons {
    background-color: #ffc300;
    color: #252525;
}

.btn-buffalos {
    background-color: #C11A39;
    color: #fff;
}

.btn-mrgorillas {
    background-color: #8007ff;
    color: #fff;
}

.btn-goinsiders {
    background-color: #776fe8;
    color: #fff;
}


.custom-carousel .item.active {
    transform: scale(1.05);
    opacity: 1;
    border-radius: 16px;
}

/* Cards com cores diferentes */
.card-gorillas {
    background-color: #203023;
    color: #fff;
}

.card-gorillas .card-content {
    background-color: #203023;
}

.card-falcons {
    background-color: #0d2076;
    color: #fff;
}

.card-falcons .card-content {
    background-color: #0d2076;
}

.card-buffalos {
    background-color: #2D1013;
    color: #fff;
}

.card-buffalos .card-content {
    background-color: #2D1013;
}

.card-mrgorillas {
    background-color: #FFBC00;
    color: #fff;
}

.card-mrgorillas .card-content {
    background-color: #FFBC00;
}

.card-savana {
    background-color: white;
    color: #f66e0f;
}

.card-savana .card-content {
    background-color: white;
}

.card-goinsiders {
    background-color: #FD00B2;
    color: #fff;
}

.card-goinsiders .card-content {
    background-color: #FD00B2;
}

.card-goritek {
    background-color: #7F4DFF;
    color: #fff;
}

.card-goritek .card-content {
    background-color: #7F4DFF;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    height: 120px;
    object-fit: contain;
    padding: 2rem;
}

/* Card expansível com animação */
.card-body {
    overflow: hidden;
    padding: 10px;
}

.card-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.card.active .card-content {
    height: 5000px !important;
    /* altura suficiente para o conteúdo */
    opacity: 1 !important;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

/* Navegação do Owl */
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-nav button {
    background: none !important;
    border: none !important;
}

.logo {
    max-width: 64px;
}

.logo-footer {
    max-width: 64px;
    margin-bottom: 1.5rem;
}

.titulo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    filter: drop-shadow(0 0 160px rgba(217, 255, 5, 0.35)) drop-shadow(0 0 18px rgba(217, 255, 5, 0.30));
    -webkit-filter: drop-shadow(0 0 160px rgba(217, 255, 5, 0.35)) drop-shadow(0 0 18px rgba(217, 255, 5, 0.30));
}

.bg-navbar {
    background-color: rgba(2, 40, 29, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.highlight {
    color: #88CA43;
    font-weight: 600;
}

.icon {
    max-width: 80px;
    color: #88CA43;
}

.topico {
    display: flex;
    flex-direction: column;
    /* itens um embaixo do outro */
    align-items: center;
    /* centraliza horizontalmente */
    justify-content: center;
    /* centraliza verticalmente (se tiver altura fixa) */
    text-align: center;
}

.topico .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    /* espaçamento entre ícone e título */
}

.topico .icon svg {
    width: 40px;
    /* ajuste conforme o tamanho desejado */
    height: 40px;
    fill: #fff;
    /* cor do ícone (pode trocar) */
}

.card-img {
    max-height: 80px;
    padding: 2.5rem;
}

.owl-theme .owl-nav [class*=owl-] {
    font-size: 40px !important;
}