:root {
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --gold: #c9a96e;
  --gold-light: #e8d4a8;
  --dark: #1a1612;
  --charcoal: #2d2820;
  --text-mid: #6b5f52;
  --text-light: #9c8e82;
  --rose: #d4a0a0;
  --rose-light: #edd5d5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: -32px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition:
    background 0.4s ease,
    padding 0.4s;
}

header.scrolled {
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.logo img {
  height: auto;
  width: 150px;
}

.logo span {
  color: var(--gold);
  font-style: italic;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav a {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
}

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

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

nav button {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  text-decoration: none;
  font-weight: 500;
}

nav button:hover {
  background: var(--gold);
  color: #fff;
}

nav button a {
  color: inherit;
  text-decoration: none;
}

/* ── HERO ── */
#inicio {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-teg {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-teg::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-title strong {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-left > p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-left > button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 40px;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  width: fit-content;
}

.hero-left > button:hover {
  background: var(--gold);
}

.hero-left > button svg {
  transition: transform 0.3s;
}

.hero-left > button:hover svg {
  transform: translateX(6px);
}

.hero-left > button a {
  color: inherit;
  text-decoration: none;
}

.stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}

.stat h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--dark);
}

.stat p {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.18) 0%,
    transparent 60%
  );
  z-index: 1;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}

.hero-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
  border-radius: 0 0 0 53px;
}
.hero-badge {
  position: absolute;
  bottom: 5px;
  left: 0px;
  width: 105px;
  height: 103px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: spinBadge 18s linear infinite;
  z-index: 3;
}

.hero-badge-inner {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-style: italic;
}

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

.floating-label {
  position: absolute;
  top: 80px;
  right: 36px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  z-index: 3;
}

/* ── SECTION BASE ── */
section {
  padding: 120px 60px;
}

.sec-tag {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── SERVIÇOS ── */
#servicos {
  background: var(--cream);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.servico-card {
  background: var(--warm-white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
}

.servico-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.servico-card:hover::after {
  width: 100%;
}

.servico-card:hover {
  background: var(--dark);
}

.servico-card:hover .srv-num,
.servico-card:hover .srv-name,
.servico-card:hover .srv-desc {
  color: var(--cream);
}

.servico-card:hover .srv-icon {
  border-color: rgba(201, 169, 110, 0.4);
}

.srv-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.srv-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.4s;
}

.srv-icon svg {
  color: var(--gold);
}

.srv-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  transition: color 0.4s;
}

.srv-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  transition: color 0.4s;
}
.srv-price {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 16px;
  letter-spacing: 0.1em;
}
.servico-card:hover .srv-price {
  color: var(--gold-light);
}
/* ── portfolio ── */
#portfolio {
  background: var(--dark);
  color: var(--cream);
}
#sec-tag {
  color: var(--gold-light);
}
.sec-title {
  color: var(--dark);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 280px);
  gap: 8px;
  margin-top: 60px;
}
.port-item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  cursor: none;
}
.port-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 2;
}
.port-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 3;
}
.port-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}
.port-item:nth-child(4) {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
}
.port-item:nth-child(5) {
  grid-column: 4 / 6;
  grid-row: 2 / 3;
}
.port-item:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
}
.port-item:nth-child(7) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}
.port-item:nth-child(8) {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}
.port-item:nth-child(9) {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.9);
  transition:
    transform 0.7s ease,
    filter 0.4s;
  display: block;
}
.port-item:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1);
}

/* ── SOBRE ── */
#sobre {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img {
  position: relative;
  height: 632px;
}
.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.sobre-img-accent {
  position: absolute;
  bottom: -86px;
  right: -55px;
  width: 182px;
  height: 182px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.acc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.acc-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  font-weight: 300;
}
.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sobre-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
}
.sobre-list {
  list-style: none;
  margin: 24px 0;
}
.sobre-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
}
.sobre-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
}
.sobre-sign {
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--dark);
}
.sobre-sign small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
  margin-top: 8px;
  font-weight: 300;
}

/* ── CLIENTES ── */
#clientes {
  background: var(--cream);
  margin-bottom: 80px;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cliente-card {
  background: var(--warm-white);
  padding: 40px 32px;
  border-radius: 8px;
  position: relative;
}
.cliente-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.cliente-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.cliente-texto {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.cliente-nome {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}
.cliente-profissao {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── CONTATO ── */
#contato {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    rgba(26, 22, 18, 0.95) 100%
  );
  color: var(--cream);
  text-align: center;
}
.contato-info-item svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  stroke: var(--gold);
}
.contato-info-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ── FOOTER ── */
#footer {
  width: 100%;
  background: var(--charcoal);
  color: var(--cream);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  padding: 80px 60px 40px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-brand {
  max-width: 260px;
}

.footer-col-title {
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #cfc6b8;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37; /* dourado */
}

.footer-contact-item {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  transition: 0.3s;
}

.social-btn:hover {
  background: #d4af37;
  color: #1c1a17;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ── RESPONSIVE ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 101;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--gold);
  transition: 0.3s;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  nav a {
    font-size: 1.2rem;
  }

  /* Hamburger Animation */
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  body {
    cursor: default;
  }
  #cursor,
  #cursor-ring {
    display: none;
  }
  section {
    padding: 80px 24px;
  }
  header {
    padding: 16px 24px;
  }
  header.scrolled {
    padding: 12px 24px;
  }
  .logo img {
    width: 120px;
  }
  #inicio {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .hero-left {
    padding: 140px 0 40px;
    text-align: center;
    align-items: center;
  }
  .hero-left > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-teg {
    justify-content: center;
  }
  .hero-right {
    height: 400px;
    margin-top: 20px;
  }
  .hero-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat {
    text-align: center;
  }
  .hero-badge {
    width: 90px;
    height: 90px;
    bottom: 20px;
    left: 20px;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .port-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
  }
  #sobre {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-img {
    height: 400px;
  }
  .sobre-img-accent {
    width: 130px;
    height: 130px;
    bottom: -20px;
    right: -20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand {
    margin: 0 auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact-item {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .stats {
    gap: 16px;
  }
  .stat h2 {
    font-size: 1.8rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
