:root {
    --bg: #0e0e10;
    --bg-alt: #18181b;
    --bg-card: #1f1f23;
    --accent: #ff7a1a;
    --text: #f5f5f5;
    --text-muted: #9b9ba3;
    --border: #2a2a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Anton', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.highlight {
    color: var(--accent);
}

main {
    max-width: 480px;
    margin: 40px auto;
    padding: 0 16px;
}

main h1 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-lead {
    color: var(--text-muted);
    max-width: 540px;
    margin-top: 8px;
}

/* Header / navegação */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(14, 14, 16, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--text);
}

/* Hero */

.hero {
    position: relative;
    padding: 100px 16px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, #2a2a2e, var(--bg) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 16px 0;
}

.hero p {
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Faixa de destaque (marquee) */

.marquee {
    background: var(--accent);
    color: #0e0e10;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    animation: marquee 30s linear infinite;
}

.marquee-sep {
    opacity: 0.6;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Seções gerais */

.section {
    padding: 64px 16px;
}

.section-alt {
    background: var(--bg-alt);
}

.section h2 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin-bottom: 8px;
}

/* Sobre */

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-img {
    aspect-ratio: 4 / 3;
}

.sobre-content p {
    color: var(--text-muted);
    margin: 16px 0;
    max-width: 480px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tag {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Placeholders de imagem */

.placeholder-img {
    background: repeating-linear-gradient(45deg, var(--bg-card), var(--bg-card) 10px, #26262b 10px, #26262b 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
}

/* Portfólio */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
}

.play-icon {
    font-size: 1.5rem;
}

.portfolio-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--accent);
    color: #0e0e10;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}

.cta-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 8px;
}

.cta-bar p {
    color: var(--text-muted);
}

/* Serviços & preços */

.servicos-list {
    list-style: none;
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

.servico-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.servico-nome {
    font-weight: 700;
}

.servico-descricao,
.servico-duracao {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.servico-duracao {
    text-transform: uppercase;
    font-size: 0.75rem;
}

.servico-preco {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Cards (equipe / avaliações) */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.card p {
    color: var(--text-muted);
}

.depoimento {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.depoimento-autor {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Onde & quando */

.onde-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.endereco {
    color: var(--text-muted);
    margin: 8px 0 16px;
}

.horarios-tabela {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.horarios-tabela td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.horarios-tabela td:last-child {
    text-align: right;
    color: var(--text-muted);
}

.mapa {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(92%) hue-rotate(180deg) contrast(85%);
}

/* CTA final */

.cta-final {
    text-align: center;
    padding: 80px 16px;
}

.cta-final h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 16px;
}

.cta-final p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Rodapé */

.site-footer {
    background: var(--bg-alt);
    text-align: center;
    padding: 48px 16px;
    border-top: 1px solid var(--border);
}

.site-footer .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.site-footer p {
    color: var(--text-muted);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--text);
}

/* Botões */

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: #0e0e10;
    text-decoration: none;
    border: 2px solid var(--accent);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
    transition: transform 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

/* Formulário de agendamento */

.erro {
    color: #ff6b6b;
    margin-bottom: 12px;
}

.agendar-form {
    max-width: 480px;
    margin-top: 24px;
}

.agendar-form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.agendar-form input,
.agendar-form select,
.agendar-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    background: var(--bg-card);
    color: var(--text);
}

.agendar-form input:focus,
.agendar-form select:focus,
.agendar-form textarea:focus {
    outline: 2px solid var(--accent);
}

.agendar-form textarea {
    min-height: 60px;
    resize: vertical;
}

.agendar-form button {
    margin-top: 16px;
}

/* Confirmação de agendamento */

.resumo-agendamento {
    margin: 16px 0;
    padding-left: 20px;
}

.resumo-agendamento li {
    margin-bottom: 4px;
}

.confirmacao-page p {
    margin-top: 16px;
}

.confirmacao-page a:not(.btn) {
    color: var(--accent);
}

/* Responsivo */

@media (max-width: 768px) {
    .sobre-grid,
    .onde-grid {
        grid-template-columns: 1fr;
    }
}
