@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-primary: #F5EDE2;
  --bg-alt: #E8DED0;
  --bg-dark: #2A1D11;
  --text-dark: #1A120A;
  --text-body: #5C4A38;
  --gold-mid: #CBA76E;
  --gold-gradient: linear-gradient(135deg, #89652C 0%, #CBA76E 30%, #E4C088 55%, #CBA76E 75%, #946E31 100%);
  --border-gold: #D4B896;
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

.label-caps {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gold-mid);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(245, 237, 226, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gold);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { text-decoration: none; }

.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-dark);
  display: block;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: block;
  text-align: center;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

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

.btn-agendar-nav {
  border: 1px solid var(--gold-mid) !important;
  padding: 10px 24px !important;
  border-radius: 0;
  color: var(--gold-mid) !important;
  transition: all 0.3s ease !important;
  display: inline-block;
}

.btn-agendar-nav:hover {
  background: var(--gold-gradient) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(6.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6.5px); }

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--bg-primary);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  padding: 16px 32px;
  border: 1px solid var(--border-gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
}

.hero-card {
  border: 1px solid var(--border-gold);
  padding: 40px 32px;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid rgba(203, 167, 110, 0.3);
  pointer-events: none;
}

.hero-stat {
  text-align: center;
  padding: 24px 0;
}

.hero-stat + .hero-stat { border-top: 1px solid var(--border-gold); }

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-body);
  margin-top: 4px;
}

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border-gold);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ====== SOBRE ====== */
.sobre {
  padding: 120px 0;
  background: var(--bg-primary);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sobre-card {
  border: 1px solid var(--border-gold);
  padding: 48px 36px;
  position: relative;
}

.sobre-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sobre-assinatura { margin-top: 24px; }

.sobre-assinatura strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.sobre-assinatura span {
  font-size: 0.8rem;
  color: var(--text-body);
}

.badge-anos {
  position: absolute;
  top: -24px; right: 24px;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 1px solid var(--gold-mid);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.badge-anos strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.badge-anos span { font-size: 0.55rem; color: var(--text-body); letter-spacing: 0.1em; text-transform: uppercase; }

.sobre-right h2 {
  font-size: 2.2rem;
  margin: 20px 0 24px;
}

.sobre-right p { margin-bottom: 16px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-mid);
  font-size: 1.1rem;
}

.feature-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

/* ====== TRATAMENTOS ====== */
.tratamentos {
  padding: 120px 0;
  background: var(--bg-alt);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin: 16px 0 12px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-body);
}

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

.trat-card {
  background: var(--white);
  border: 1px solid var(--border-gold);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 29, 17, 0.08);
}

.trat-number {
  position: absolute;
  top: -8px; right: 12px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(203, 167, 110, 0.1);
  line-height: 1;
  pointer-events: none;
}

.trat-badge-destaque {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--gold-mid);
  color: var(--gold-mid);
  margin-bottom: 16px;
  font-weight: 400;
}

.trat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.trat-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.trat-link {
  font-size: 0.8rem;
  color: var(--gold-mid);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: color 0.3s;
}

.trat-link:hover { color: #89652C; }

/* ====== DEPOIMENTOS ====== */
.depoimentos {
  padding: 120px 0;
  background: var(--bg-dark);
}

.depoimentos .section-header h2 { color: var(--white); }
.depoimentos .section-header p { color: rgba(255,255,255,0.6); }

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

.dep-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(203,167,110,0.3);
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.dep-card:hover { border-color: var(--gold-mid); }

.dep-stars { margin-bottom: 16px; color: var(--gold-mid); font-size: 0.9rem; letter-spacing: 2px; }

.dep-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 237, 226, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.dep-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-mid);
  letter-spacing: 0.05em;
}

.dep-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ====== CONTATO ====== */
.contato {
  padding: 120px 0;
  background: var(--bg-primary);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-left h2 {
  font-size: 2.2rem;
  margin: 16px 0 16px;
}

.contato-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contato-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-mid);
  font-size: 1rem;
}

.contato-item-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contato-form {
  background: var(--white);
  border: 1px solid var(--border-gold);
  padding: 40px 36px;
}

.contato-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-gold);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--gold-mid); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CBA76E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-whatsapp-form {
  width: 100%;
  padding: 16px;
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.btn-whatsapp-form:hover { opacity: 0.9; }

/* ====== FOOTER ====== */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(203,167,110,0.2);
}

.footer .logo-main { color: var(--white); }
.footer .logo-sub { color: var(--gold-mid); }

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-cnpj {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold-mid); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.footer-aviso {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  max-width: 500px;
  text-align: right;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ====== ANIMATIONS ====== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== MOBILE NAV OVERLAY ====== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 237, 226, 0.98);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-mid); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-card { max-width: 360px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(2)::after { display: none; }

  .sobre-grid { grid-template-columns: 1fr; }
  .tratamentos-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-aviso { text-align: center; }

  .section-header h2 { font-size: 2rem; }
  .sobre-right h2 { font-size: 1.8rem; }
  .contato-left h2 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
}
