/* ===== Reset básico (complementa reset.css) ===== */
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== Tokens ===== */
:root {
    --bg: #0f151d;
    --bg-alt: #141c26;
    --surface: #182230;
    --surface-2: #1c2735;
    --ink: #f4f1ea;
    --ink-muted: #a9b4c2;
    --gold: #caa15a;
    --gold-light: #e6c988;
    --red: #c0392b;
    --border: rgba(202, 161, 90, 0.18);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --container: 1180px;
    --radius: 14px;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Botões ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.btn-primary, .btn--primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #1a1208;
    box-shadow: 0 8px 24px -8px rgba(202, 161, 90, 0.6);
}
.btn-primary:hover, .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(202, 161, 90, 0.7); }
.btn-outline, .btn--ghost {
    border: 1.5px solid var(--border);
    color: var(--ink);
}
.btn-outline:hover, .btn--ghost:hover { border-color: var(--gold); background: rgba(202,161,90,0.08); }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--ink-muted);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar__hours { color: var(--gold); font-weight: 500; }
.topbar a:hover { color: var(--gold); }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 21, 29, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__text { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.02em; }
.logo__text strong { color: var(--gold); font-weight: 400; }

.nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-muted);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}
.nav-toggle span {
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 100px 0 90px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(202,161,90,0.10), transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(192,57,43,0.10), transparent 40%),
        var(--bg);
    z-index: -2;
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.hero__kicker {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 18px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 480px;
    margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}
.hero__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 85% 10%;
    transform: scale(1.35);
    transform-origin: 90% 10%;
}
.hero__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,21,29,0.7));
}

/* ===== Marquee ===== */
.marquee {
    background: linear-gradient(90deg, var(--red), #8f2a1f);
    overflow: hidden;
    padding: 14px 0;
}
.marquee__track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    width: max-content;
    animation: scroll-left 26s linear infinite;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #fff2e6;
}
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Section shared ===== */
.section { padding: 90px 0; }
.section__kicker {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    margin-bottom: 12px;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.6vw, 2.8rem);
    max-width: 640px;
    margin-bottom: 44px;
    letter-spacing: 0.01em;
}

/* ===== Services ===== */
.services { background: var(--bg-alt); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.service-card__icon {
    width: 46px; height: 46px;
    color: var(--gold);
    margin-bottom: 18px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-muted); font-size: 0.88rem; margin-bottom: 16px; }
.service-card__price {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
}
.services__empty { color: var(--ink-muted); }

/* ===== About ===== */
.about__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.about__art img, .about__art svg { border-radius: var(--radius); }
.about__content p { color: var(--ink-muted); margin-bottom: 22px; }
.about__list { margin-bottom: 30px; }
.about__list li { padding: 7px 0; color: var(--ink-muted); font-size: 0.94rem; }

/* ===== Gallery ===== */
.gallery { background: var(--bg-alt); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 16px;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; grid-row: span 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.06); }

/* ===== Team ===== */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}
.team-card__avatar {
    width: 88px; height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    color: var(--gold);
    background: var(--bg);
    display: grid;
    place-items: center;
}
.team-card__avatar svg { width: 46px; height: 46px; }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.05rem; }
.team-card__role { display: block; color: var(--gold); font-size: 0.8rem; margin-top: 4px; }
.team__empty { color: var(--ink-muted); }

/* ===== Contact ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: stretch;
}
.contact__info p { color: var(--ink-muted); margin-bottom: 28px; }
.contact__item { margin-bottom: 18px; display: flex; flex-direction: column; gap: 4px; }
.contact__item strong { font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; }
.contact__item span { color: var(--ink-muted); }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 320px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ===== Footer ===== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 44px 0 26px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__tagline { color: var(--ink-muted); font-size: 0.88rem; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { background: rgba(202,161,90,0.1); border-color: var(--gold); }
.footer__copy { color: var(--ink-muted); font-size: 0.76rem; margin-top: 8px; }

/* ===== Scroll reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .header__actions .btn { display: none; }
    .hero__inner, .about__grid, .contact__grid { grid-template-columns: 1fr; }
    .about__art { order: -1; max-width: 340px; margin: 0 auto; }
    .hero__photo { max-width: 420px; margin: 0 auto; order: -1; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .topbar__inner { justify-content: center; text-align: center; }
    .services__grid, .gallery__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 80px 0 50px; }
    .section { padding: 64px 0; }
}

/* ===== Mobile nav open state ===== */
.nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 16px;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
