        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d9b36a;
            --gold-light: #e7c88d;
            --bg: #0f0f0f;
            --card: #181818;
            --card-hover: #222222;
            --text: #ffffff;
            --text-secondary: #b5b5b5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            position: relative;
            background: #0f0f0f;
        }
        body::before {
            content: "";
            position: fixed;
            inset: 0;

            background-image: url('../imgs/8.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            opacity: 0.08;
            filter: blur(6px);

            transform: scale(1.05);

            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;

            background: rgba(10, 10, 10, 0.82);

            backdrop-filter: blur(2px);

            z-index: -1;
        }

        .hero {
            min-height: 50vh;

            background:
                linear-gradient(
                    rgba(0,0,0,.55),
                    rgba(0,0,0,.85)
                ),
                url('../imgs/8.jpeg');

            background-size: cover;
            background-position: center center;

            display: flex;
            align-items: center;
            justify-content: center;

            text-align: center;

            padding: 60px 25px;

            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .hero-content {
            max-width: 700px;
        }

        .hero span {
            color: var(--gold);
            letter-spacing: 4px;
            font-size: .9rem;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 600;

            margin: 15px 0;

            text-shadow:
                0 5px 20px rgba(0,0,0,.6);
        }

        .hero p {
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 700px;
            margin: auto;
        }

        .scroll-btn {
            margin-top: 40px;
            display: inline-block;
            color: var(--bg);
            background: var(--gold);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: .3s;
        }

        .scroll-btn:hover {
            transform: translateY(-3px);
        }

        .menu {
            padding: 80px 8%;
            position: relative;
        }

        .section-title {
            backdrop-filter: blur(8px);
        }

        .section-title h2 {
            font-size: 3rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .section-title p {
            margin-top: 15px;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .card {
            background: rgba(20,20,20,.65);

            backdrop-filter: blur(10px);

            border: 1px solid rgba(255,255,255,.08);

            border-radius: 25px;
            padding: 35px;

            text-decoration: none;
            color: white;

            transition: .3s;
        }

        .card:hover {
            background: var(--card-hover);
            border-color: var(--gold);
            transform: translateY(-8px);
        }

        .card i {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .card h3 {
            margin-bottom: 10px;
        }

        .card p {
            color: var(--text-secondary);
            font-size: .95rem;
        }

        .info-section {
            padding: 100px 8%;
            border-top: 1px solid rgba(255,255,255,.05);
        }

        .info-container {
            max-width: 1100px;
            margin: auto;
        }

        .info-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
        }

        .info-header i {
            color: var(--gold);
            font-size: 2rem;
        }

        .info-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
        }

        .info-content {
            background: rgba(20,20,20,.70);

            backdrop-filter: blur(10px);

            border-radius: 25px;
            padding: 35px;

            border: 1px solid rgba(255,255,255,.08);
        }

        .info-content p {
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .highlight {
            color: var(--gold);
            font-weight: 600;
        }

        .btn {
            display: inline-block;
            margin-top: 20px;
            background: var(--gold);
            color: black;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
        }

        .footer {
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,.05);
        }

        .footer h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .footer p {
            color: var(--text-secondary);
        }

        .whatsapp {
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 65px;
            height: 65px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            text-decoration: none;
            z-index: 999;
            box-shadow: 0 10px 25px rgba(0,0,0,.4);
        }

/* =========================
   TABLET
========================= */
@media (min-width: 768px) and (max-width: 1023px) {

    .hero {
        min-height: 45vh;
        padding: 60px 30px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        max-width: 600px;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2.6rem;
    }

    .info-header h2 {
        font-size: 2.2rem;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        padding: 25px;
    }

    .menu,
    .info-section {
        padding: 70px 6%;
    }
}

/* =========================
   CELULAR
========================= */
@media (max-width: 767px) {

    .hero {
        min-height: 45vh;
        padding: 50px 20px;
    }

    .hero-content {
        width: 100%;
    }

    .hero span {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 2.6rem;
        line-height: 1;
        margin: 10px 0;
    }

    .hero p {
        font-size: .95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .scroll-btn {
        margin-top: 25px;
        padding: 12px 24px;
        font-size: .9rem;
    }

    .menu,
    .info-section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: .95rem;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card {
        padding: 20px;
        text-align: center;
    }

    .card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        display: block;
        font-size: .9rem;
    }

    .info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .info-header h2 {
        font-size: 1.8rem;
    }

    .info-content {
        padding: 25px;
    }

    .footer h3 {
        font-size: 1.7rem;
    }

    .whatsapp {
        width: 58px;
        height: 58px;
        font-size: 26px;
        right: 15px;
        bottom: 15px;
    }
}

/* =========================
   TELAS GRANDES
========================= */
@media (min-width: 1400px) {

    .hero-content {
        max-width: 900px;
    }

    .hero h1 {
        font-size: 6rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .menu,
    .info-section {
        max-width: 1600px;
        margin: auto;
    }

    .grid {
        gap: 35px;
    }

    .card {
        padding: 40px;
    }
}