:root {
  --gold-light: #f0d080;
  --gold-mid: #c9973a;
  --gold-deep: #8b6914;
  --gold-dark: #5a4208;
  --cream: #faf4ec;
  --cream-dark: #f2e8d8;
  --text-dark: #2a1f0a;
  --text-mid: #4a3820;
  --text-light: #7a6040;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── GOLD GRADIENT UTILITY ── */
.gold-text {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-mid) 40%,
    var(--gold-deep) 70%,
    var(--gold-mid) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2.6rem;

  overflow: hidden;

  border: 1px solid rgba(201, 151, 58, 0.22);

  background: linear-gradient(135deg, #f0d080 0%, #c9973a 45%, #8b6914 100%);

  color: #fff8ee;

  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  text-decoration: none;

  box-shadow:
    0 10px 30px rgba(139, 105, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    letter-spacing 0.35s ease;
}

/* brilho elegante */
.about-btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: skewX(-25deg);

  transition: left 0.7s ease;
}

/* hover */
.about-btn:hover {
  transform: translateY(-4px);

  letter-spacing: 0.26em;

  box-shadow:
    0 18px 40px rgba(139, 105, 20, 0.24),
    0 4px 12px rgba(201, 151, 58, 0.18);
}
.team-section {
  padding: 4rem 4rem 6rem;
  text-align: center;
}

.team-instagrams {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.team-insta-btn {
  padding: 1rem 2.4rem;
  min-width: 220px;
  text-decoration: none;
  color: var(--gold-deep);
  border: 1px solid rgba(201, 151, 58, 0.35);
  background: rgba(250, 244, 236, 0.7);
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(139, 105, 20, 0.08);
  transition: all 0.35s ease;
}

.team-insta-btn:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-mid),
    var(--gold-deep)
  );
  color: var(--cream);
  transform: translateY(-4px);
}
.about-btn:hover::before {
  left: 130%;
}

/* clique */
.about-btn:active {
  transform: scale(0.98);
}
/* ══════════════════════════════
     NAV
  ══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 244, 236, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 151, 58, 0.2);
}

.nav-logo {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  background: linear-gradient(
    135deg,
    #f0d080 0%,
    #d6a63c 35%,
    #8b6914 70%,
    #c9973a 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow: 0 4px 18px rgba(201, 151, 58, 0.12);

  position: relative;
  transition:
    letter-spacing 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.nav-logo:hover {
  letter-spacing: 0.28em;
  transform: translateY(-1px);
  text-shadow: 0 6px 24px rgba(201, 151, 58, 0.22);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-deep);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ══════════════════════════════
     HERO
  ══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

/* decorative circle */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.12);
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  animation: rotateSlow 30s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.08);
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  animation: rotateSlow 20s linear infinite reverse;
}
/* Botão Instagram */
.btn-instagram {
  padding: 0.85rem 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;

  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold-mid);

  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  background: var(--gold-mid);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 105, 20, 0.25);
}

/* Ícone do Instagram */
.instagram-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
/* Ícone do Instagram — versão refinada */
.instagram-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;

  /* Usa a mesma cor dourada do portfólio */
  color: var(--gold-deep);

  /* Deixa o traço mais nítido e elegante */
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* Fundo sutil para destacar o ícone */
  padding: 3px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    rgba(240, 208, 128, 0.08),
    rgba(201, 151, 58, 0.14)
  );

  /* Borda extremamente suave */
  box-shadow:
    inset 0 0 0 1px rgba(201, 151, 58, 0.1),
    0 1px 4px rgba(139, 105, 20, 0.06);

  /* Animação */
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover */
.btn-instagram:hover .instagram-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.12) rotate(4deg);
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
  .instagram-icon {
    width: 18px;
    height: 18px;
    padding: 2px;
    border-radius: 5px;
  }
}
@keyframes rotateSlow {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid));
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.hero-title span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  display: block;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta {
  display: flex;
  gap: 1.2rem; /* controla o espaço horizontal entre os botões */
  justify-content: center; /* centraliza os botões */
  flex-wrap: wrap; /* permite quebra em telas menores */
}

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-mid),
    var(--gold-deep)
  );
  color: var(--cream);
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(139, 105, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 105, 20, 0.45);
}

.btn-ghost {
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--gold-deep);
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold-mid);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: var(--gold-mid);
  color: var(--cream);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-visual {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-visual-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.25);
  animation: pulse 3s ease-in-out infinite;
}

.hero-visual-ring:nth-child(2) {
  inset: 30px;
  animation-delay: 0.5s;
  border-color: rgba(201, 151, 58, 0.15);
}

.hero-visual-ring:nth-child(3) {
  inset: 60px;
  animation-delay: 1s;
  border-color: rgba(201, 151, 58, 0.1);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.7;
  }
}

.hero-icon-center {
  position: absolute;
  inset: 90px;
  background: linear-gradient(
    135deg,
    rgba(240, 208, 128, 0.15),
    rgba(201, 151, 58, 0.08)
  );
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  font-weight: 700;
  background-clip: text;
}

.hero-icon-center svg {
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

/* ══════════════════════════════
     DIVIDER
  ══════════════════════════════ */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 4rem;
  margin: 3rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.divider-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold-mid);
  opacity: 0.6;
}

/* ══════════════════════════════
     STATS BAR
  ══════════════════════════════ */
.stats-bar {
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: linear-gradient(
    135deg,
    rgba(201, 151, 58, 0.06),
    rgba(139, 105, 20, 0.04)
  );
  border-top: 1px solid rgba(201, 151, 58, 0.15);
  border-bottom: 1px solid rgba(201, 151, 58, 0.15);
}

.stat-item {
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-mid),
    var(--gold-deep)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ══════════════════════════════
     SECTION HEADER
  ══════════════════════════════ */
.section-header {
  text-align: center;
  padding: 5rem 4rem 3rem;
}

.section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════
     SERVICES
  ══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  padding: 0 4rem 5rem;
  background: rgba(201, 151, 58, 0.15);
}

.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  display: flex;
  align-items: center;
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 151, 58, 0.07);
  line-height: 1;
  pointer-events: none;
}

.service-name {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ══════════════════════════════
     PROJECTS
  ══════════════════════════════ */
.projects {
  padding: 0 4rem 6rem;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201, 151, 58, 0.12);
}

.project-item {
  background: var(--cream);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  transition:
    background 0.3s,
    padding-left 0.3s;
  cursor: default;
}

.project-item:hover {
  background: var(--cream-dark);
  padding-left: 3rem;
}

.project-num {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

.project-info h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.project-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201, 151, 58, 0.3);
  color: var(--gold-deep);
  background: rgba(201, 151, 58, 0.05);
}

/* ══════════════════════════════
     PROCESS
  ══════════════════════════════ */
.process {
  padding: 0 4rem 6rem;
  background: linear-gradient(
    135deg,
    rgba(240, 208, 128, 0.07),
    rgba(201, 151, 58, 0.04)
  );
  border-top: 1px solid rgba(201, 151, 58, 0.12);
  border-bottom: 1px solid rgba(201, 151, 58, 0.12);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.step {
  position: relative;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.step::after {
  content: "→";
  position: absolute;
  top: 2.5rem;
  right: -1rem;
  color: rgba(201, 151, 58, 0.3);
  font-size: 1.2rem;
}

.step:last-child::after {
  display: none;
}

.step-num {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h4 {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════
     ABOUT
  ══════════════════════════════ */
.about {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-content .section-header {
  padding: 0 0 2rem;
  text-align: left;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.about-visual {
  position: relative;
  height: 400px;
}

.about-box {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(240, 208, 128, 0.12),
    rgba(201, 151, 58, 0.06)
  );
  border: 1px solid rgba(201, 151, 58, 0.2);
}

.about-box:nth-child(1) {
  inset: 0 2rem 2rem 0;
}
.about-box:nth-child(2) {
  inset: 2rem 0 0 2rem;
  background: linear-gradient(
    135deg,
    rgba(201, 151, 58, 0.08),
    rgba(139, 105, 20, 0.04)
  );
}

.about-box-inner {
  position: absolute;
  inset: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.about-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* ══════════════════════════════
     TESTIMONIAL
  ══════════════════════════════ */
.testimonials {
  padding: 5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-top: 1px solid rgba(201, 151, 58, 0.12);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 151, 58, 0.15);
  background: var(--cream);
  text-align: left;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ══════════════════════════════
     CTA SECTION
  ══════════════════════════════ */
.cta-section {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 151, 58, 0.06),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.cta-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}
/* ─────────────────────────────
   ANIMAÇÃO ELEGANTE NOS LINKS DO MENU
   ───────────────────────────── */
.nav-links a {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  transition:
    color 0.35s ease,
    transform 0.35s ease,
    letter-spacing 0.35s ease;
}

/* Linha dourada animada */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    var(--gold-mid),
    var(--gold-light),
    transparent
  );
  transform: translateX(-50%);
  transition:
    width 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

/* Brilho sutil acima do link */
.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 0;
  height: 1px;
  background: rgba(201, 151, 58, 0.35);
  transform: translateX(-50%);
  transition:
    width 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}

/* Hover */
.nav-links a:hover {
  color: var(--gold-deep);
  transform: translateY(-2px);
  letter-spacing: 0.24em;
  text-shadow: 0 0 8px rgba(201, 151, 58, 0.08);
}

.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-links a:hover::before {
  width: 65%;
  opacity: 1;
}

/* Link ativo ao clicar */
.nav-links a:active {
  transform: translateY(0);
}

/* Foco para acessibilidade */
.nav-links a:focus-visible {
  outline: none;
  color: var(--gold-deep);
}
/* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
footer {
  padding: 1rem 2rem; /* menos espaço interno */
  border-top: 1px solid rgba(201, 151, 58, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem; /* menos espaço entre os itens */
}

.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-mid),
    var(--gold-deep)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-mid);
}
/* ABOUT — VERSÃO PREMIUM */
.about {
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(201, 151, 58, 0.08),
    transparent 68%
  );
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content .section-header {
  padding: 0 0 2rem;
  text-align: left;
}

.about-highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1.5;
  max-width: 560px;
  margin-top: 1rem;
}

.about-text-box {
  padding: 2rem 2.2rem;
  border-left: 2px solid rgba(201, 151, 58, 0.5);
  background: linear-gradient(
    135deg,
    rgba(240, 208, 128, 0.08),
    rgba(255, 255, 255, 0.28)
  );
  box-shadow: 0 18px 45px rgba(139, 105, 20, 0.06);
}

.about-body {
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
}

.about-body:last-child {
  margin-bottom: 0;
}

.about-points {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 1.4rem;
}

.about-points span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(201, 151, 58, 0.28);
  background: rgba(201, 151, 58, 0.06);
}

.about-btn {
  display: inline-block;
  margin-top: 0.4rem;
}

.about-letter-box {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-letter-box p {
  font-family: "Cinzel", serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #f0d080, #c9973a, #8b6914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ══════════════════════════════
   PROCESS — BOX PREMIUM
══════════════════════════════ */
.process {
  padding: 0 4rem 6rem;

  background: linear-gradient(
    135deg,
    rgba(240, 208, 128, 0.07),
    rgba(201, 151, 58, 0.04)
  );

  border-top: 1px solid rgba(201, 151, 58, 0.12);
  border-bottom: 1px solid rgba(201, 151, 58, 0.12);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

  margin-top: 2rem;
}

.step {
  position: relative;

  padding: 3rem 2rem;

  text-align: center;

  background: rgba(250, 244, 236, 0.78);

  border: 1px solid rgba(201, 151, 58, 0.24);

  border-radius: 22px;

  box-shadow:
    0 18px 45px rgba(139, 105, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* moldura interna */
.step::before {
  content: "";

  position: absolute;

  inset: 1rem;

  border: 1px solid rgba(201, 151, 58, 0.12);

  border-radius: 14px;

  pointer-events: none;
}

/* hover do card */
.step:hover {
  transform: translateY(-8px);

  border-color: rgba(201, 151, 58, 0.45);

  box-shadow:
    0 28px 70px rgba(139, 105, 20, 0.14),
    0 6px 20px rgba(201, 151, 58, 0.12);
}

/* seta */
.step::after {
  content: "→";

  position: absolute;

  top: 50%;
  right: -1rem;

  transform: translateY(-50%);

  color: rgba(201, 151, 58, 0.45);

  font-size: 1.4rem;
}

.step:last-child::after {
  display: none;
}

/* NÚMERO */
.step-num {
  width: 72px;
  height: 72px;

  margin: 0 auto 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 700;

  /* NÚMERO MAIS VISÍVEL */
  color: #b8861b;

  text-shadow:
    0 1px 2px #b8861b,
    0 2px 8px #faf4eceb;

  opacity: 100;

  /* FUNDO ELEGANTE */
  background: rgba(250, 244, 236, 0.922);

  border: 1px solid rgba(201, 151, 58, 0.38);

  border-radius: 50%;

  /* SOMBRA */
  box-shadow:
    0 8px 25px rgba(139, 105, 20, 0.08),
    inset 0 0 18px rgba(201, 151, 58, 0.1);

  position: relative;
  z-index: 2;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* hover da bola */
.step:hover .step-num {
  transform: scale(1.06);

  color: #8b6914;

  border-color: rgba(201, 151, 58, 0.55);

  box-shadow:
    0 12px 32px rgba(139, 105, 20, 0.14),
    inset 0 0 20px rgba(201, 151, 58, 0.14);
}

.step h4 {
  font-family: "Cinzel", serif;

  font-size: 0.9rem;
  font-weight: 600;

  color: var(--text-dark);

  letter-spacing: 0.12em;
  text-transform: uppercase;

  margin-bottom: 0.8rem;
}

.step p {
  font-size: 0.84rem;

  color: var(--text-light);

  line-height: 1.8;

  max-width: 260px;

  margin: 0 auto;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .process {
    padding: 2rem 2rem 4rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .step::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}
/* ─────────────────────────────
   ABOUT VISUAL — LUXURY STYLE
───────────────────────────── */

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* CARD */
.about-signature-card {
  position: relative;

  width: 100%;
  max-width: 520px;
  min-height: 360px;

  padding: 4rem 3.2rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45),
    rgba(240, 208, 128, 0.1)
  );

  border: 1px solid rgba(201, 151, 58, 0.22);

  box-shadow:
    0 25px 70px rgba(139, 105, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  overflow: hidden;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* brilho interno */
.about-signature-card::before {
  content: "";

  position: absolute;
  inset: 1.4rem;

  border: 1px solid rgba(201, 151, 58, 0.12);

  pointer-events: none;
}

/* glow dourado */
.about-signature-card::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  right: -120px;
  top: -120px;

  background: radial-gradient(
    circle,
    rgba(201, 151, 58, 0.22),
    transparent 72%
  );
}

/* hover elegante */
.about-signature-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 35px 90px rgba(139, 105, 20, 0.16),
    0 10px 35px rgba(201, 151, 58, 0.1);
}

/* LETRA Y */
.about-signature-mark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -58%);

  font-family: "Cinzel", serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;

  background: linear-gradient(135deg, #f0d080, #c9973a, #8b6914);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  opacity: 0.95;

  text-shadow: 0 0 18px rgba(201, 151, 58, 0.1);
}

/* QUOTE */
.about-quote {
  position: relative;
  z-index: 2;

  font-family: "Cormorant Garamond", serif;
  font-style: italic;

  font-size: 2rem;
  line-height: 1.45;

  color: var(--text-dark);

  max-width: 360px;
}

/* LINHA DECORATIVA */
.about-quote::before {
  content: "";

  display: block;

  width: 70px;
  height: 1px;

  margin-bottom: 1.6rem;

  background: linear-gradient(
    90deg,
    var(--gold-light),
    var(--gold-mid),
    transparent
  );
}

/* AUTHOR */
.about-quote cite {
  display: block;

  margin-top: 1.8rem;

  font-family: "Lato", sans-serif;
  font-style: normal;

  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;

  color: var(--gold-mid);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about-signature-card {
    min-height: 300px;
    padding: 3rem 2.2rem;
  }

  .about-signature-mark {
    font-size: 6rem;
  }

  .about-quote {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .about-signature-card {
    min-height: 260px;
    padding: 2.4rem 1.8rem;
  }

  .about-signature-mark {
    font-size: 4.5rem;
  }

  .about-quote {
    font-size: 1.4rem;
    max-width: 100%;
  }

  .about-quote cite {
    letter-spacing: 0.22em;
    font-size: 0.62rem;
  }
}
/* ══════════════════════════════
     SCROLL REVEAL
  ══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }
  nav .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
  }
  .hero-right {
    display: none;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-desc {
    max-width: 100%;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 2rem 3rem;
    background: none;
    gap: 1px;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }

  .projects {
    padding: 0 2rem 4rem;
  }
  .project-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1.5rem 1.2rem;
  }
  .project-tags {
    display: none;
  }
  .project-num {
    font-size: 1.4rem;
  }

  .process {
    padding: 2rem 2rem 4rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .step {
    padding: 1.5rem 1rem;
  }
  .step::after {
    display: none;
  }

  /* ── ABOUT: flatten the overlapping boxes ── */
  .about {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2rem;
  }
  .about-content .section-header {
    padding-bottom: 1rem;
  }
  .about-visual {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .about-box {
    position: static;
    border-radius: 0;
    padding: 2rem;
  }
  .about-box-inner {
    position: static;
    padding: 0;
  }
  .about-quote {
    font-size: 1.2rem;
  }

  .testimonials {
    padding: 3rem 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-section {
    padding: 4rem 2rem;
  }
  .cta-title {
    font-size: 1.8rem;
  }

  .divider {
    padding: 0 2rem;
  }
  .section-header {
    padding: 3rem 2rem 2rem;
  }

  footer {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}
