:root {
  --rose: #d6336c;
  --rose-dark: #b02558;
  --rose-deep: #8c1a42;
  --blush: #ffeff3;
  --blush-mid: #fcd5e2;
  --white: #fff;
  --dark: #1a0a10;
  --text: #3d1a27;
  --muted: #9a6478;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  cursor: default;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--blush);
}
::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 3px;
}

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 51, 108, 0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(214, 51, 108, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
}
.btn-nav:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 60px;
  background: linear-gradient(
    135deg,
    var(--blush) 0%,
    #fff4f7 55%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush-mid) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  border: 1px solid var(--rose);
  padding: 0.35rem 0.9rem;
  border-radius: 1px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 51, 108, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(61, 26, 39, 0.25);
  border-radius: 2px;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1.1s 0.2s ease both;
}

.hero-img-wrap {
  position: relative;
  width: 88%;
  max-width: 480px;
}
.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--rose);
  border-radius: 2px;
  opacity: 0.35;
}
.hero-img-wrap::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--blush-mid);
  border-radius: 50%;
  z-index: -1;
}

.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  filter: saturate(1.1) contrast(1.03);
}

.hero-stat-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border: 1px solid var(--blush-mid);
  box-shadow: 0 12px 40px rgba(214, 51, 108, 0.12);
  padding: 1rem 1.4rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.stat-txt {
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.3;
  max-width: 70px;
}

/* ─── SECTION HEADER ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}
.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0.8rem auto 0;
  line-height: 1.7;
}

/* ─── SERVICES ───────────────────────────────── */
#servicos {
  padding: 100px 5vw;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(214, 51, 108, 0.12);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.service-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-price {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--rose);
  font-weight: 500;
  text-transform: uppercase;
  border-top: 1px solid var(--blush-mid);
  padding-top: 1rem;
  margin-top: auto;
}

/* ─── ABOUT ──────────────────────────────────── */
#sobre {
  padding: 100px 5vw;
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 80%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: saturate(1.05);
}
.about-img-accent {
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  position: absolute;
  bottom: -30px;
  right: 0;
  z-index: 2;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  filter: saturate(1.05);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.4rem;
}
.about-title em {
  font-style: italic;
  color: var(--rose);
}
.about-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 6px;
}
.feature-title {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ───────────────────────────── */
#depoimentos {
  padding: 100px 5vw;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: var(--blush);
  border-radius: 2px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(214, 51, 108, 0.1);
}

.testi-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--rose);
  opacity: 0.25;
  font-family: var(--font-display);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testi-stars {
  color: var(--rose);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}
.testi-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-mid), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark);
}
.testi-since {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── CTA BANNER ─────────────────────────────── */
#cta {
  padding: 90px 5vw;
  background: var(--rose);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
#cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-title em {
  font-style: italic;
}
.cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}
.btn-white {
  background: var(--white);
  color: var(--rose);
  border: none;
  border-radius: 2px;
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  cursor: pointer;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 5vw 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4vw;
  margin-bottom: 3.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 1rem;
  display: block;
}
.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--rose);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero-image {
    order: -1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #sobre {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 360px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .nav-links {
    display: none;
  }
}
