*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brown-deep: #6a3c25;
  --brown-mid: #8c4026;
  --brown-light: #a0522d;
  --gold: #c9a84c;
  --gold-light: #e2c87a;
  --cream: #fdf5ee;
  --blush: #fce8dc;
  --text-dark: #2a1a10;
  --text-mid: #5a3a28;
  --text-light: #f5ede6;
  --text-offlight: #f5ede6cc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: transparent;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(106, 60, 37, 0.7);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-cta {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--brown-deep);
}

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  background-image:
    linear-gradient(
      160deg,
      var(--brown-mid) 0%,
      var(--brown-deep) 60%,
      #521e0e 100%
    ),
    url("./images/dra.jpg");
  background-size: 120%;

  background-repeat: no-repeat;
  background-position: center 15%;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero-rule span {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  max-width: 700px;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--brown-deep);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.btn-outline:hover {
  border-color: #fff;
  transform: translateY(-1px);
}
.hero-location {
  margin-top: 3rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-location::before {
  content: "⊙  ";
}

/* ── SOBRE ── */
.sobre {
  background: var(--blush);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sobre-text .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 1.2rem;
}
.sobre-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown-deep);
  margin-bottom: 1.6rem;
}
.sobre-text p {
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.sobre-tags {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--gold);
  color: var(--brown-mid);
}
.sobre-img {
  position: relative;
}
.sobre-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--brown-mid), var(--brown-deep));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  position: relative;
}
.sobre-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.sobre-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sobre-img-placeholder svg {
  opacity: 0.3;
}
.gold-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── SERVIÇOS ── */
.servicos-section {
  background: var(--cream);
  padding: 7rem 4rem;
  max-width: 80dvw;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
}
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.servico-card {
  border: 1px solid rgba(140, 64, 38, 0.15);
  padding: 2.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(106, 60, 37, 0.1);
}
.servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.servico-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.servico-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 1rem;
}
.servico-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.servico-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.servico-list li {
  font-size: 1rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.servico-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── QUOTE ── */
.quote-section {
  background: linear-gradient(
    135deg,
    var(--brown-deep) 0%,
    var(--brown-mid) 100%
  );
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "\201C";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}
.quote-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}
.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.quote-author {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-author-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.6rem;
}
.quote-author-rule span {
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── CTA ── */
.cta-section {
  background: var(--blush);
  padding: 6rem 4rem;
  text-align: center;
}
.cta-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--brown-deep);
  padding: 3.5rem;
  position: relative;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  pointer-events: none;
}
.cta-box .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--brown-deep);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-whatsapp:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.cta-location {
  margin-top: 1.6rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ── FOOTER ── */
footer {
  background: var(--brown-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
}
.footer-sub {
  font-size: 1rem;
  color: var(--text-offlight);
  letter-spacing: 0.05em;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-offlight);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;

  transition: background 0.3s ease;
}
.facebook:hover {
  background: #1877f2;
}
.twitter:hover {
  background: #1da1f2;
}
.instagram:hover {
  background: #e1306c;
}
.linkedin:hover {
  background: #0077b5;
}
.tiktok:hover {
  background: #010101;
}
.social-icons a:hover {
  filter: brightness(0.85);
}
.footer-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.footer-links a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-light);
}
.footer-copy {
  font-size: 1rem;
  color: var(--text-offlight);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .hero {
    padding: 6rem 1.5rem 4rem;
    background-size: cover;
  }
  .nav-links {
    display: none;
  }
  .sobre {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2.5rem;
  }
  .sobre-img {
    max-width: 260px;
    margin: 0 auto;
  }
  .servicos-section {
    padding: 4rem 1.5rem;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .quote-section {
    padding: 5rem 1.5rem;
  }
  .cta-section {
    padding: 4rem 1.5rem;
  }
  .cta-box {
    padding: 2.5rem 1.5rem;
  }
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
