
        :root {
            --gold: #D4AF37;
            --gold-light: #F2D27A;
            --black: #0D0D0D;
            --card: #1A1A1A;
            --gray: #B8B8B8;
            --white: #F5F5F5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.5;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px 40px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
            z-index: 1;
        }

        .logo {
            margin-bottom: 25px;
        }

        .logo img {
            height: 15rem;
        }

        .hero h1 {
            font-family: 'Sora';
            font-size: clamp(28px, 6vw, 58px);
            line-height: 1.2;
        }

        .hero span {
            color: var(--gold);
        }

        .hero p {
            color: var(--gray);
            margin: 18px auto;
            max-width: 620px;
            font-size: clamp(15px, 2.5vw, 18px);
        }

        /* VIDEO */
        .video {
            margin: 30px auto;
            width: 100%;
            max-width: 760px;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            overflow: hidden;
        }

        /* BOTÕES */
        .btn {
            padding: 16px 28px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            border-radius: 10px;
            margin-top: 20px;
            font-size: 15px;
            transition: 0.25s;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--gold), var(--gold-light));
            color: black;
        }

        .btn-primary:hover {
            transform: scale(1.05);
        }

        /* SECTIONS */
        .section {
            padding: 70px 0;
        }

        .title {
            text-align: center;
            font-family: 'Sora';
            margin-bottom: 30px;
            font-size: clamp(22px, 4vw, 34px);
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
        }

        .card {
            background: var(--card);
            padding: 22px;
            border-radius: 14px;
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-6px);
        }

        .card h3 {
            color: var(--gold);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .card p {
            color: var(--gray);
            font-size: 14px;
        }

        .footer {
            text-align: center;
            padding: 30px 20px;
            color: var(--gray);
            font-size: 13px;
        }

        /* RESPONSIVO */
        @media(max-width:768px) {
            .logo img {
                height: 25em;
            }
        }

        @media(max-width:480px) {
            .btn {
                width: 100%;
            }

            .hero h1 {
                font-size: 28px;
            }

            .video {
                border-radius: 10px;
            }

            .logo img {
                height: 50px;
            }
        }