:root {
  --purple: #9b7fd4;
  --purple-light: #b89ee0;
  --purple-dark: #7b5cb4;
  --pink: #e8b4c4;
  --cream: #fdf8f5;
  --charcoal: #2a2229;
  --gray: #7a7082;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  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: 18px 5%;
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155, 127, 212, 0.15);
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
}

.logo-img {
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: "DM Sans", sans-serif;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  background: var(--purple);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-dark) !important;
  color: white !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(155, 127, 212, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 127, 212, 0.12);
  color: var(--purple-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(155, 127, 212, 0.25);
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--purple);
}

.hero p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(155, 127, 212, 0.35);
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(155, 127, 212, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1.5px solid rgba(42, 34, 41, 0.2);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.hero-img-wrap {
  position: relative;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 460px;
  border-radius: 40px 40px 120px 40px;
  object-fit: cover;
  height: 580px;
  display: block;
  margin-left: auto;
  filter: brightness(1.02) contrast(1.01);
  box-shadow: 0 30px 80px rgba(42, 34, 41, 0.18);
}

.hero-float-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 20px;
  padding: 16px 22px;
  box-shadow: 0 20px 50px rgba(42, 34, 41, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 3s ease-in-out infinite;
}

.float-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.float-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.float-text span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── STATS ── */
.stats {
  background: var(--charcoal);
  padding: 60px 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.stat-item {
  padding: 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services {
  padding: 100px 5%;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--purple);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 28px;
  padding: 40px 32px;
  transition: all 0.3s;
  border: 1px solid rgba(155, 127, 212, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(155, 127, 212, 0.15);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── SOBRE ── */
.sobre {
  padding: 100px 5%;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img {
  position: relative;
}

.sobre-img img {
  width: 100%;
  border-radius: 30px 100px 30px 30px;
  height: 1080px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 30px 70px rgba(42, 34, 41, 0.14);
}

.sobre-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--purple);
  border-radius: 50%;
  opacity: 0.12;
}

.sobre-content .section-tag {
  text-align: left;
}

.sobre-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.sobre-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-list {
  list-style: none;
  margin: 28px 0 36px;
}

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid rgba(155, 127, 212, 0.1);
}

.sobre-list li::before {
  content: "✦";
  color: var(--purple);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── RESULTADOS ── */
.resultados {
  padding: 100px 5%;
  background: var(--cream);
}

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

.result-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(42, 34, 41, 0.1);
  transition: transform 0.3s;
  background: white;
}

.result-card:hover {
  transform: translateY(-8px);
}

.result-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.result-card-alinhador {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(42, 34, 41, 0.1);
  transition: transform 0.3s;
  background: white;
}

.result-card-alinhador:hover {
  transform: translateY(-8px);
}

.result-card-alinhador img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.result-caption {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-caption span {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-tag {
  background: rgba(155, 127, 212, 0.1);
  color: var(--purple-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
}

/* ── CTA WHATSAPP ── */
.cta-section {
  padding: 100px 5%;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(155, 127, 212, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .section-title {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1db855;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

/* ── AGENDAMENTO + MAPS ── */
.agendamento {
  padding: 100px 5%;
  background: #eae5f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.agendamento-content .section-tag {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.agendamento-content .section-tag::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--purple);
}

.agendamento-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}

.agendamento-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.agendamento-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-insta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--charcoal);
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid rgba(42, 34, 41, 0.22);
  transition: all 0.25s;
}

.btn-insta-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.agendamento-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray);
}

.info-row svg {
  flex-shrink: 0;
  color: var(--purple);
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 34, 41, 0.14);
  height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── SOCIAL ── */
.social-section {
  padding: 80px 5%;
  background: white;
  text-align: center;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(220, 39, 67, 0.3);
}

.insta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(220, 39, 67, 0.4);
}

/* ── FOOTER ── */
footer {
  background: #1a1620;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 32px;
  font-size: 0.82rem;
}

footer a {
  color: var(--purple-light);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero,
  .sobre,
  .agendamento {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-wrap {
    height: 300px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero-img-wrap img {
    max-width: 100%;
    height: 400px;
    border-radius: 30px;
  }
  .hero-float-card {
    left: 10px;
  }
  .sobre-img img {
    height: 380px;
    border-radius: 30px;
  }
  .services-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
}
