@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0a0a0d;
    color: #f4f1ec;
    font-family: Inter, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navegação */
.nav {
    height: 82px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #202027;
    background: rgba(10, 10, 13, .9);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.brand {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 19px;
}

.brand span {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    color: #aaa;
    margin-top: 3px;
}

.nav nav {
    display: flex;
    gap: 30px;
    color: #bbb;
    font-size: 14px;
}

.nav nav a:hover {
    color: #fff;
}

.nav-btn,
.btn {
    background: #f1eee7;
    color: #101014;
    padding: 12px 18px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
}

/* Seções e Hero */
.hero {
    min-height: 78vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 90px 20px;
    background: radial-gradient(circle at 50% 40%, #25222b 0, #0a0a0d 55%);
}

.hero h1 {
    font-family: 'Playfair Display';
    font-size: clamp(48px, 8vw, 100px);
    line-height: .92;
    margin: 20px 0;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    color: #9f9aa8;
    text-transform: uppercase;
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn.outline {
    background: transparent;
    color: #fff;
    border: 1px solid #3a3a43;
}

.section {
    padding: 90px 6%;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.section h2 {
    font-family: 'Playfair Display';
    font-size: 42px;
    margin: 0;
}

.muted {
    color: #999;
}

/* Grid e Cartões */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: #111116;
    border: 1px solid #22232b;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
    background: #17171d;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.tag {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    margin-top: 12px;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.box {
    background: #111116;
    border: 1px solid #24242c;
    border-radius: 12px;
    padding: 30px;
}

.box h3 {
    font-size: 28px;
    margin-top: 0;
}

/* Detalhes e Formulários */
.detail {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 25px;
}

.detail img {
    max-height: 750px;
    width: 100%;
    object-fit: contain;
    background: #111;
    border-radius: 12px;
}

.detail-info {
    padding: 30px 0;
}

.detail h1 {
    font-family: 'Playfair Display';
    font-size: 55px;
    margin: 10px 0;
}

.form {
    display: grid;
    gap: 15px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 14px;
    background: #0c0c10;
    border: 1px solid #303039;
    color: #fff;
    border-radius: 7px;
    font: inherit;
}

.form textarea {
    min-height: 150px;
    resize: vertical;
}

.form button {
    border: 0;
    cursor: pointer;
}

.notice {
    padding: 14px;
    border-radius: 7px;
    background: #17171d;
    margin-bottom: 20px;
}

/* Rodapé e Filtros */
footer {
    border-top: 1px solid #222;
    padding: 45px 6%;
    display: flex;
    justify-content: space-between;
    color: #888;
}

footer strong {
    color: #eee;
}

.social {
    display: flex;
    gap: 20px;
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.filters a {
    border: 1px solid #303039;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 12px;
    color: #bbb;
}

/* Painel Admin */
.admin {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.admin-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #111116;
}

.table th,
.table td {
    padding: 13px;
    border-bottom: 1px solid #292930;
    text-align: left;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat {
    background: #141419;
    border: 1px solid #292930;
    padding: 22px;
    border-radius: 10px;
}

.stat b {
    font-size: 30px;
    display: block;
    margin-top: 5px;
}

/* Responsividade */
@media (max-width: 800px) {
    .nav nav {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .grid,
    .split,
    .stats {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 330px;
    }

    .section {
        padding: 60px 5%;
    }

    .detail h1 {
        font-size: 40px;
    }

    footer {
        display: block;
    }

    .social {
        margin-top: 20px;
    }
}