* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan-light: #95D3BA;
    --strong-yellow: #FFD900;
    --medium-yellow: #FFE083;
    --default: #BFC9C3;
    --dark-gray: #282A2B;
    --light-gray: #414243;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #383838;
    min-height: 300vh;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Anton", sans-serif;
    color: #FFFFFF;
}

h2 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2rem;
}

.contrast {
    color: #FFB600;
}

.max-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-whatsapp {
    background-color: var(--strong-yellow);
    color: #3C2F00 !important;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

header {
    .overlay {
        background: rgba(0, 0, 0, 0.6);
        position: absolute;
        inset: 0;
        z-index: 4;
        display: none;
    }

    .top-announcement-bar {
        position: fixed;
        z-index: 100;
        background-color: #0b0c0c;
        border-bottom: 1px solid var(--medium-yellow);
        padding: 12px 20px;
        text-align: center;
        width: 100%;

        .announcement-text {
            font-family: "Inter", sans-serif;
            font-size: 0.85rem;
            color: #FFFFFF;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin: 0;

            img{
                border-radius: 2px;
            }

            .top-countdown {
                font-family: "Anton", sans-serif;
                color: var(--medium-yellow);
                font-size: 1.1rem;
                margin-left: 3px;
                letter-spacing: 1px;
            }
        }
    }

    #navigation {
        padding: 20px;
        background-color: rgba(0, 0, 0, .7);
        backdrop-filter: blur(8px);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 3;
        display: none;

        .max-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;

            .logo {
                display: flex;
                align-items: center;
                gap: 12px;

                p {
                    font-family: "Anton", serif;
                    color: var(--cyan-light);
                    font-size: clamp(1.4rem, 1rem + 1vw, 3rem);
                    text-transform: uppercase;
                    letter-spacing: -1px;
                }
            }

            .menu-mobile {
                background: none;
                border: none;
                color: #FFF;
                cursor: pointer;
                display: none;
            }
        }
    }

    .navbar {
        display: flex;
        align-items: center;
        gap: 3rem;

        a {
            font-family: "Inter", serif;
            text-transform: uppercase;
            font-weight: 600;
            color: #E2E2E2;
        }
    }

    .menu-container-mobile {
        position: fixed;
        z-index: 4;
        top: 0;
        right: 0;
        background: #2b2a2a;
        height: 100dvh;
        width: 220px;
        padding: 120px 40px;
        transform: translateX(320px);
        transition: transform 0.3s ease-in;

        .close-menu {
            background: none;
            border: none;
            cursor: pointer;
            position: absolute;
            top: 24px;
            right: 24px;
        }

        .navbar {
            flex-direction: column;
            gap: 2rem;
            align-items: flex-start;
        }
    }

    .menu-container-mobile.opened {
        transform: translateX(0);
    }

    .cta-whatsapp {
        padding: 12px 28px;
        border-radius: 30px;
        text-transform: none !important;
    }

    .hero {
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: 100vh;
        background-image: linear-gradient(rgba(6, 78, 59, 0.95),
                rgba(0, 0, 0, 0.9)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);

        .bg-hero {
            position: absolute;
            inset: 0;
            min-height: 100vh;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: .40;
            }
        }

        .max-content {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 5;
        }

        small,
        p,
        button {
            font-family: "Archivo Narrow", serif;
        }

        .content {
            margin: 120px 0;

            h1 {
                font-size: 4rem;
                font-weight: 300;
                margin-bottom: 2rem;
                text-align: center;
                line-height: 1.2;
            }

            .time-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 1rem;

                small {
                    text-transform: uppercase;
                    color: var(--default);
                    font-size: 0.8em;
                    font-weight: 500;
                }

                .countdown-container {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    .block {
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                        justify-content: center;
                        gap: 4px;

                        .day,
                        .hours,
                        .minutes,
                        .seconds {
                            font-family: "Anton", sans-serif;
                            font-size: 3rem;
                            color: var(--medium-yellow);
                            padding: 14px 16px;
                            background: linear-gradient(#1E2020 50%, #121414 50%);
                            border-radius: 8px;
                            border: 1px solid rgba(255, 255, 255, 0.1);
                            box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 1);
                        }

                        .text {
                            font-family: "Inter", serif;
                            color: var(--default);
                            text-transform: uppercase;
                            font-weight: 600;
                            font-size: 0.9rem;
                        }
                    }
                }
            }

            .subtitle {
                color: var(--default);
                font-size: 1.1rem;
                width: 90%;
                margin: 2rem auto;
                text-align: center;
            }

            .cta-buttons {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;

                .cta-whatsapp {
                    font-family: "Anton", sans-serif;
                    text-transform: uppercase !important;
                    font-weight: 500;
                    border-radius: 8px;
                    font-size: 1.2rem;
                }

                .view-promocoes {
                    font-family: "Archivo Narrow", serif;
                    color: #FFFFFF;
                    border: 1px solid rgba(255, 255, 255, .5);
                    padding: 12px 28px;
                    border-radius: 8px;
                    font-size: 1.2rem;
                }
            }
        }
    }
}

main {

    #main-content {
        min-height: 100vh;
        background: #121414 linear-gradient(#121414, #0C0F0F);
        padding: 3rem 0;

        #combo {
            scroll-margin-top: 120px;

            .title-content {
                display: flex;
                align-items: center;
                gap: 8px;

                .title {
                    max-width: 220px;
                    width: 100%;

                    p {
                        text-transform: uppercase;
                        font-family: "Inter", serif;
                        color: var(--medium-yellow);
                        letter-spacing: 1px;
                    }
                }

                .line {
                    width: 100%;
                    height: 1px;
                    background-color: rgba(250, 250, 250, .20);
                }
            }

            .cards-combos {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1rem;
                margin: 2rem 0;

                .card {
                    overflow: hidden;
                    border-radius: 10px;
                    background: #1A1C1C;
                    border: 1px solid rgba(255, 255, 255, 0.05);
                    display: flex;
                    flex-direction: column;

                    img {
                        width: 100%;
                    }

                    .text-content {
                        padding: 24px;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 1rem;
                        flex-grow: 1;

                        h3 {
                            font-weight: 400;
                            font-size: 1.6rem;
                        }

                        li,
                        small {
                            font-family: "Archivo Narrow", serif;
                            color: var(--default);
                        }

                        .real-value,
                        .price,
                        .cta-reserve {
                            font-family: "Inter", serif;
                        }

                        ul {
                            max-height: 100px;
                            overflow: hidden;

                            li {
                                font-size: 1.1rem;
                                margin-bottom: 10px;
                            }

                            li:last-child {
                                margin-bottom: 0;
                            }

                            li::before {
                                content: "•";
                                margin-right: 4px;
                            }
                        }

                        .viewMore {
                            background: none;
                            border: none;
                            cursor: pointer;
                            font-family: "Inter", serif;
                            color: var(--medium-yellow);
                            font-size: 1rem;
                            font-weight: 600;
                            text-transform: uppercase;
                        }

                        .real-value {
                            font-size: .9rem;
                            text-decoration: line-through;
                        }

                        .price {
                            color: #FFFFFF;

                            .value {
                                color: var(--medium-yellow);
                                font-family: "Anton", serif;
                                font-size: 2rem;
                            }
                        }

                        .cta-reserve {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            gap: 8px;
                            color: #95D3BA;
                            font-weight: 600;
                            background: #064E3B;
                            padding: 12px;
                            width: 100%;
                            border-radius: 8px;
                            border: 1px solid rgba(149, 211, 186, 0.20);

                            margin-top: auto;
                        }
                    }

                }
            }
        }

        .carousel {
            background: var(--medium-yellow, #ffd700);
            height: 80px;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
            margin: 3rem 0;

            .carousel-group {
                display: flex;
                align-items: center;
                gap: 3rem;
                padding-right: 3rem;
                flex-shrink: 0;
                white-space: nowrap;
                animation: marquee 25s linear infinite;
            }

            p {
                font-family: "Archivo Narrow", serif;
                font-style: italic;
                font-weight: 600;
                color: #3C2F00;
                margin: 0;
            }
        }

        #next-game {
            .title-content {
                text-align: center;
                margin-bottom: 2rem;
            }

            .cards {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2rem;

                .card-game {
                    background-color: var(--dark-gray);
                    font-family: "Inter", serif;
                    color: #8C9791;
                    padding: 1.2rem;
                    border-radius: 12px;
                    border: 1px solid var(--light-gray);

                    .date-and-hours {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;

                        .date,
                        .hours {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            font-size: 0.9rem;

                            svg {
                                width: 14px;
                            }
                        }

                        .hours {
                            color: var(--strong-yellow);
                        }
                    }

                    .line {
                        width: 100%;
                        height: 1px;
                        background-color: rgba(255, 255, 255, 0.10);
                        margin: 1rem 0;
                    }

                    .tag {
                        text-transform: uppercase;
                        font-size: 0.8rem;
                        padding: 5px 12px;
                        background: rgba(197, 197, 197, 0.10);
                        width: max-content;
                        margin: 0 auto 1rem;
                        border-radius: 30px;
                        color: #A6A6A6;
                    }

                    .confrontation {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        margin-bottom: 1rem;
                        width: 90%;
                        margin: 0 auto 1rem;

                        .vs {
                            font-size: 1.2rem;
                            font-weight: 500;
                            color: var(--default);
                        }

                        .team {
                            text-align: center;

                            img {
                                border-radius: 10px;
                                overflow: hidden;
                            }

                            p {
                                color: #FFF;
                                font-weight: 700;
                                margin: 8px 0 0;
                            }
                        }
                    }

                    .cta-whatsapp {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 8px;
                        width: 100%;
                        padding: 10px;
                        margin: 2rem 0 6px;
                        background-color: #95D3BA;
                        text-transform: uppercase;
                        font-size: 0.9rem;
                        border-radius: 8px;

                        svg {
                            width: 24px;
                        }
                    }
                }
            }


        }
    }

    #faq {
        background: #121414;
        padding: 3rem 0;

        h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: #282A2B;
            border: 1px solid #414243;
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: #555759;
        }

        .faq-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            user-select: none;
        }

        .faq-trigger h3 {
            font-family: "Inter", serif;
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: #FFFFFF;
            line-height: 1.4;
        }

        .faq-icon {
            color: #FFFFFF;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-content-inner {
            padding: 0 24px 20px 24px;
        }

        .faq-content-inner p {
            margin: 0;
            font-size: 0.95rem;
            color: #B3B4B5;
            line-height: 1.6;
            font-family: "Inter", serif;
        }

        .faq-content-inner p+p {
            margin-top: 12px;
        }

        @media (max-width: 480px) {
            .faq-trigger {
                padding: 16px;
            }

            .faq-content-inner {
                padding: 0 16px 16px 16px;
            }

            .faq-trigger h3 {
                font-size: 0.95rem;
            }
        }
    }

    #cta-final {
        background: linear-gradient(rgba(6, 78, 59, 0.95), rgba(0, 0, 0, .9));
        text-align: center;
        padding: 3rem 0;

        h2 {
            text-transform: none;
        }

        .qr-code {
            margin: 2rem 0;
        }

        p {
            color: var(--default);
            font-family: "Inter", serif;
            margin-bottom: 2rem;
        }

        .btn-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;

            a {
                font-family: "Anton", serif;
                padding: 10px;
                width: min(100%, 420px);
                border-radius: 30px;
            }

            .cta-whatsapp {
                text-transform: uppercase;
            }

            .promocoes {
                color: #FFF;
                border: 1px solid #fff;

            }
        }
    }
}

.whatsapp-fixed-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    /* Centraliza o SVG */
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    /* Cor Verde do WhatsApp */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60%;
    height: 60%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* Responsive */
@media (max-width: 680px) {
    main {
        #main-content {
            .max-content {
                #combo {
                    .title-content {
                        .line {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 720px) {
    header {
        #navigation {
            .max-content {

                .logo {
                    gap: 6px;

                    svg {
                        width: 28px;
                    }
                }

                .navbar {
                    display: none;
                }

                .menu-mobile {
                    display: flex;
                }
            }
        }
    }
}