/* ============================================
   VARIÁVEIS — EDITE AS CORES AQUI
   ============================================ */
:root {
  --preto:          #0c0b09;
  --preto-suave:    #1c1a17;
  --ouro:           #c9a84c;
  --ouro-escuro:    #8b6c1f;
  --ouro-claro:     #e8c96a;
  --ouro-grad:      linear-gradient(135deg, #8b6c1f 0%, #c9a84c 45%, #e8c96a 65%, #c9a84c 100%);
  --creme:          #fdfbf7;
  --creme-alt:      #f4efe4;
  --creme-borda:    #e8e0d0;
  --texto:          #1c1a17;
  --texto-suave:    #5a5248;
  --sombra-d:       0 4px 24px rgba(201, 168, 76, 0.18);
}

/* ============================================
   RESET E BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--texto);
  background-color: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem);  }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

/* ============================================
   UTILITÁRIOS
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.secao-titulo {
  text-align: center;
  margin-bottom: 4rem;
}

.tag-dourada {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.75rem;
}

.secao-titulo h2 {
  color: var(--preto-suave);
  margin-bottom: 1.1rem;
}

.linha-dourada {
  width: 56px;
  height: 2px;
  background: var(--ouro-grad);
  margin: 0 auto;
}

/* Botão principal dourado */
.btn-dourado {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--ouro);
  color: var(--ouro-claro);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-dourado:hover {
  background: var(--ouro);
  color: var(--preto);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#header.scrolled {
  background: rgba(12, 11, 9, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ouro-claro);
  line-height: 1;
}

.nav-subtitulo {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 201, 106, 0.5);
  margin-top: 0.25rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ouro);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.ativo {
  color: var(--ouro-claro);
}

.nav-menu a:hover::after,
.nav-menu a.ativo::after {
  width: 100%;
}

/* Hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ouro-claro);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.aberto span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.aberto span:nth-child(2) { opacity: 0; }
.menu-toggle.aberto span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--preto);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12, 11, 9, 0.15) 0%,
    rgba(12, 11, 9, 0.05) 50%,
    rgba(12, 11, 9, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: subirFade 1.2s ease both;
}

.hero-logo-wrap {
  display: inline-block;
  margin-bottom: 2.25rem;
  animation: subirFade 1s ease 0.15s both;
}

.hero-logo {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow:
    0 0 0 6px rgba(201, 168, 76, 0.06),
    0 0 50px rgba(201, 168, 76, 0.12);
}

.hero-titulo {
  background: var(--ouro-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
  animation: subirFade 1s ease 0.3s both;
}

.hero-subtitulo {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(232, 201, 106, 0.65);
  margin-bottom: 2rem;
  animation: subirFade 1s ease 0.42s both;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--ouro-grad);
  margin: 0 auto 2rem;
  animation: expandir 1s ease 0.54s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
  animation: subirFade 1s ease 0.66s both;
}

.hero-local {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3rem;
  animation: subirFade 1s ease 0.78s both;
}

.hero-content .btn-dourado {
  animation: subirFade 1s ease 0.9s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: pular 2.2s ease infinite;
}

.scroll-arrow {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(201, 168, 76, 0.45);
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
  transform: rotate(45deg);
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  padding: 7rem 0;
  background: var(--creme);
}

.sobre-conteudo {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.sobre-conteudo p {
  font-size: 1.05rem;
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.sobre-conteudo p strong {
  color: var(--texto);
  font-weight: 400;
}

.sobre-destaques {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--creme-borda);
}

.destaque-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.destaque-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  background: var(--ouro-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.destaque-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* ============================================
   ÁREAS DE ATUAÇÃO
   ============================================ */
.areas {
  padding: 7rem 0;
  background: var(--preto);
  position: relative;
}

.areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.areas .secao-titulo h2 { color: var(--creme); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.area-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.14);
  padding: 2.4rem 2rem;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ouro-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(201, 168, 76, 0.32);
  transform: translateY(-5px);
  box-shadow: var(--sombra-d);
}

.area-card:hover::before { transform: scaleX(1); }

.area-icone {
  font-size: 1.75rem;
  margin-bottom: 1.2rem;
}

.area-card h3 {
  color: var(--ouro-claro);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.area-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ============================================
   EXPERIÊNCIA / TIMELINE
   ============================================ */
.experiencia {
  padding: 7rem 0;
  background: var(--creme-alt);
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.timeline-col-titulo {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ouro-escuro);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--creme-borda);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--ouro) 0%, transparent 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.1rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.33rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ouro);
  border: 2px solid var(--creme-alt);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.timeline-ano {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ouro);
  margin-bottom: 0.35rem;
}

.timeline-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--preto-suave);
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  padding: 7rem 0;
  background: var(--preto);
  position: relative;
}

.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom center, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.contato .secao-titulo h2 { color: var(--creme); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contato-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contato-icone {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contato-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.4rem;
}

.contato-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.contato-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.contato-item a:hover { color: var(--ouro-claro); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.75rem;
  background: #25D366;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0.25rem;
  border-radius: 2px;
}

.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp svg { flex-shrink: 0; }

/* Formulário */
.contato-form {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2.5rem;
}

.contato-form h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ouro-claro);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-grupo {
  margin-bottom: 1.2rem;
}

.form-grupo label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.5rem;
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.78rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-grupo select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-grupo select option {
  background: #1c1a17;
  color: rgba(255,255,255,0.8);
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.form-grupo textarea { resize: vertical; }

.btn-form {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  border: none;
}

.form-aviso {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 1rem;
  text-align: center;
}

.form-feedback {
  font-size: 0.82rem;
  text-align: center;
  margin-top: 0.75rem;
  min-height: 1.2em;
  color: var(--ouro-claro);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #080807;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.8;
}

.footer-nome {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ouro);
}

.footer-subtitulo {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.38);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--ouro); }

.footer-divisor {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 2.5rem;
}

.footer-base {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-cnpj {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.footer-aviso {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.18);
  font-style: italic;
  max-width: 620px;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.18);
}

/* ============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ============================================
   ANIMAÇÕES ENTRADA
   ============================================ */
@keyframes subirFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes expandir {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes pular {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* Animação disparada pelo IntersectionObserver */
.animar {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animar.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVO — MOBILE NAV
   ============================================ */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 100vw);
    height: 100vh;
    background: rgba(12, 11, 9, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.14);
  }

  .nav-menu.aberto { right: 0; }

  .nav-menu a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-topo {
    flex-direction: column;
    align-items: flex-start;
  }

  .sobre-destaques {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .nav-container { padding: 1rem 1.25rem; }
  .container     { padding: 0 1.25rem; }

  .hero-logo     { width: 88px; height: 88px; }

  .sobre,
  .areas,
  .experiencia,
  .contato { padding: 5rem 0; }

  .contato-form  { padding: 1.75rem 1.25rem; }

  .footer        { padding: 2.5rem 0 2rem; }

  .footer-nav    { gap: 1.25rem; }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg { width: 24px; height: 24px; }
}
