:root {
    --bg-main: #050505;
    --bg-alt: #111111;
    --bg-card: #151515;
    --gold: #cfa34a;
    --gold-soft: #e1c67a;
    --text-main: #f5f3ea;
    --text-muted: #b7b0a0;
    --border-soft: #2a2a2a;

    --font-heading: "Playfair Display", serif;
    --font-body: "Cormorant", serif;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #18120a 0, #050505 40%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Utilitários */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Navbar */
header {
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 0;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.85));
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--gold);
}

nav ul {
    list-style: none;
    gap: 22px;
}

nav ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.2s, transform 0.2s;
}

nav ul li a:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

/* Botão mobile (pode esconder se não for usar JS) */
.mobile-menu-btn {
    display: none;
    color: var(--text-main);
}

/* Hero */
.hero {
    padding: 72px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--gold-soft);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 420px;
    margin-bottom: 24px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-highlights span {
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image-box {
    background: radial-gradient(circle at top, #333 0, #151515 55%, #020202 100%);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid var(--border-soft);
    text-align: center;
}

.hero-image-box img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: screen;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold), var(--gold-soft));
    color: #151515;
    box-shadow: 0 0 24px rgba(207, 163, 74, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(207, 163, 74, 0.7);
}

.btn-ghost {
    border-color: var(--border-soft);
    color: var(--text-main);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Seções genéricas */
.section {
    padding: 56px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 6px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.98rem;
}

/* Cards de produto */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    padding: 20px 18px 22px;
    text-align: center;
}

.product-card-image {
    background: radial-gradient(circle at top, #333 0, #111 55%);
    border-radius: 14px;
    padding: 26px 16px;
    margin-bottom: 14px;
}

.product-card img {
    max-height: 260px;
    width: auto;
    margin: 0 auto;
    mix-blend-mode: screen;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.product-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--gold-soft);
}

/* Bloco “sobre” */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.about-copy p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.about-badges span {
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 6px 14px;
    color: var(--text-muted);
}

/* Depoimentos */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid var(--border-soft);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.testimonial-card strong {
    display: block;
    margin-top: 8px;
    color: var(--gold-soft);
    font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    padding: 16px 18px;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-soft);
    padding: 26px 0 18px;
    margin-top: 42px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 22px;
}

.footer-brand {
    font-family: var(--font-heading);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-soft);
}

/* Responsivo */
@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .product-grid,
    .testimonials,
    .faq-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 40px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}
