:root {
  --bg: #ede4ff;
  --bg-2: #f6edff;
  --bg-card: #ffffff;
  --bg-card-hover: #faf4ff;

  --gold: #c20084;
  --gold-light: #ff4fc3;
  --gold-dim: #7b1bb8;

  --mauve: #4b35ff;
  --mauve-light: #7868ff;
  --mauve-deep: #2a1885;

  --text: #2a1466;
  --text-muted: #5a4a7f;
  --text-dim: #8678a8;

  --border: rgba(194, 0, 132, 0.18);
  --border-card: rgba(75, 53, 255, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --section-pad: 100px;
  --container: 1200px;
  --radius: 16px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--mauve-deep);
}

/* HEADER */

#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(246, 237, 255, .78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(75, 53, 255, .08);
  transition: .3s ease;
}

#header.scrolled {
  background: rgba(246, 237, 255, .96);
  box-shadow: 0 4px 24px rgba(75, 53, 255, .06);
}

.header-inner {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(75, 53, 255, .15));
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop a {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: .25s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--mauve-deep);
  background: rgba(75, 53, 255, .06);
}

.nav-desktop .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--mauve));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(194, 0, 132, .22);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--mauve-deep);
  border-radius: 2px;
  transition: .3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: rgba(246, 237, 255, .98);
  border-top: 1px solid var(--border-card);
  transition: max-height .35s ease;
}

.nav-mobile.open {
  max-height: 400px;
}

.nav-mobile a {
  display: block;
  padding: 14px 28px;
  color: var(--text-muted);
}

/* HERO */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 170px 0 80px;
  overflow: hidden;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
}

.orb-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 79, 195, .55), transparent 70%);
}

.orb-2 {
  width: 440px;
  height: 440px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(120, 104, 255, .5), transparent 70%);
}

.orb-3 {
  width: 650px;
  height: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(194, 0, 132, .22), transparent 70%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: .14;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--mauve-deep);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--mauve));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 500px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 1.075rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: .3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--mauve));
  color: #fff;
  box-shadow: 0 6px 24px rgba(194, 0, 132, .28);
}

.btn-secondary {
  background: rgba(255,255,255,.6);
  color: var(--mauve-deep);
  border: 1px solid rgba(75, 53, 255, .25);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-image-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(75, 53, 255, .18);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* SOBRE */

.sobre {
  background: var(--bg-2);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text {
  color: var(--text-muted);
  font-size: 1.075rem;
  line-height: 1.8;
}

.sobre-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(75, 53, 255, .1);
}

.sobre-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* SERVIÇOS */
.servicos {
  background: var(--bg);
}

.servicos-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.servico-card-v2 {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(75, 53, 255, 0.14);
  border-radius: 16px;
  padding: 30px 34px;
  box-shadow: 0 8px 24px rgba(75, 53, 255, 0.08);
  transition: all .3s ease;
}

.servico-card-v2:hover {
  transform: translateY(-4px);
  background: #faf4ff;
  border-color: rgba(194, 0, 132, 0.25);
  box-shadow: 0 18px 40px rgba(194, 0, 132, 0.12);
}

.servico-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: #2a1466;
}

.servico-info p {
  font-size: 1rem;
  color: #5a4a7f;
  line-height: 1.6;
}

/* CONTATO */

.contato {
  background: var(--bg-2);
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.contato-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 34px 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(75, 53, 255, .08);
  transition: .3s ease;
}

.contato-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(194, 0, 132, .25);
  box-shadow: 0 18px 40px rgba(194, 0, 132, .12);
}

.contato-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
}

.whatsapp-icon {
  background: rgba(37,211,102,.12);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.2);
}

.email-icon {
  background: rgba(194,0,132,.12);
  color: var(--gold);
  border: 1px solid rgba(194,0,132,.2);
}

.insta-icon {
  background: rgba(75,53,255,.12);
  color: var(--mauve);
  border: 1px solid rgba(75,53,255,.2);
}

.contato-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mauve-deep);
  margin-bottom: 4px;
}

.contato-info p {
  color: var(--text-muted);
  font-size: .9rem;
  word-break: break-word;
}

/* FOOTER */

.footer {
  background: linear-gradient(180deg, var(--bg-2), #e3d4f8);
  border-top: 1px solid var(--border-card);
}

.footer-bottom {
  padding: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: .85rem;
}

/* RESPONSIVO */

/* RESPONSIVO */

@media (max-width: 1024px) {

  :root {
    --section-pad: 72px;
  }

  .hero-inner,
  .sobre-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .sobre-img {
    height: 380px;
  }

  .contato-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

}

@media (max-width: 640px) {

  :root {
    --section-pad: 56px;
  }

  .header-inner {
    height: 88px;
  }

  .logo-img {
    height: 60px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .servico-card-v2 {
    padding: 24px 22px;
  }

  .contato-card {
    min-height: 170px;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  
}