﻿:root {
    --bg: #0f1724;
    --muted: #94a3b8;
    --accent: #c4a062; /* dourado elegante */
    --radius: 16px;
    --container: 1100px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    /*background: var(--bg);*/
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 50px
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px
}

    .brand img {
        height: 70px;
        width: auto
    }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

    .brand-text h1 {
        font-family: 'Playfair Display',serif;
        font-size: 26px;
        margin: 0;
        color: var(--accent)
    }

    .brand-text span {
        font-family: 'Playfair Display',serif;
        font-size: 14px;
        color: var(--muted)
    }

nav {
    display: flex;
    gap: 18px;
    align-items: center
}

    nav a {
        color: var(--muted);
        text-decoration: none;
        font-weight: 600
    }

.cta {
    background: var(--accent);
    color: #0f1724;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700
}

/* Rodapé */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 18px 0;
    margin-top: 40px;
    color: var(--muted);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center
}

@media(max-width:900px) {
    .hero, .split {
        grid-template-columns: 1fr
    }

    nav {
        display: none
    }
}