/* ============================================================
   SALA ÍSIS — Premium Aesthetic Clinic Landing Page
   Style Guide: Sophisticated, Feminine, Natural Luxury
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold-rose:    #D4A574;
  --gold:         #D4AF37;
  --gold-light:   #E8C97A;
  --sand:         #F3EDE7;
  --beige:        #EFE7DF;
  --beige-mid:    #E8DDD5;
  --white:        #FFFFFF;
  --charcoal:     #2C2C2C;
  --text-mid:     #5A5047;
  --text-light:   #8C7B6E;
  --border:       rgba(212, 165, 116, 0.25);
  --border-mid:   rgba(212, 165, 116, 0.45);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    36px;

  --shadow-sm:    0 2px 12px rgba(44, 44, 44, 0.06);
  --shadow-md:    0 8px 32px rgba(44, 44, 44, 0.10);
  --shadow-lg:    0 20px 60px rgba(44, 44, 44, 0.14);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:    1200px;
  --section-pad:  100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

address { font-style: normal; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
h5 { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-sans); }

em { font-style: italic; color: var(--gold-rose); }

p { color: var(--text-mid); }

/* ---------- UTILITY CLASSES ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-gold {
  background: linear-gradient(135deg, var(--sand) 0%, var(--beige) 50%, var(--sand) 100%);
}

.section-light {
  background: var(--sand);
}

.section-marble {
  background: linear-gradient(160deg, var(--beige) 0%, var(--white) 40%, var(--beige) 100%);
  position: relative;
}

.section-marble::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-rose);
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold-rose);
  opacity: 0.6;
}
.section-label::before { right: 100%; transform: translateX(20px); }
.section-label::after  { left:  100%; transform: translateX(-20px); }

.section-title {
  text-align: center;
  color: var(--charcoal);
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-rose), #C4956A);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #C4956A, var(--gold-rose));
  box-shadow: 0 6px 28px rgba(212, 165, 116, 0.50);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-rose);
  border-color: var(--gold-rose);
}
.btn-outline:hover {
  background: var(--gold-rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 0.92rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-nav {
  background: transparent;
  color: var(--gold-rose);
  border: 1.5px solid var(--gold-rose);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}
.btn-nav:hover {
  background: var(--gold-rose);
  color: var(--white);
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  background: linear-gradient(145deg, var(--beige) 0%, var(--beige-mid) 50%, var(--sand) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,165,116,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-rose);
  text-align: center;
  padding: 24px;
}

.placeholder-lotus {
  font-size: 2.5rem;
  opacity: 0.5;
  animation: pulse 3s ease-in-out infinite;
}

.placeholder-inner span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.placeholder-inner small {
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.7;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(44, 44, 44, 0.08);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  border-radius: 6px;
}

.hero-logo-img {
  width: 300px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(212, 165, 116, 0.25);
}

.footer-logo-img {
  width: 110px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 10px;
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.navbar:not(.scrolled) .nav-links a:not(.btn-nav) {
  color: rgba(255,255,255,0.85);
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-rose);
  transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a:not(.btn-nav):hover { color: var(--gold-rose); }
.navbar:not(.scrolled) .nav-links a:not(.btn-nav):hover { color: var(--gold-light); }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span { background: var(--white); }

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Gradient simulating a premium spa atmosphere */
  background: linear-gradient(135deg,
    #3D2E24 0%,
    #5C4235 20%,
    #7A5C47 40%,
    #9E7B60 60%,
    #C4A07A 80%,
    #D4B896 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(212,165,116,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 20, 14, 0.3) 0%,
    rgba(30, 20, 14, 0.5) 40%,
    rgba(30, 20, 14, 0.7) 100%
  );
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Imagens reais — sobre, profissional, ambiente */
.sobre-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.prof-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
}

.ambiente-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-logo-wrap {
  margin-bottom: 52px;
  display: flex;
  justify-content: center;
}

.hero-logo-symbol {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  opacity: 0.9;
}

.hero-brand-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-brand-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.15em;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.80);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- SOBRE ---------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-placeholder {
  height: 520px;
  position: relative;
}

.sobre-visual {
  position: relative;
}

.sobre-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-rose);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

.sobre-content .section-label { text-align: left; padding: 0; }
.sobre-content .section-label::before { display: none; }
.sobre-content .section-label::after { left: auto; right: auto; position: relative; display: inline-block; width: 24px; transform: none; margin-left: 10px; vertical-align: middle; }

.sobre-content .section-title {
  text-align: left;
  margin: 16px 0 28px;
}

.sobre-text {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.9;
}

.sobre-valores {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.valor-icon {
  color: var(--gold-rose);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.valor-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.valor-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- JORNADA ---------- */
.jornada-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.jornada-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-rose), transparent);
  opacity: 0.4;
}

.jornada-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px 40px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.jornada-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.jornada-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-rose);
}

.jornada-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}

.jornada-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.jornada-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- SERVIÇOS ---------- */
.servicos-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border-mid);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gold-rose);
  color: var(--white);
  border-color: var(--gold-rose);
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.servico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.servico-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-rose), transparent);
  opacity: 0;
  transition: var(--transition);
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.servico-card:hover::before { opacity: 1; }

.servico-icon {
  color: var(--gold-rose);
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: block;
  opacity: 0.7;
}

.servico-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 500;
}

.servico-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pacotes */
.pacotes-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.pacote-card {
  padding: 40px 32px;
  background: linear-gradient(145deg, var(--white), var(--sand));
}

.pacote-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--beige);
  color: var(--gold-rose);
  border: 1px solid var(--border-mid);
  margin-bottom: 16px;
}

.pacote-badge.gold {
  background: linear-gradient(135deg, var(--gold-rose), var(--gold));
  color: var(--white);
  border-color: transparent;
}

.pacote-card .btn-outline {
  margin-top: 20px;
}

.servicos-cta {
  text-align: center;
  margin-top: 64px;
  padding: 48px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.servicos-cta p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--text-mid);
}

/* ---------- FILOSOFIA ---------- */
.filosofia-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.filosofia-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.deco-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-rose));
  opacity: 0.5;
}

.deco-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-rose));
}

.deco-lotus {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.filosofia-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.filosofia-title em {
  font-style: italic;
}

.filosofia-text {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 60px;
}

.filosofia-pilares {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pilar {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
}

.pilar-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-rose);
  opacity: 0.5;
  margin-bottom: 12px;
}

.pilar strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pilar p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.pilar-divider {
  width: 1px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  color: var(--gold-rose);
  font-size: 0.6rem;
  padding: 0 1px;
}

/* ---------- PROFISSIONAL ---------- */
.profissional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profissional-content .section-label { text-align: left; padding: 0; }
.profissional-content .section-label::before { display: none; }
.profissional-content .section-label::after { display: none; }

.profissional-content .section-title {
  text-align: left;
  margin: 16px 0 28px;
}

.prof-text {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.9;
}

.prof-credenciais {
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credencial {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.cred-icon {
  color: var(--gold-rose);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.prof-img-placeholder {
  height: 520px;
  border-radius: var(--radius-xl);
}

.prof-quote {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--sand);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-rose);
}

.prof-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 12px;
}

.prof-quote cite {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--gold-rose);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ---------- AMBIENTE ---------- */
.ambiente-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 20px;
  margin-bottom: 40px;
}

.ambiente-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ambiente-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.ambiente-card.large .ambiente-placeholder,
.ambiente-card.large .ambiente-img {
  height: 460px;
}

.ambiente-placeholder {
  height: 200px;
  border-radius: 0;
}

.ambiente-placeholder.sm {
  height: 100%;
  min-height: 180px;
}

.ambiente-col .ambiente-card {
  flex: 1;
  min-height: 200px;
}

.ambiente-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(44,44,44,0.6), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ambiente-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.feature-icon {
  color: var(--gold-rose);
  font-size: 0.7rem;
}

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

.depo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
}

.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.depo-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.depo-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
}

.depo-card blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2rem;
  color: var(--gold-rose);
  opacity: 0.4;
  line-height: 1;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-rose), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.depo-author strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 2px;
}

.depo-author span {
  font-size: 0.78rem;
  color: var(--gold-rose);
  letter-spacing: 0.06em;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #2A1E18 0%,
    #4A2E1E 30%,
    #6B3F28 60%,
    #8A5235 100%
  );
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(212,165,116,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
}

.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-deco {
  margin-bottom: 36px;
}

.cta-lotus {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.85;
}

.cta-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-title em { color: var(--gold-light); }

.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}


.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-tagline {
  margin-top: 16px !important;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.6;
}

.footer-links h5,
.footer-contato h5 {
  color: var(--gold-rose);
  margin-bottom: 20px;
  font-size: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-rose); }

.footer-contato p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contato svg {
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.6;
  stroke: var(--gold-rose);
}

.footer-social {
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 50px;
}

.social-link svg { stroke: var(--gold-rose); }

.social-link:hover {
  color: var(--white);
  border-color: var(--gold-rose);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-powered {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ---------- ANIMATIONS ---------- */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in         { transform: translateY(28px); }
.fade-in-left    { transform: translateX(-36px); }
.fade-in-right   { transform: translateX(36px); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .sobre-grid,
  .profissional-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-img-placeholder,
  .prof-img-placeholder { height: 360px; }

  .sobre-badge { right: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .jornada-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1rem;
    color: var(--charcoal) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .hero-ctas { flex-direction: column; align-items: center; }

  .jornada-grid { grid-template-columns: 1fr; }

  .depo-grid {
    grid-template-columns: 1fr;
  }

  .ambiente-grid {
    grid-template-columns: 1fr;
  }

  .filosofia-pilares {
    flex-direction: column;
  }

  .pilar-divider {
    width: auto;
    height: 1px;
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-info { flex-direction: column; gap: 8px; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .servicos-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.74rem; }
  .hero-title { font-size: 2.4rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.86rem; }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--gold-rose); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(212, 165, 116, 0.25);
  color: var(--charcoal);
}
