/* Lumark — CSS completo (sem CDN externo) */

:root {
    --gold: #D4AF37;
    --gold-dark: #B8962E;
    --gold-light: #E8C547;
    --bg: #000000;
    --bg-soft: #0a0a0a;
    --bg-card: rgba(28, 28, 30, 0.85);
    --text: #f5f5f7;
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-dim: rgba(255, 255, 255, 0.25);
    --border: rgba(255, 255, 255, 0.08);
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 20px;
    --max-w: 72rem;
    --nav-h: 3.5rem;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Logo (tamanhos fixos — NÃO usar Tailwind) ── */
.logo-wrap { display: inline-flex; align-items: center; line-height: 0; }
.logo-sm { height: 2rem; width: auto; max-width: 7.5rem; object-fit: contain; }
.logo-md { height: 2.75rem; width: auto; max-width: 10rem; object-fit: contain; }
.logo-lg { height: 3.5rem; width: auto; max-width: 12rem; object-fit: contain; }

.site-nav .logo-sm { height: 1.75rem; max-width: 6.5rem; }

.safe-x {
    padding-left: max(1rem, var(--safe-left));
    padding-right: max(1rem, var(--safe-right));
}
.safe-top { padding-top: var(--safe-top); }
.safe-bottom { padding-bottom: var(--safe-bottom); }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: max(1rem, var(--safe-left));
    padding-right: max(1rem, var(--safe-right));
}

@media (max-width: 767px) {
    .container {
        padding-left: max(1.25rem, var(--safe-left));
        padding-right: max(1.25rem, var(--safe-right));
    }
}

/* ── Nav ── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    height: var(--nav-h);
    padding-top: var(--safe-top);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767px) {
    .site-nav {
        background: rgba(0, 0, 0, 0.96);
        border-bottom-color: rgba(212, 175, 55, 0.2);
    }
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.site-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.site-nav-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.site-nav-links a:hover { color: #fff; }

@media (min-width: 768px) {
    .site-nav-links { display: flex; }
}

/* Menu mobile (topo) */
.site-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .site-menu-btn { display: flex; }
}

.site-menu-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
    pointer-events: none;
}

body.site-menu-open .site-menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.site-menu-open .site-menu-bar:nth-child(2) {
    opacity: 0;
}

body.site-menu-open .site-menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

body.site-menu-open .site-menu-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.site-menu-panel {
    position: fixed;
    top: calc(var(--nav-h) + var(--safe-top));
    left: 0;
    right: 0;
    z-index: 1090;
    padding: 0.75rem max(1rem, var(--safe-left)) 1rem max(1rem, var(--safe-right));
    background: rgba(12, 12, 14, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
    pointer-events: none;
}

body.site-menu-open .site-menu-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-menu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.site-menu-link + .site-menu-link {
    margin-top: 0.25rem;
}

.site-menu-link.is-active {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
}

.site-menu-link:active {
    background: rgba(255, 255, 255, 0.08);
}

.site-menu-link-wa {
    margin-top: 0.5rem;
    justify-content: center;
    background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #000 !important;
}

.site-main {
    padding-top: calc(var(--nav-h) + var(--safe-top));
    min-height: 100vh;
}

body.has-tab-bar .site-main {
    padding-bottom: calc(4.25rem + var(--safe-bottom));
}

@media (min-width: 768px) {
    body.has-tab-bar .site-main { padding-bottom: 0; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s, opacity 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.97); opacity: 0.9; }

.btn-gold {
    background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #000;
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 0.5px solid rgba(255,255,255,0.12);
}

.btn-whatsapp {
    background: linear-gradient(180deg, #34d058, #25a244);
    color: #fff;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-buttons-row { justify-content: center; }

.hero-social {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0 0.75rem;
}

.nav-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.nav-instagram:hover { color: #fff; }

.tab-item-ig { color: rgba(255, 255, 255, 0.72); }
.tab-item-wa { color: rgba(255, 255, 255, 0.72); }

/* Instagram feed */
.instagram-section { margin-top: 0; }

.instagram-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .instagram-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.instagram-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--border);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.25s, background 0.25s;
}

.instagram-profile-link:hover {
    border-color: rgba(225,48,108,0.4);
    background: rgba(225,48,108,0.08);
}

.instagram-profile-link strong {
    display: block;
    font-size: 0.9375rem;
}

.instagram-profile-link small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

.instagram-profile-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 1024px) {
    .instagram-grid { grid-template-columns: repeat(6, 1fr); }
}

.instagram-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 0.5px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.instagram-card:hover img { transform: scale(1.06); }

.instagram-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s;
}

.instagram-card:hover .instagram-card-overlay { opacity: 1; }

.instagram-card-fallback {
    background: linear-gradient(145deg, rgba(131,58,180,0.25), rgba(253,29,29,0.15), rgba(252,176,69,0.12));
}

.instagram-fallback-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 600;
}

.instagram-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Contact page */
.contact-page { max-width: 40rem; margin: 0 auto; padding-bottom: 2rem; }

.contact-channels {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-channels { grid-template-columns: 1fr 1fr; }
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--border);
    background: rgba(255,255,255,0.03);
    transition: transform 0.25s, border-color 0.25s;
}

.contact-channel:hover { transform: translateY(-2px); }

.contact-channel strong {
    display: block;
    font-size: 1rem;
}

.contact-channel small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-top: 0.125rem;
}

.contact-channel-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-channel-wa .contact-channel-icon {
    background: rgba(37,162,68,0.15);
    color: #34d058;
}

.contact-channel-wa:hover { border-color: rgba(52,208,88,0.35); }

.contact-channel-ig .contact-channel-icon {
    background: linear-gradient(135deg, rgba(131,58,180,0.25), rgba(253,29,29,0.2));
    color: #fff;
}

.contact-channel-ig:hover { border-color: rgba(225,48,108,0.35); }

.cta-premium-inner .social-buttons { margin-top: 0.5rem; }

.btn-sm { padding: 0.5rem 1.25rem; min-height: 36px; font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 2rem; min-height: 50px; font-size: 1rem; border-radius: 980px; }

/* ── Typography ── */
.label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.headline-xl {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.headline-lg {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000, var(--bg-soft));
}

.hero-glow {
    position: absolute;
    width: 60%; height: 60%;
    top: 10%; left: 20%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-inner {
        flex-direction: row;
        gap: 5rem;
        align-items: center;
    }
    .hero-text { text-align: left; }
    .hero-actions { justify-content: flex-start; }
}

.hero-text { text-align: center; flex: 1; }

.hero-text p.lead {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 2rem auto;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .hero-text p.lead { margin-left: 0; margin-right: 0; }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}

/* ── Stats ── */
.stats {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-pill {
    text-align: center;
    background: rgba(212,175,55,0.08);
    border: 0.5px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
}

.stat-pill .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-pill .label-sm {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-dark { background: var(--bg-soft); }

.section-header { margin-bottom: 3rem; }
.section-header p { color: var(--text-muted); max-width: 28rem; margin-top: 0.75rem; }

/* ── Cards ── */
.card {
    background: var(--bg-card);
    border: 0.5px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: rgba(212,175,55,0.25);
    box-shadow: 0 0 60px rgba(212,175,55,0.08);
    transform: translateY(-2px);
}

.card-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.card .card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card .card-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1.25rem;
}

.card .price-lg {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0.75rem 0;
}

.badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }

.tag {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.tag-gold {
    color: rgba(212,175,55,0.8);
    background: rgba(212,175,55,0.1);
}

.card-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    color: inherit;
}

.card-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.2);
    margin-top: 0.25rem;
    transition: color 0.2s;
}

.card:hover .card-arrow { color: var(--gold); }

.card-flex { display: flex; flex-direction: column; height: 100%; }
.card-flex .card-body { flex: 1; }

.card-photo {
    width: 100%;
    margin: 0 0 1rem;
    height: 220px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
    display: block;
    transform: translateZ(20px);
}

.card-media {
    margin: -0.25rem 0 0;
    transform-style: preserve-3d;
}

.card:has(.card-photo),
.card:has(.card-photo-ph) {
    overflow: hidden;
}

.card-photo-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(28,28,30,0.9));
    border: 0.5px solid rgba(212,175,55,0.2);
}

.card-photo-ph span {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212,175,55,0.45);
    letter-spacing: -0.04em;
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
    will-change: transform;
}

.card-3d.is-tilting {
    transition: transform 0.08s linear;
}

/* ── Footer ── */
.site-footer {
    border-top: 0.5px solid var(--border);
    background: var(--bg-soft);
    padding: 3.5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-grid p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin-top: 1rem; }

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-copy {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-top: 2.5rem;
}

/* ── Tab bar mobile ── */
.tab-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    isolation: isolate;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.55);
    padding-bottom: var(--safe-bottom);
}

@media (min-width: 768px) { .tab-bar { display: none; } }

.tab-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    height: 4rem;
    max-width: 36rem;
    margin: 0 auto;
    padding: 0.25rem 0.35rem 0;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0.25rem 0.15rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.tab-item svg,
.tab-item span {
    pointer-events: none;
}

.tab-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tab-item.active {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.14);
}

.tab-item:active {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(0.97);
}

.tab-item-ig.active,
.tab-item-wa.active {
    color: var(--gold-light);
}

/* ── Page helpers ── */
.page { padding: 2.5rem 0 4rem; }
.page-header { margin-bottom: 3rem; }
.page-header p { color: var(--text-muted); margin-top: 0.75rem; }

@media (max-width: 767px) {
    .page {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .page-centered {
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-centered .page-header,
    .page-centered > .label,
    .page-centered > .headline-lg,
    .page-centered > .text-muted,
    .page-centered .category-title {
        text-align: center;
    }

    .page-centered .page-header p,
    .page-centered > .text-muted {
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-centered .card-grid,
    .page-centered .contact-channels,
    .page-centered .contact-box,
    .page-centered > .card {
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-centered .back-link {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .page-centered .card,
    .page-centered .contact-box {
        text-align: left;
    }

    .page-centered .extra-row {
        gap: 0.35rem 1rem;
    }

    .contact-channel {
        padding: 1.125rem 1.25rem;
    }

    .contact-row {
        padding: 1rem 1.125rem;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover { color: var(--gold); }

.cta-center { text-align: center; padding: 6rem 0; }
.cta-center p { color: var(--text-muted); margin: 1rem 0 2.5rem; }

.extra-list .extra-row {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 0.875rem;
}

.extra-list .extra-row:last-child { border-bottom: none; }
.extra-list .extra-name { color: var(--text-muted); }
.extra-list .extra-price { color: var(--gold); font-weight: 600; }

.contact-box {
    background: var(--bg-card);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
    text-align: left;
}

.contact-row {
    padding: 1rem 1.25rem;
    border-bottom: 0.5px solid var(--border);
}

.contact-row:last-child { border-bottom: none; }
.contact-row p.desc { color: var(--text-muted); font-size: 0.875rem; margin-top: 0.25rem; line-height: 1.5; }

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.category-block { margin-bottom: 4rem; }

.btn-block { width: 100%; margin-top: 1.25rem; }

.text-center { text-align: center; }

/* ── Admin (painel) ── */
.admin-body {
    background: #f5f5f7;
    color: #1d1d1f;
    min-height: 100vh;
    min-height: 100dvh;
}

.admin-body .admin-sub { color: #636366; }
.admin-body .mac-card { color: #1d1d1f; }

.admin-layout { display: flex; min-height: 100vh; min-height: 100dvh; }

/* Sidebar fixa no desktop */
.mac-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 120;
    width: 15rem;
    background: #1c1c1e;
    color: #fff;
    display: none;
    flex-direction: column;
    border-right: 0.5px solid rgba(255,255,255,0.08);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .mac-sidebar { display: flex; }
}

.admin-sidebar { /* alias */ }

.admin-sidebar-head {
    padding: 1.25rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.admin-sidebar-head p { font-size: 0.6875rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; }

.admin-nav { padding: 0.75rem; flex: 1; }
.admin-nav-bottom { padding: 0.75rem; border-top: 0.5px solid rgba(255,255,255,0.08); flex-shrink: 0; }

.mac-nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.125rem;
    transition: background 0.15s, color 0.15s;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.mac-nav-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mac-nav-item.active { background: rgba(212,175,55,0.18); color: var(--gold-light); font-weight: 600; }
.mac-nav-item.danger { color: #ff6961; }
.mac-nav-item.danger:hover { background: rgba(255,69,58,0.12); color: #ff453a; }

/* Mobile drawer */
.admin-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.admin-sidebar-backdrop.is-open { display: block; }

@media (min-width: 768px) {
    .admin-sidebar-backdrop { display: none !important; }
}

@media (max-width: 767px) {
    .mac-sidebar.is-open {
        display: flex;
        box-shadow: 4px 0 24px rgba(0,0,0,0.25);
    }
}

.admin-main {
    flex: 1;
    min-width: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .admin-main { margin-left: 15rem; }
}

.admin-content {
    padding: 1rem;
    padding-bottom: calc(4.5rem + var(--safe-bottom));
}

@media (min-width: 768px) {
    .admin-content {
        padding: 2rem;
        padding-bottom: 2rem;
    }
}

.admin-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(245,245,247,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
    padding: 0.625rem max(1rem, var(--safe-left)) 0.625rem max(1rem, var(--safe-right));
    padding-top: max(0.625rem, var(--safe-top));
    margin: 0;
}

@media (min-width: 768px) { .admin-mobile-head { display: none; } }

.admin-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    cursor: pointer;
    color: #1d1d1f;
    flex-shrink: 0;
}

.admin-mobile-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-mobile-action {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #007aff;
    padding: 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* Tab bar admin mobile */
.admin-tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 0.5px solid rgba(0,0,0,0.08);
    padding-bottom: var(--safe-bottom);
}

@media (min-width: 768px) { .admin-tab-bar { display: none; } }

.admin-tab-bar-inner {
    display: flex;
    justify-content: space-around;
    height: 3.25rem;
    max-width: 32rem;
    margin: 0 auto;
}

.admin-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    min-height: 44px;
    font-size: 0.625rem;
    font-weight: 500;
    color: #86868b;
    -webkit-tap-highlight-color: transparent;
}

.admin-tab-item.active { color: var(--gold-dark); font-weight: 600; }

.admin-tab-item svg { width: 22px; height: 22px; }

.mac-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 0.5px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.admin-title { font-size: 1.5rem; font-weight: 700; color: #1d1d1f; letter-spacing: -0.02em; }
.admin-sub { color: #86868b; font-size: 0.875rem; }

.input-ios-light {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 1rem;
    background: #f5f5f7;
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    color: #1d1d1f;
    font-size: 1rem;
    font-family: var(--font);
}

.input-ios-light:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: #1d1d1f; margin-bottom: 0.375rem; }

.progress-ios { height: 4px; background: rgba(0,0,0,0.06); border-radius: 100px; overflow: hidden; flex: 1; }
.progress-ios-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 100px; transition: width 0.5s; }

/* Admin — login */
.admin-login-body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: max(1rem, var(--safe-top)) max(1rem, var(--safe-right)) max(1rem, var(--safe-bottom)) max(1rem, var(--safe-left));
}

.admin-login-box { width: 100%; max-width: 22rem; }

.admin-login-head { text-align: center; margin-bottom: 2.5rem; }
.admin-login-head p { color: rgba(255,255,255,0.35); font-size: 0.875rem; margin-top: 1rem; font-weight: 500; }

.admin-login-form {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-login-form label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.5rem;
}

.input-ios {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font);
}

.input-ios:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.admin-flash-err {
    background: rgba(255,69,58,0.15);
    border: 0.5px solid rgba(255,69,58,0.3);
    color: #ff453a;
    font-size: 0.875rem;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
}

.admin-login-back { text-align: center; margin-top: 1.5rem; font-size: 0.75rem; }
.admin-login-back a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.admin-login-back a:hover { color: rgba(255,255,255,0.5); }

.btn-full { width: 100%; }

/* Admin — layout helpers */
.admin-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .admin-page-head { margin-bottom: 2rem; }
}

.admin-page-head h1 { font-size: 1.5rem; font-weight: 700; color: #1d1d1f; letter-spacing: -0.02em; }
.admin-page-head .admin-sub { color: #86868b; font-size: 0.875rem; margin-top: 0.25rem; }

.admin-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #636366; }

.textarea-ios-light {
    width: 100%;
    min-height: 88px;
    padding: 0.75rem 1rem;
    background: #f5f5f7;
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    color: #1d1d1f;
    font-size: 1rem;
    font-family: var(--font);
    line-height: 1.5;
    resize: vertical;
}

.textarea-ios-light:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.hint { font-size: 0.8125rem; color: #636366; line-height: 1.45; }

.flash-ok { position: fixed; top: max(1rem, var(--safe-top)); right: max(1rem, var(--safe-right)); z-index: 200; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.875rem; font-weight: 500; background: #30d158; color: #fff; max-width: calc(100% - 2rem); }
.flash-err { position: fixed; top: max(1rem, var(--safe-top)); right: max(1rem, var(--safe-right)); z-index: 200; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.875rem; font-weight: 500; background: #ff453a; color: #fff; max-width: calc(100% - 2rem); }

.admin-form { max-width: 40rem; }
.admin-form-card { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .admin-form-card { padding: 2rem; } }

.admin-form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .admin-form-row-2 { grid-template-columns: 1fr 1fr; } }

.admin-form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.admin-back {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #007aff;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.admin-alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid #ff453a;
    background: #fff;
    font-size: 0.875rem;
}

.admin-alert-title { font-weight: 600; color: #ff453a; margin-bottom: 0.5rem; }
.admin-alert p { color: rgba(29,29,31,0.7); margin-bottom: 0.25rem; }

.admin-grid-3 { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .admin-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.admin-stat-card { padding: 1rem; }
.admin-stat-card .admin-label { margin-bottom: 0.25rem; }
.admin-stat-card strong { font-size: 0.9375rem; color: #1d1d1f; }
.admin-stat-card .text-gold { font-weight: 600; font-size: 0.875rem; margin-top: 0.25rem; }

.admin-highlight-box {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(212,175,55,0.06);
    border: 0.5px solid rgba(212,175,55,0.2);
}

.admin-highlight-box strong { display: block; font-size: 0.875rem; color: #1d1d1f; margin-bottom: 0.25rem; }
.admin-highlight-box p { font-size: 0.875rem; color: #007aff; word-break: break-all; }
.admin-highlight-box small { display: block; font-size: 0.75rem; color: #86868b; margin-top: 0.5rem; }

.admin-list { overflow: hidden; }
.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.125rem;
    color: #1d1d1f;
    transition: background 0.15s;
    min-height: 44px;
}

@media (max-width: 480px) {
    .admin-list-item {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .admin-list-item .admin-badge { margin-left: auto; }
}

.admin-list-item + .admin-list-item { border-top: 0.5px solid rgba(0,0,0,0.04); }
.admin-list-item:hover { background: #f5f5f7; }

.admin-list-item strong { display: block; font-weight: 500; color: #1d1d1f; }
.admin-list-item span { font-size: 0.875rem; color: #86868b; }

.admin-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.admin-badge-pending { background: rgba(0,0,0,0.05); color: #86868b; }
.admin-badge-active { background: rgba(0,122,255,0.12); color: #007aff; }
.admin-badge-done { background: rgba(48,209,88,0.12); color: #248a3d; }
.admin-badge-cancel { background: rgba(255,69,58,0.12); color: #ff453a; }

.admin-week { padding: 1.25rem; margin-bottom: 2rem; overflow: hidden; }
.admin-week-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; gap: 1rem; flex-wrap: wrap; }
.admin-week-head h2 { font-weight: 600; color: #1d1d1f; font-size: 1.0625rem; }
.admin-week-nav { display: flex; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; }
.admin-week-nav a { color: #007aff; min-height: 44px; display: inline-flex; align-items: center; }

.admin-week-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.5rem;
    padding: 0 0.5rem 0.25rem;
}

.admin-week-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(4.25rem, 1fr));
    gap: 0.375rem;
    text-align: center;
    min-width: 32rem;
}

@media (min-width: 768px) {
    .admin-week-grid { min-width: 0; }
}

.admin-day {
    border-radius: 12px;
    padding: 0.5rem 0.25rem;
    min-height: 5.5rem;
    background: #f5f5f7;
}

.admin-day.is-today { background: rgba(212,175,55,0.12); box-shadow: inset 0 0 0 1.5px rgba(212,175,55,0.45); }
.admin-day-name { font-size: 0.625rem; font-weight: 700; color: #636366; text-transform: uppercase; letter-spacing: 0.02em; }
.admin-day-num { font-size: 1.125rem; font-weight: 700; color: #1d1d1f; margin: 0.125rem 0; }
.admin-day.is-today .admin-day-num { color: var(--gold-dark); }

.admin-day-event {
    display: block;
    margin-top: 0.25rem;
    padding: 0.25rem 0.375rem;
    border-radius: 8px;
    background: rgba(212,175,55,0.2);
    color: #8B6914;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-event-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.admin-event-card {
    display: block;
    padding: 1rem 1.125rem;
    color: #1d1d1f;
    transition: box-shadow 0.2s, transform 0.15s;
}

.admin-event-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.admin-event-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
}

.admin-event-card span {
    display: block;
    font-size: 0.8125rem;
    color: #636366;
    margin-top: 0.25rem;
}

.admin-event-card-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 480px) {
    .admin-event-card-row { flex-direction: column; gap: 0.5rem; }
    .admin-event-card-meta { text-align: left !important; }
}

.admin-event-card-meta {
    text-align: right;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: #636366;
}

.admin-event-card-meta .text-gold { color: var(--gold-dark) !important; font-weight: 600; }

.admin-fab {
    position: fixed;
    bottom: calc(4rem + var(--safe-bottom));
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 40;
}

@media (min-width: 768px) {
    .admin-fab {
        display: none;
    }
}
.admin-hide-mobile { display: none; }
@media (min-width: 640px) { .admin-hide-mobile { display: inline-flex; } }

.admin-btn-sm { padding: 0.5rem 1rem; min-height: 36px; font-size: 0.8125rem; }

.admin-btn-blue {
    font-size: 0.875rem;
    font-weight: 500;
    background: #007aff;
    color: #fff;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    min-height: 44px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.admin-btn-green {
    font-size: 0.875rem;
    font-weight: 500;
    background: #30d158;
    color: #fff;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    min-height: 44px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.admin-btn-danger-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ff453a;
    padding: 0.625rem 1rem;
    min-height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.admin-select {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 0.5px solid rgba(0,0,0,0.08);
    background: #f5f5f7;
    color: #1d1d1f;
    min-height: 44px;
    font-family: var(--font);
}

.admin-select-full { width: 100%; }

.input-file { padding: 0.5rem !important; }

.admin-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.admin-delete-form { margin-top: 0.75rem; }

.admin-list-cat {
    padding: 0.75rem 1.125rem;
    background: #f5f5f7;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #636366;
}

.admin-list-item-media {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex: 1;
}

.admin-list-item-text { min-width: 0; }

.admin-list-thumb {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.admin-list-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    font-size: 0.625rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
}

.admin-list-action {
    color: #007aff;
    font-size: 0.875rem;
    font-weight: 500;
    flex-shrink: 0;
}

.admin-pkg-preview {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0.75rem 0;
}

.admin-pkg-preview.is-hidden { display: none; }

.admin-img-preview-wrap { position: relative; }

.admin-pkg-preview-empty {
    height: 160px;
    border-radius: 12px;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    color: #86868b;
    font-size: 0.875rem;
    border: 1px dashed rgba(0,0,0,0.1);
}

.admin-pkg-preview-empty.is-hidden { display: none; }

.admin-checklist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.admin-checklist-row + .admin-checklist-row { border-top: 0.5px solid rgba(0,0,0,0.04); }

.admin-checklist-row strong {
    display: block;
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.9375rem;
}

.admin-checklist-row span {
    display: block;
    font-size: 0.75rem;
    color: #86868b;
    margin-top: 0.125rem;
}

.admin-progress-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }

/* Orçamento */
.quote-layout { display: grid; gap: 1.5rem; }
@media (min-width: 960px) { .quote-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.quote-preview {
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 0.5px solid rgba(0,0,0,0.06);
}

.quote-preview pre {
    white-space: pre-wrap;
    word-break: break-word;
    font-family: var(--font);
    font-size: 0.875rem;
    line-height: 1.55;
    color: #1d1d1f;
    background: #f5f5f7;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.quote-totals { display: grid; gap: 0.75rem; margin-top: 1rem; }
.quote-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f5f5f7;
    border-radius: 10px;
    font-size: 0.9375rem;
}

.quote-total-row.highlight {
    background: rgba(212,175,55,0.12);
    font-weight: 600;
    color: #1d1d1f;
}

.quote-total-row strong { color: var(--gold-dark); }

.hint code {
    background: rgba(0,0,0,0.05);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.8125rem;
}

.hint { font-size: 0.8125rem; color: #86868b; font-weight: 400; }

/* ── Equipe checklist ── */
.checklist-page { background: #000; min-height: 100dvh; display: flex; flex-direction: column; }

.ios-list {
    background: #1c1c1e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.5px solid var(--border);
}

.ios-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0.875rem 1rem;
    border-bottom: 0.5px solid var(--border);
    background: transparent;
    width: 100%;
    text-align: left;
    color: inherit;
    cursor: pointer;
    border-left: none; border-right: none; border-top: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.ios-list-item:last-child { border-bottom: none; }
.ios-list-item.done { background: rgba(48,209,88,0.08); }

.ios-status-pill {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    white-space: nowrap;
}

/* ── Animations ── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════
   PREMIUM HOME — estilo Apple 2026
   ══════════════════════════════════════════ */

.hero-premium {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212,175,55,0.18), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(120,80,200,0.08), transparent),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(212,175,55,0.06), transparent),
        linear-gradient(180deg, #000 0%, #050505 50%, #0a0a0a 100%);
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orb-float 12s ease-in-out infinite;
}

.orb-1 { width: 400px; height: 400px; background: rgba(212,175,55,0.12); top: 10%; left: 20%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(100,60,180,0.08); bottom: 20%; right: 10%; animation-delay: -4s; }
.orb-3 { width: 200px; height: 200px; background: rgba(212,175,55,0.08); top: 50%; left: 60%; animation-delay: -8s; }

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotateX(0deg); }
    33% { transform: translate(30px, -20px) scale(1.05) rotateX(8deg); }
    66% { transform: translate(-20px, 15px) scale(0.95) rotateX(-6deg); }
}

/* Grade 3D de fundo */
.hero-grid-3d {
    position: absolute;
    inset: -20% -10%;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(800px) rotateX(68deg) translateY(-10%);
    transform-origin: center top;
    opacity: 0.35;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
    animation: grid-drift 30s linear infinite;
}

@keyframes grid-drift {
    from { background-position: 0 0; }
    to { background-position: 0 48px; }
}

/* Objetos 3D flutuantes */
.hero-scene-3d {
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 1400px;
    transform-style: preserve-3d;
    z-index: 1;
    transition: transform 0.4s ease-out;
}

.shape-3d {
    position: absolute;
    transform-style: preserve-3d;
    border: 1px solid rgba(212,175,55,0.25);
    backdrop-filter: blur(2px);
}

.shape-cube {
    width: 72px;
    height: 72px;
    top: 18%;
    right: 12%;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.02));
    box-shadow: 0 20px 60px rgba(212,175,55,0.12);
    animation: spin3d 22s linear infinite;
}

.shape-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 55%;
    left: 8%;
    border-width: 2px;
    border-color: rgba(212,175,55,0.35);
    background: transparent;
    animation: spin3d-reverse 18s linear infinite;
}

.shape-plate {
    width: 140px;
    height: 8px;
    bottom: 28%;
    right: 22%;
    border-radius: 4px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
    animation: float3d 14s ease-in-out infinite;
}

.shape-beam {
    width: 4px;
    height: 100px;
    top: 25%;
    left: 20%;
    background: linear-gradient(180deg, rgba(212,175,55,0.5), transparent);
    border: none;
    animation: float3d 11s ease-in-out infinite reverse;
}

@keyframes spin3d {
    from { transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg); }
    to { transform: rotateX(20deg) rotateY(360deg) rotateZ(12deg); }
}

@keyframes spin3d-reverse {
    from { transform: rotateX(60deg) rotateY(360deg); }
    to { transform: rotateX(60deg) rotateY(0deg); }
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) translateZ(0); opacity: 0.7; }
    50% { transform: translateY(-24px) translateZ(40px); opacity: 1; }
}

@media (max-width: 767px) {
    .shape-cube { width: 48px; height: 48px; top: 12%; right: 6%; }
    .shape-ring { width: 80px; height: 80px; }
    .shape-plate, .shape-beam { display: none; }
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    max-width: 42rem;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.75rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 540px) {
    .hero-cta { flex-direction: row; justify-content: center; }
}

.hero-note {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.text-center { text-align: center; }

/* Features */
.features-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.feature-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.06);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: 12px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Product spotlight */
.product-spotlight {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, #0f0a00 50%, var(--bg-soft) 100%);
}

.product-spotlight-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .product-spotlight-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-spotlight-inner {
    max-width: 32rem;
}

.product-spotlight-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.product-spotlight-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 30%, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.product-spotlight-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
}

.product-spotlight-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.product-spotlight-price {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.product-spotlight-price span {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.product-spotlight-visual {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .product-spotlight-visual {
        max-width: 380px;
        margin: 0 0 0 auto;
    }
}

.spotlight-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    animation: ring-pulse 4s ease-in-out infinite;
}

.spotlight-ring-2 {
    inset: 15%;
    border-color: rgba(212,175,55,0.12);
    animation-delay: -2s;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

.spotlight-core {
    position: absolute;
    inset: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.05) 70%);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gold);
    animation: core-glow 3s ease-in-out infinite;
}

@keyframes core-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 80px rgba(212,175,55,0.4); }
}

.spotlight-photo-wrap {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 0.5px solid rgba(212,175,55,0.25);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212,175,55,0.15);
}

.spotlight-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product lines */
.product-lines { display: flex; flex-direction: column; gap: 0.75rem; }

.product-line {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    color: inherit;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-line:hover {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.25);
}

.product-line:not([data-tilt]):hover {
    transform: translateX(6px);
}

.product-line-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--gold);
}

.product-line-thumb {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
    border: 0.5px solid rgba(212,175,55,0.25);
}

.product-line-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
}

.product-line-body h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0.125rem 0;
    letter-spacing: -0.01em;
}

.product-line-body p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.product-line-arrow {
    margin-left: auto;
    color: rgba(255,255,255,0.2);
    font-size: 1.25rem;
    transition: color 0.2s, transform 0.2s;
}

.product-line:hover .product-line-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* Premium cards */
.card-premium {
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.card-premium:hover::before { opacity: 1; }

/* Steps */
.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.step { text-align: center; }

.step-num {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #000;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 50%;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Stats premium */
.stats-premium {
    padding: 4rem 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: rgba(212,175,55,0.03);
}

/* CTA premium */
.cta-premium {
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212,175,55,0.1), transparent);
    pointer-events: none;
}

.cta-premium-inner {
    position: relative;
    z-index: 1;
}

.cta-premium-inner p {
    color: var(--text-muted);
    margin: 1rem 0 2rem;
    font-size: 1.0625rem;
}

/* Scroll reveal — nunca no <section> pai, so nos filhos */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.fade-up { animation: fade-up 0.6s ease both; }


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Equipe (checklist mobile) ── */
.equipe-body {
    background: #000;
    color: #f5f5f7;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.equipe-header {
    background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    padding-bottom: 1.25rem;
}

.equipe-header-inner { padding-top: 1rem; }

.equipe-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.equipe-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.12);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.equipe-title {
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.equipe-meta {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0.5rem 0 0;
}

.equipe-location {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin: 0.375rem 0 0;
}

.equipe-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.equipe-progress .progress-ios {
    background: rgba(255,255,255,0.08);
    height: 6px;
}

.equipe-progress-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

.equipe-main {
    flex: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.equipe-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.equipe-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    width: 100%;
    padding: 1rem 1.125rem;
    border-radius: 14px;
    border: 0.5px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: inherit;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.equipe-item-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.equipe-item-text span {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.125rem;
}

.equipe-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.equipe-act {
    flex: 1;
    min-height: 44px;
    padding: 0.5rem 0.625rem;
    border-radius: 10px;
    border: 0.5px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, opacity 0.15s;
}

.equipe-act:active:not(:disabled) { transform: scale(0.98); }

.equipe-act-fwd {
    background: rgba(212,175,55,0.18);
    border-color: rgba(212,175,55,0.35);
    color: var(--gold-light);
}

.equipe-act:disabled {
    opacity: 0.28;
    cursor: not-allowed;
}

.equipe-status {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.5rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    text-align: center;
    min-width: 4.5rem;
}

.equipe-item.status-separated { border-color: rgba(0,122,255,0.35); }
.equipe-item.status-separated .equipe-status { background: rgba(0,122,255,0.15); color: #64b5ff; }

.equipe-item.status-loaded { border-color: rgba(255,149,0,0.35); }
.equipe-item.status-loaded .equipe-status { background: rgba(255,149,0,0.15); color: #ffb340; }

.equipe-item.status-onsite { border-color: rgba(175,82,222,0.35); }
.equipe-item.status-onsite .equipe-status { background: rgba(175,82,222,0.15); color: #c77dff; }

.equipe-item.status-returned,
.equipe-item.is-done {
    opacity: 0.55;
    border-color: rgba(52,199,89,0.25);
}

.equipe-item.status-returned .equipe-status,
.equipe-item.is-done .equipe-status {
    background: rgba(52,199,89,0.15);
    color: #5dd879;
}

.equipe-footer {
    padding: 1rem;
    text-align: center;
    border-top: 0.5px solid rgba(255,255,255,0.06);
}

.equipe-footer p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    line-height: 1.45;
}

.equipe-footer strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* Admin — copiar link equipe */
.admin-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.admin-link-row code {
    flex: 1;
    min-width: 0;
    font-size: 0.8125rem;
    word-break: break-all;
    background: rgba(0,0,0,0.04);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.admin-cal-sync {
    margin-bottom: 1.5rem;
}

.admin-cal-sync-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.25rem 0 0.5rem;
}

.admin-cal-sync-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0.75rem;
}

.admin-cal-link-row {
    margin-top: 0;
}

.admin-cal-help {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #86868b;
}

.admin-cal-help summary {
    cursor: pointer;
    color: #007aff;
    font-weight: 500;
    user-select: none;
}

.admin-cal-help ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
    line-height: 1.55;
}

.admin-cal-help li + li {
    margin-top: 0.35rem;
}

.admin-cal-regen {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.admin-link-muted {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8125rem;
    color: #86868b;
    cursor: pointer;
    text-decoration: underline;
}

.admin-link-muted:hover {
    color: #1d1d1f;
}

.admin-event-cal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.admin-wa-preview {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.02);
    border: 0.5px solid rgba(0,0,0,0.06);
}

.admin-wa-preview-card {
    margin-top: 0.75rem;
    max-width: 360px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 0.5px solid rgba(0,0,0,0.08);
}

.admin-wa-preview-img {
    aspect-ratio: 1.91 / 1;
    background: #111;
    overflow: hidden;
}

.admin-wa-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-wa-preview-body {
    padding: 0.75rem 0.875rem 0.875rem;
    background: #f0f2f5;
}

.admin-wa-preview-body strong {
    display: block;
    font-size: 0.875rem;
    color: #111;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.admin-wa-preview-body p {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    color: #667781;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.admin-wa-preview-body span {
    font-size: 0.75rem;
    color: #8696a0;
    text-transform: lowercase;
}

.admin-body .btn-ghost {
    border: 1px solid rgba(0,0,0,0.12);
    color: #1d1d1f;
    background: #fff;
}

.admin-body .btn-ghost:hover {
    background: rgba(0,0,0,0.04);
}

/* Equipe — login & agenda */
.equipe-login-body { justify-content: center; }

.equipe-login-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.equipe-login-card {
    width: 100%;
    max-width: 22rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.08);
}

.equipe-brand-center { justify-content: center; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.equipe-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: center;
}

.equipe-login-sub {
    color: var(--text-muted);
    font-size: 0.9375rem;
    text-align: center;
    margin: 0.75rem 0 1.5rem;
    line-height: 1.5;
}

.equipe-login-form { display: flex; flex-direction: column; gap: 0.75rem; }

.equipe-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.input-ios-dark {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    border: 0.5px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.0625rem;
    font-family: var(--font);
    letter-spacing: 0.02em;
}

.input-ios-dark:focus {
    outline: none;
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.equipe-alert {
    background: rgba(255,69,58,0.12);
    border: 0.5px solid rgba(255,69,58,0.3);
    color: #ff8a82;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.equipe-login-foot {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin: 1.25rem 0 0;
}

.equipe-link-muted, .equipe-back {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.equipe-back { font-weight: 500; }

.equipe-meta-top { margin: 0 0 0.25rem; }

.equipe-login-hint {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    margin: 1rem 0 0;
}

.equipe-login-hint a { color: var(--gold); }

.equipe-cal-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.equipe-cal-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin: 0.75rem 0 0;
    line-height: 1.45;
}

.equipe-empty { text-align: center; padding: 2rem 0; color: var(--text-muted); }

.equipe-agenda-list { display: flex; flex-direction: column; gap: 0.875rem; padding-bottom: 2rem; }

.equipe-agenda-card {
    padding: 1.125rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.08);
}

.equipe-agenda-date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.equipe-agenda-day { font-size: 0.8125rem; font-weight: 600; color: var(--gold); }

.equipe-agenda-time { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

.equipe-agenda-title { font-size: 1.125rem; font-weight: 600; margin: 0; letter-spacing: -0.01em; }

.equipe-agenda-pkg { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin: 0.25rem 0 0; }

.equipe-progress-compact { margin-top: 0.75rem; }

.equipe-agenda-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8125rem; min-height: auto; }

/* Admin — equipe & audit */
.admin-hint-list {
    margin: 0.75rem 0 0;
    padding-left: 1.125rem;
    font-size: 0.875rem;
    color: #86868b;
    line-height: 1.6;
}

.admin-team-card { margin-bottom: 0.75rem; padding: 1.25rem; }

.admin-team-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 0.5px solid rgba(0,0,0,0.06);
}

.admin-check-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.admin-team-pick { display: flex; flex-direction: column; gap: 0.5rem; }

.admin-team-pick-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: #f5f5f7;
    cursor: pointer;
}

.admin-team-pick-item strong { display: block; font-size: 0.9375rem; color: #1d1d1f; }

.admin-team-pick-item small { display: block; font-size: 0.75rem; color: #86868b; }

.admin-audit-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-bottom: 0.5px solid rgba(0,0,0,0.04);
}

.admin-audit-row:last-child { border-bottom: none; }

.admin-audit-row strong { display: block; font-size: 0.9375rem; color: #1d1d1f; }

.admin-audit-row span { display: block; font-size: 0.75rem; color: #86868b; margin-top: 0.125rem; }

.admin-audit-meta {
    text-align: right;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: #86868b;
}

.admin-audit-meta span { display: block; font-weight: 600; color: #1d1d1f; }

.admin-audit-meta time { display: block; margin-top: 0.125rem; }
