/* 1. Cores e configurações gerais */
:root {
  --cor-fundo: oklch(5% 0 0);
  --cor-texto: oklch(98% 0 0);
  --cor-dourada: oklch(75% .15 85);
  --cor-dourada-clara: oklch(85% .1 85);
  --cor-superficie: oklch(12% 0 0);
  --largura-container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cor-fundo); color: var(--cor-texto); font-family: "Inter", sans-serif; }
body::selection { background: color-mix(in oklch, var(--cor-dourada) 30%, transparent); color: var(--cor-dourada); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Playfair Display", serif; font-weight: 500; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 48px, var(--largura-container)); margin-inline: auto; }
.secao { padding-block: 128px; }

/* 2. Botões */
.botao { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; transition: .2s ease; }
.botao-dourado { background: var(--cor-dourada); color: var(--cor-fundo); }
.botao-dourado:hover { background: var(--cor-dourada-clara); transform: scale(1.03); }
.botao-contorno { border-color: rgb(255 255 255 / 20%); }
.botao-contorno:hover { background: rgb(255 255 255 / 5%); }

/* 3. Cabeçalho */
.cabecalho { position: fixed; inset: 0 0 auto; z-index: 10; border-bottom: 1px solid rgb(255 255 255 / 5%); background: color-mix(in oklch, var(--cor-fundo) 80%, transparent); backdrop-filter: blur(12px); }
.cabecalho-conteudo { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.logo { width: auto; height: 40px; }
.logo img { width: auto; height: 100%; object-fit: contain; }
.menu { display: flex; gap: 32px; color: rgb(255 255 255 / 70%); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .025em; }
.menu a:hover { color: var(--cor-dourada); }
.botao-cabecalho { padding: 10px 24px; font-size: 12px; }

/* 4. Apresentação principal */
.hero { padding-block: 128px 80px; overflow: hidden; }
.hero-grade { display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; gap: 48px; }
.hero-texto { position: relative; z-index: 1; }
.chamada { margin-bottom: 24px; color: var(--cor-dourada); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .3em; }
.hero h1 { margin-bottom: 32px; font-size: 72px; line-height: 1.1; }
.hero h1 em { color: var(--cor-dourada); }
.hero-descricao { max-width: 512px; margin-bottom: 40px; color: rgb(255 255 255 / 60%); font-size: 18px; line-height: 1.625; }
.hero-botoes { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-imagem-area { position: relative; }
.hero-brilho { position: absolute; inset: -16px; border-radius: 50%; background: color-mix(in oklch, var(--cor-dourada) 20%, transparent); filter: blur(64px); }
.hero-imagem { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 16px; background: var(--cor-superficie); box-shadow: 0 25px 50px -12px rgb(0 0 0 / 50%); outline: 1px solid rgb(255 255 255 / 10%); }
.hero-imagem img { width: 100%; height: 100%; object-fit: cover; }

/* 5. Números */
.estatisticas { padding-block: 80px; border-block: 1px solid rgb(255 255 255 / 5%); background: color-mix(in oklch, var(--cor-superficie) 50%, transparent); }
.estatisticas-grade { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.estatistica { text-align: center; }
.estatistica strong { display: block; margin-bottom: 8px; color: var(--cor-dourada); font-family: "Playfair Display", serif; font-size: 36px; font-weight: 500; }
.estatistica span { color: rgb(255 255 255 / 40%); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

/* 6. Serviços */
.titulo-secao { margin-bottom: 80px; text-align: center; }
.titulo-secao h2 { margin-bottom: 16px; font-size: 36px; }
.titulo-secao span { display: block; width: 80px; height: 4px; margin: auto; background: var(--cor-dourada); }
.servicos-grade { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.servico-card { padding: 32px; border: 1px solid rgb(255 255 255 / 5%); border-radius: 16px; background: var(--cor-superficie); transition: border-color .2s; }
.servico-card:hover { border-color: color-mix(in oklch, var(--cor-dourada) 30%, transparent); }
.servico-icone { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 8px; background: color-mix(in oklch, var(--cor-dourada) 10%, transparent); color: var(--cor-dourada); font-size: 24px; }
.servico-card h3 { margin-bottom: 16px; font-size: 20px; }
.servico-card:hover h3 { color: var(--cor-dourada); }
.servico-card p { margin-bottom: 0; color: rgb(255 255 255 / 50%); font-size: 14px; line-height: 1.625; }

/* 7. Proposta e formulário */
.proposta { background: color-mix(in oklch, var(--cor-dourada) 5%, transparent); }
.proposta-caixa { display: flex; overflow: hidden; border: 1px solid color-mix(in oklch, var(--cor-dourada) 20%, transparent); border-radius: 24px; background: var(--cor-superficie); }
.proposta-texto, .formulario-area { width: 50%; padding: 48px; }
.proposta-texto { display: flex; flex-direction: column; justify-content: center; }
.proposta-texto h2 { margin-bottom: 24px; font-size: 36px; }
.proposta-texto > p { margin-bottom: 32px; color: rgb(255 255 255 / 60%); }
.proposta-texto blockquote { margin: 0 0 16px; color: rgb(255 255 255 / 80%); font-size: 14px; font-style: italic; }
.proposta-texto blockquote::before { content: ""; display: inline-block; width: 32px; height: 1px; margin-right: 16px; vertical-align: middle; background: var(--cor-dourada); }
.proposta-texto cite { color: var(--cor-dourada); font-size: 12px; font-style: normal; text-transform: uppercase; letter-spacing: .1em; }
.formulario-area { border-left: 1px solid rgb(255 255 255 / 5%); background: rgb(255 255 255 / 5%); }
.formulario { display: grid; gap: 16px; }
.campos-duplos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.campo label { display: block; margin-bottom: 8px; color: rgb(255 255 255 / 40%); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.campo input, .campo select, .campo textarea { width: 100%; padding: 12px 16px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 8px; outline: none; background: color-mix(in oklch, var(--cor-fundo) 50%, transparent); color: var(--cor-texto); font: inherit; font-size: 14px; }
.campo input:focus, .campo select:focus, .campo textarea:focus { border-color: var(--cor-dourada); }
.campo textarea { resize: none; }
.botao-enviar { width: 100%; margin-top: 16px; border-radius: 8px; }

input, select, textarea {
    background-color: var(--cor-fundo) !important;
}

/* 8. Rodapé */
.rodape { padding-block: 48px; border-top: 1px solid rgb(255 255 255 / 5%); }
.rodape-conteudo { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.rodape p { margin: 0; color: rgb(255 255 255 / 30%); font-size: 10px; text-align: center; text-transform: uppercase; letter-spacing: .2em; }
.redes-sociais { display: flex; gap: 24px; }
.redes-sociais a { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / 20%); border-radius: 50%; color: rgb(255 255 255 / 50%); font-size: 12px; font-weight: 700; }
.redes-sociais a:hover { border-color: var(--cor-dourada); color: var(--cor-dourada); }

/* 9. Ajustes para telas menores */
@media (max-width: 767px) {
  .menu { display: none; }
  .hero-grade { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .estatisticas-grade { grid-template-columns: repeat(2, 1fr); }
  .servicos-grade { grid-template-columns: 1fr; }
  .proposta-caixa { flex-direction: column; }
  .proposta-texto, .formulario-area { width: 100%; }
  .formulario-area { border-top: 1px solid rgb(255 255 255 / 5%); border-left: 0; }
  .rodape-conteudo { flex-direction: column; }
}

@media (max-width: 639px) {
  .botao-cabecalho { display: none; }
  .container { width: min(100% - 32px, var(--largura-container)); }
  .secao { padding-block: 80px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: 42px; }
  .proposta-texto, .formulario-area { padding: 32px 24px; }
  .campos-duplos { grid-template-columns: 1fr; }
}