:root {
  --azul-noturno: #1A1535;
  --dourado: #C9933A;
  --dourado-claro: #E8B84B;
  --azul-celeste: #B8D4E8;
  --creme: #EDD2A3;
  --creme-suave: rgba(237, 210, 163, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--azul-noturno);
  color: var(--creme);
  font-family: 'Noto Serif Display', serif;
  overflow-x: hidden;
}

/* ── STARS ── */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.stars::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 1px;
  background: #EDD2A3;
  border-radius: 50%;
  box-shadow:
    80px 120px #EDD2A3, 200px 80px #C9933A, 350px 200px #EDD2A3,
    500px 90px #B8D4E8, 650px 300px #EDD2A3, 800px 150px #C9933A,
    950px 250px #EDD2A3, 1100px 80px #B8D4E8, 1280px 180px #EDD2A3,
    1400px 320px #C9933A, 120px 400px #B8D4E8, 320px 500px #EDD2A3,
    480px 450px #C9933A, 700px 520px #EDD2A3, 900px 480px #B8D4E8,
    1050px 600px #EDD2A3, 1300px 550px #C9933A, 60px 650px #EDD2A3,
    250px 700px #B8D4E8, 550px 720px #EDD2A3, 780px 680px #C9933A,
    1000px 750px #EDD2A3, 1200px 700px #B8D4E8, 1450px 650px #EDD2A3;
}

.stars::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: #C9933A;
  border-radius: 50%;
  box-shadow:
    160px 200px #C9933A, 380px 140px #EDD2A3, 580px 380px #C9933A,
    760px 220px #EDD2A3, 980px 420px #C9933A, 1180px 260px #EDD2A3,
    300px 780px #C9933A, 560px 820px #EDD2A3, 820px 760px #C9933A;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 21, 53, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 147, 58, 0.2);
}

header::before {
  content: '☉  ☽  ☿  ♀  ♂  ♃  ♄';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  letter-spacing: 0.9rem;
  color: var(--dourado);
  pointer-events: none;
  white-space: nowrap;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  z-index: 1;
}

.logo-header img {
  width: 44px;
  flex-shrink: 0;
}

.logo-header-text .nome {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: var(--dourado);
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

nav {
  display: flex;
  gap: 3rem;
  z-index: 1;
}

nav a {
  color: var(--creme-suave);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

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

nav a:hover {
  color: var(--dourado);
}

nav a:hover::after {
  width: 100%;
}

#sobre,
#servicos,
#contato {
  scroll-margin-top: 80px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1;
  padding-top: 50px;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 147, 58, 0.4) 20%, rgba(201, 147, 58, 0.4) 80%, transparent);
}

.hero-esquerda {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  position: relative;
  overflow: hidden;
}

/* número I atrás do texto, no topo */
.hero-esquerda::before {
  content: 'I';
  position: absolute;
  top: 80px;
  left: 4rem;
  font-size: 16rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: 20%;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: 'Noto Serif Display', serif;
}

.hero-esquerda>* {
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--dourado);
  flex-shrink: 0;
}

.hero-titulo-grande {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--creme);
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}

.hero-titulo-grande em {
  font-style: italic;
  color: var(--dourado);
  display: block;
}

.hero-linha {
  width: 60px;
  height: 1px;
  background: var(--dourado);
  margin: 1.5rem 0;
  opacity: 0.5;
}

.hero-descricao {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--creme-suave);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 2.5rem;
  font-family: serif;
}

.hero-botoes {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: rgba(201, 147, 58, 0.12);
  border: 1px solid var(--dourado);
  color: var(--dourado);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-family: serif;
  font-weight: 400;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: rgba(201, 147, 58, 0.2);
  color: var(--creme);
}

.hero-direita {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem;
  position: relative;
}

.hero-direita-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbita {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(201, 147, 58, 0.15);
}

.orbita::before,
.orbita::after {
  content: '✦';
  position: absolute;
  font-size: 1.75rem;
  color: var(--dourado);
  opacity: 0.5;
}

.orbita::before {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.orbita::after {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.orbita-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 147, 58, 0.1);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-logo-wrapper {
  position: relative;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(201, 147, 58, 0.25));
}

.hero-logo-wrapper img {
  width: 300px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-frase-lateral {
  margin-top: 3rem;
  text-align: center;
}

.hero-frase-lateral p {
  font-size: 1rem;
  font-style: italic;
  color: var(--creme);
  letter-spacing: 0.1rem;
  opacity: 0.8;
}

/* ── FAIXA ANIMADA ── */
.faixa-servicos {
  position: relative;
  z-index: 1;
  background: rgba(201, 147, 58, 0.05);
  border-top: 1px solid rgba(201, 147, 58, 0.15);
  border-bottom: 1px solid rgba(201, 147, 58, 0.15);
  padding: 1.2rem 0;
  overflow: hidden;
}

.faixa-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.faixa-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.faixa-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}

.faixa-item span {
  font-size: 0.65rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: rgba(237, 210, 163, 0.5);
  white-space: nowrap;
}

.faixa-divider {
  color: var(--dourado);
  opacity: 0.3;
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ── SOBRE ── */
.sobre {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 5rem 8rem;
  align-items: center;
  overflow: hidden;
}

.sobre-esquerda {
  position: relative;
}

/* número II atrás do texto, no topo */
.sobre-esquerda::before {
  content: 'II';
  position: absolute;
  top: -2rem;
  left: -2rem;
  font-size: 14rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: 20%;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: 'Noto Serif Display', serif;
}

.sobre-esquerda>* {
  position: relative;
  z-index: 1;
}

.sobre-label {
  font-size: 0.75rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
  display: block;
  margin-top: -2rem;
}

.sobre-titulo {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--creme);
}

.sobre-titulo em {
  font-style: italic;
  color: var(--dourado);
}

.sobre-direita {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--creme-suave);
  font-weight: 300;
  margin-bottom: 2rem;
  font-family: serif;
}

.sobre-assinatura {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  font-family: 'Noto Serif Display', serif;
  color: var(--dourado);
  letter-spacing: 0.1rem;
  margin-top: 1rem;
}

/* ── SERVIÇOS ── */
.servicos {
  position: relative;
  z-index: 1;
  padding: 2rem 8rem 10rem;
}

.servicos::before {
  content: 'III';
  position: absolute;
  top: -2rem;
  right: 4rem;
  font-size: 18rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: 20%;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: 'Noto Serif Display', serif;
}

.servicos-header {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(201, 147, 58, 0.15);
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.servicos-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dourado);
  letter-spacing: 0.1rem;
  font-style: italic;
}

.servicos-header p {
  font-size: 0.75rem;
  font-family: serif;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--creme);
}

.servicos-lista {
  position: relative;
  z-index: 1;
}

.servico-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201, 147, 58, 0.08);
  position: relative;
}

.servico-row::before {
  content: '';
  position: absolute;
  left: -8rem;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(201, 147, 58, 0.04);
  transition: width 0.4s ease;
}

.servico-row:hover::before {
  width: calc(100% + 16rem);
}

.servico-row:hover .servico-row-nome {
  color: var(--dourado);
  transform: translateX(8px);
}

.servico-num {
  font-size: 1.2rem;
  font-family: 'Noto Serif Display', serif;
  color: var(--dourado);
  letter-spacing: 0.1rem;
}

.servico-row-nome {
  font-size: 1.2rem;
  font-weight: 250;
  font-family: serif;
  color: var(--creme);
  letter-spacing: 0.05rem;
  transition: all 0.3s ease;
}

.servico-row-nome em {
  font-style: italic;
  color: rgba(237, 210, 163, 0.5);
  font-size: 1rem;
  margin-left: 1rem;
}

.servico-row-preco {
  font-size: 0.85rem;
  color: var(--dourado);
  letter-spacing: 0.1rem;
  text-align: right;
  white-space: nowrap;
}

/* ── FAIXA DOURADA ── */
.faixa-dourada {
  position: relative;
  z-index: 1;
  background: var(--dourado);
  padding: 5rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.faixa-dourada-texto h3 {
  font-size: 2rem;
  font-weight: 350;
  color: var(--azul-noturno);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.faixa-dourada-texto h3 em {
  font-style: italic;
}

.faixa-dourada-texto p {
  font-size: 1rem;
  font-weight: 500;
  font-family: serif;
  color: rgba(26, 21, 53, 0.7);
  line-height: 1.8;
}

.btn-escuro {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--azul-noturno);
  color: var(--azul-noturno);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-family: serif;
  font-weight: 450;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-escuro:hover {
  background: var(--azul-noturno);
  color: var(--dourado);
}

/* ── CONTATO ── */
.contato {
  position: relative;
  z-index: 1;
  padding: 10rem 8rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  overflow: hidden;
}

.contato-esquerda {
  position: relative;
}

/* número IV atrás do texto, no topo */
.contato-esquerda::before {
  content: 'IV';
  position: absolute;
  top: -2rem;
  left: -2rem;
  font-size: 14rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: 20%;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: 'Noto Serif Display', serif;
}

.contato-esquerda>* {
  position: relative;
  z-index: 1;
}

.contato-label {
  font-size: 0.75rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
  display: block;
  margin-top: -2rem;
}

.contato-titulo {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--creme);
}

.contato-titulo em {
  font-style: italic;
  color: var(--dourado);
}

.contato-desc {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--creme-suave);
  font-weight: 300;
  font-family: serif;
}

/* ── FORMULÁRIO ── */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.65rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 400;
  font-family: serif;
}

input,
textarea,
select {
  background: rgba(201, 147, 58, 0.05);
  border: 1px solid rgba(201, 147, 58, 0.2);
  color: var(--creme);
  padding: 0.9rem 1.2rem;
  font-family: 'Noto Serif Display', serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--dourado);
}

input::placeholder,
textarea::placeholder {
  color: rgba(237, 210, 163, 0.25);
}

select option {
  background: var(--azul-noturno);
  color: var(--creme);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  padding: 5rem 8rem 3rem;
  border-top: 1px solid rgba(201, 147, 58, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand img {
  width: 75px;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  opacity: 0.7;
}

.footer-brand {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: var(--dourado);
  line-height: 1.8;
}

.footer-brand span {
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  color: var(--dourado);
  opacity: 50%;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(237, 210, 163, 0.4);
  text-decoration: none;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--creme);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(201, 147, 58, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(237, 210, 163, 0.2);
  letter-spacing: 0.1rem;
}

.footer-planetas {
  font-size: 0.9rem;
  color: rgba(201, 147, 58, 0.25);
  letter-spacing: 0.6rem;
}

/* ══════════════════════════════════
   RESPONSIVIDADE
══════════════════════════════════ */

@media (max-width: 1024px) {
  header {
    padding: 1.2rem 1.5rem;
    justify-content: center;
  }

  header::before {
    display: none;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-esquerda {
    padding: 7rem 1.5rem 2rem;
    text-align: center;
    align-items: center;
  }

  .hero-esquerda::before {
    font-size: 10rem;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-tag::before {
    display: none;
  }

  .hero-linha {
    margin: 1.5rem auto;
  }

  .hero-botoes {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-descricao {
    text-align: center;
    max-width: 100%;
  }

  .hero-direita {
    padding: 4rem 1.5rem 5rem;
  }

  .orbita {
    width: 240px;
    height: 240px;
  }

  .orbita-2 {
    width: 190px;
    height: 190px;
  }

  .hero-logo-wrapper img {
    width: 130px;
  }

  .hero-frase-lateral {
    margin-top: 5rem;
  }

  .sobre {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .sobre-esquerda::before {
    font-size: 9rem;
  }

  .sobre-titulo {
    font-size: 2rem;
  }

  .sobre-direita p {
    font-size: 0.9rem;
  }

  .servicos {
    padding: 1rem 1.5rem 6rem;
  }

  .servicos::before {
    display: none;
  }

  .servicos-header {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
    text-align: center;
    align-items: center;
  }

  .servicos-header h2 {
    font-size: 2.5rem;
  }

  .servico-row {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .servico-row-preco {
    grid-column: 2;
    text-align: left;
    font-size: 0.8rem;
    color: rgba(201, 147, 58, 0.7);
    margin-top: 0.2rem;
  }

  .servico-row-nome {
    font-size: 1rem;
  }

  .servico-row-nome em {
    display: block;
    margin-left: 0;
    margin-top: 0.2rem;
    font-size: 0.85rem;
  }

  .faixa-dourada {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .faixa-dourada-texto h3 {
    font-size: 1.5rem;
  }

  .contato {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
    gap: 3rem;
    text-align: center;
  }

  .contato-esquerda::before {
    font-size: 9rem;
  }

  .contato-titulo {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    justify-content: center;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand img {
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-planetas {
    letter-spacing: 0.3rem;
  }

  .sobre-esquerda::before {
    font-size: 9rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .contato-esquerda::before {
    font-size: 9rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero-titulo-grande {
    font-size: 2.2rem;
  }

  .btn-primary,
  .btn-escuro {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
  }

  .faixa-dourada-texto h3 {
    font-size: 1.3rem;
  }
}