/* ============================================================
   ALINE BRASIL PSICANALISTA — Main Stylesheet
   ============================================================ */

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

/* === VARIABLES === */
:root {
  --primary:    #1A4652;
  --secondary:  #2C3E50;
  --gold:       #D4AF37;
  --gold-light: #DAB851;
  --beige:      #F5F5DC;
  --beige-bg:   #F8F6F0;
  --beige-bg2:  #F5F3ED;
  --white:      #FFFFFF;
  --text-dark:  #2C3E50;
  --text-muted: #6c757d;
  --whatsapp:   #25D366;
  --navbar-h:   75px;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; }

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: linear-gradient(180deg, rgba(18, 53, 63, 0.94) 0%, rgba(17, 49, 58, 0.9) 100%);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.navbar.scrolled {
  background: linear-gradient(180deg, rgba(15, 43, 51, 0.98) 0%, rgba(14, 39, 47, 0.96) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border-bottom-color: rgba(212,175,55,0.18);
}
.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2.4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 0;
}
.nav-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
}
.nav-logo-image {
  width: 274px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  margin-right: 1.35rem;
}
.nav-user-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0;
  transform: translateX(10px);
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(255,255,255,0.04);
  color: rgba(245,245,220,0.86);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.nav-user-link:hover {
  transform: translateX(10px) translateY(-1px);
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.52);
  color: var(--gold);
}
.nav-user-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(245,245,220,0.84);
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.52rem 0;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.92;
  white-space: nowrap;
  text-rendering: geometricPrecision;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.05rem; left: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 18%, var(--gold-light) 50%, var(--gold) 82%, transparent 100%);
  transform: translateX(-50%);
  transition: width 0.32s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  opacity: 1;
}
.nav-link:hover {
  color: var(--beige);
  opacity: 1;
  transform: translateY(-1px);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

@media (max-width: 1320px) {
  .nav-container { padding: 0 1.8rem; gap: 1.4rem; }
  .nav-logo-image { width: 248px; }
  .nav-menu { gap: 1.15rem; margin-right: 1rem; }
  .nav-link { font-size: 0.9rem; }
  .nav-user-link { transform: translateX(8px); }
  .nav-user-link:hover { transform: translateX(8px) translateY(-1px); }
}

@media (max-width: 1180px) {
  .nav-logo-image { width: 222px; }
  .nav-menu { gap: 0.9rem; margin-right: 0.85rem; }
  .nav-link { font-size: 0.84rem; letter-spacing: 0.02em; }
  .nav-user-link { transform: translateX(6px); }
  .nav-user-link:hover { transform: translateX(6px) translateY(-1px); }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.bar {
  display: block;
  width: 25px; height: 2px;
  background: var(--beige);
  transition: all 0.3s ease;
}
.nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--primary); font-weight: 600; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}
.btn-secondary { background: transparent; color: var(--beige); border: 2px solid var(--gold); }
.btn-secondary:hover { background: rgba(212,175,55,0.12); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }
.btn-card {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 25px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-card:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }
.btn-cta-gold {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-cta-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,0.35);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-background { position: absolute; inset: 0; z-index: 0; }
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(212,175,55,0.18), transparent 32%),
    linear-gradient(135deg, rgba(18,50,59,0.52) 0%, rgba(22,49,58,0.36) 42%, rgba(21,47,55,0.58) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,30,37,0.48) 0%, rgba(12,30,37,0.18) 24%, rgba(12,30,37,0.28) 56%, rgba(12,30,37,0.72) 100%),
    linear-gradient(90deg, rgba(16,43,52,0.62) 0%, rgba(16,43,52,0.18) 38%, rgba(16,43,52,0.18) 62%, rgba(16,43,52,0.52) 100%);
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.02);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  color: var(--beige);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.title-line { display: block; }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: rgba(245,245,220,0.85);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.2s infinite;
}
.scroll-indicator svg { width: 26px; height: 26px; color: rgba(245,245,220,0.55); }

/* Hero entrance animations */
.hero .title-line   { opacity: 0; transform: translateY(22px); animation: heroIn 0.85s ease forwards; }
.hero .title-line:nth-child(1) { animation-delay: 0.35s; }
.hero .title-line:nth-child(2) { animation-delay: 0.55s; }
.hero .hero-subtitle { opacity: 0; animation: heroIn 0.85s ease 0.75s forwards; }
.hero .hero-buttons  { opacity: 0; animation: heroIn 0.85s ease 0.95s forwards; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   PSICANALISE
   ============================================================ */
.psicanalise {
  padding: 108px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(26,70,82,0.08), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(212,175,55,0.14), transparent 24%),
    linear-gradient(180deg, #f6f1e7 0%, #efe7d8 100%);
  color: var(--text-dark);
  overflow: hidden;
  position: relative;
}
.psicanalise::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), transparent 36%),
    linear-gradient(315deg, rgba(26,70,82,0.04), transparent 42%);
  pointer-events: none;
}
.psicanalise .section-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.9rem;
}
.section-divider {
  width: 92px;
  height: 3px;
  margin: 0 auto 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 18%, var(--gold-light) 50%, var(--gold) 82%, transparent 100%);
}
.psicanalise-header {
  max-width: 980px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.psicanalise-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: rgba(44,62,80,0.9);
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
}
.psicanalise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 2.4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.psicanalise-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.psicanalise-copy {
  padding: 2rem 2.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.68) 100%);
  border: 1px solid rgba(26,70,82,0.08);
  box-shadow: 0 18px 42px rgba(34,58,65,0.08);
  backdrop-filter: blur(8px);
}
.psicanalise-copy p {
  font-size: 1rem;
  color: rgba(36,51,59,0.92);
  line-height: 1.95;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.psicanalise-card,
.psicanalise-issues-card {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(8, 27, 33, 0.12);
}
.psicanalise-card {
  padding: 2.2rem 2.35rem 2.3rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.68) 100%);
  border: 1px solid rgba(26,70,82,0.08);
}
.psicanalise-issues-card {
  padding: 2.3rem 2.2rem;
  background: linear-gradient(180deg, rgba(29,72,84,0.96) 0%, rgba(21,58,68,0.96) 100%);
  border: 1px solid rgba(212,175,55,0.34);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
.psicanalise-card h3,
.psicanalise-issues-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.psicanalise-card h3 {
  color: var(--primary);
}
.psicanalise-card p {
  font-size: 1rem;
  color: rgba(36,51,59,0.92);
  line-height: 1.9;
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.psicanalise-card-quote,
.psicanalise-note {
  margin: 1.7rem 0 0;
  padding: 1.5rem 1.55rem;
  border-radius: 16px;
  font-family: 'Playfair Display', serif;
  line-height: 1.75;
  font-size: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.psicanalise-card-quote {
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(255,255,255,0.8));
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  border-left: 4px solid var(--gold);
  font-style: normal;
  font-weight: 600;
}
.psicanalise-issues-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.psicanalise-issues-list li {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.1));
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  line-height: 1.55;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.psicanalise-issues-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 1rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.08);
}
.psicanalise-note-wrap {
  padding: 0.4rem 0 0;
}
.psicanalise-note {
  width: 100%;
  background: transparent;
  color: rgba(36,51,59,0.92);
  border-left: none;
  margin-top: 0;
  font-style: italic;
  padding: 0.25rem 0 0 1.6rem;
  position: relative;
  box-shadow: none;
}
.psicanalise-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212,175,55,0.85), rgba(26,70,82,0.35));
}
.psicanalise-note::after {
  content: '“';
  position: absolute;
  left: -0.15rem;
  top: -0.55rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1;
  color: rgba(212,175,55,0.55);
}

/* ============================================================
   NO EXTERIOR
   ============================================================ */
.exterior { padding: 100px 0; background: var(--white); }
.exterior-header { text-align: center; margin-bottom: 4rem; }
.exterior-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.intro-block, .approach-block { margin-bottom: 2rem; }
.approach-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.intro-block p, .approach-block p {
  color: var(--text-dark);
  line-height: 1.95;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1rem;
}
.services-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(26,70,82,0.1);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 5px 20px rgba(26,70,82,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,70,82,0.12); }
.card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 21px; height: 21px; color: var(--white); }
.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--primary); margin-bottom: 0.7rem;
}
.service-card p { font-size: 0.92rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 0.8rem; font-weight: 300; }
.features-list { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.8rem 0; }
.feature { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--text-dark); }
.feature-icon { font-size: 1rem; }
.card-cta { margin-top: 1.2rem; }
.exterior-conclusion {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--beige-bg);
  border-radius: 12px;
  flex-wrap: wrap;
}
.conclusion-text p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.85;
}

/* ============================================================
   CLINICA SOCIAL
   ============================================================ */
.clinica-social { padding: 100px 0; background: var(--primary); color: var(--white); }
.clinica-header { text-align: center; margin-bottom: 4rem; }
.clinica-header .section-title   { color: var(--beige); }
.clinica-header .section-subtitle {
  color: var(--gold);
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.clinica-header .section-desc { color: rgba(245,245,220,0.65); font-style: italic; }
.clinica-header .divider { width: 55px; height: 2px; background: var(--gold); margin: 1.5rem auto 0; }

.clinica-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.intro-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 2rem;
}
.intro-card h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); margin-bottom: 1rem; }
.intro-card p  { color: rgba(245,245,220,0.85); line-height: 1.9; margin-bottom: 1rem; font-weight: 300; font-size: 0.97rem; }
.highlight-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 2rem; }
.box-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.box-icon svg { width: 21px; height: 21px; color: var(--white); }
.highlight-box h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--beige); margin-bottom: 0.9rem; }
.highlight-box p  { color: rgba(245,245,220,0.8); line-height: 1.85; margin-bottom: 1rem; font-weight: 300; font-size: 0.95rem; }
.note {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: rgba(212,175,55,0.13);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem; border-radius: 0 6px 6px 0;
  font-size: 0.88rem; color: rgba(245,245,220,0.85);
}
.processo-section { margin-bottom: 3.5rem; }
.processo-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--beige); text-align: center; margin-bottom: 2rem; }
.processo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.processo-step { display: flex; gap: 0.9rem; align-items: flex-start; }
.step-number {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 0.88rem; flex-shrink: 0;
}
.step-content h5 { color: var(--gold); font-size: 0.93rem; margin-bottom: 0.4rem; font-weight: 600; }
.step-content p  { color: rgba(245,245,220,0.75); font-size: 0.87rem; line-height: 1.7; font-weight: 300; }
.commitment-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 2rem 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 3rem;
}
.commitment-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.commitment-icon svg { width: 21px; height: 21px; color: var(--white); }
.commitment-card h4 { font-family: 'Playfair Display', serif; color: var(--beige); font-size: 1.15rem; margin-bottom: 0.8rem; }
.commitment-card p  { color: rgba(245,245,220,0.8); line-height: 1.85; font-weight: 300; font-size: 0.96rem; }
.clinica-cta { text-align: center; }
.clinica-cta h4 { font-family: 'Playfair Display', serif; color: var(--beige); font-size: 1.35rem; margin-bottom: 0.7rem; }
.clinica-cta p  { color: rgba(245,245,220,0.65); margin-bottom: 1.5rem; font-weight: 300; }

/* ============================================================
   DUVIDAS (FAQ)
   ============================================================ */
.duvidas { padding: 100px 0; background: linear-gradient(135deg, var(--primary) 0%, #2C3E50 100%); }
.duvidas-header { text-align: center; margin-bottom: 3rem; }
.duvidas .section-title   { color: var(--beige); }
.duvidas .section-subtitle { color: rgba(245,245,220,0.65); }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--beige); border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s ease; }
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.faq-item.featured {
  background: linear-gradient(135deg, rgba(255,249,220,0.97), rgba(255,245,200,0.94));
  border: 1px solid rgba(212,175,55,0.45);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; cursor: pointer; transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(26,70,82,0.06); }
.faq-question h3 { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--primary); font-weight: 500; }
.faq-icon { flex-shrink: 0; margin-left: 1rem; }
.faq-icon svg { width: 20px; height: 20px; color: var(--gold); transition: transform 0.35s ease; }
.faq-item.active .faq-icon svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.3rem; }
.faq-answer-inner p { color: var(--text-dark); line-height: 1.85; font-size: 0.94rem; font-weight: 300; }
.featured-link { margin-top: 0.9rem; }
.btn-link { color: var(--gold); font-weight: 600; font-size: 0.88rem; transition: color 0.2s ease; }
.btn-link:hover { color: var(--primary); text-decoration: underline; }
.duvidas-footer {
  max-width: 800px; margin: 3rem auto 0; text-align: center;
  padding: 2.5rem; background: rgba(255,255,255,0.06);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
}
.duvidas-footer h4 { font-family: 'Playfair Display', serif; color: var(--beige); font-size: 1.25rem; margin-bottom: 0.7rem; }
.duvidas-footer p  { color: rgba(245,245,220,0.65); margin-bottom: 1.5rem; font-weight: 300; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 100px 0; background: #f5f1e8; }
.contato-header { text-align: center; margin-bottom: 3rem; }
.contato-content { display: flex; justify-content: center; }
.contato-form-section {
  background: var(--white); padding: 3rem; border-radius: 15px;
  box-shadow: 0 10px 32px rgba(44,83,85,0.1); width: 100%; max-width: 600px;
}
.form-header { margin-bottom: 2rem; }
.form-header h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--primary); margin-bottom: 0.4rem; }
.form-header p  { color: var(--text-muted); font-weight: 300; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; margin-bottom: 0.45rem; font-weight: 600; color: var(--primary); font-size: 0.88rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid #e9ecef; border-radius: 8px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--text-dark); background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--primary); color: var(--white);
  border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s ease;
}
.btn-submit:hover { background: #133540; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(26,70,82,0.3); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-loading { display: none; align-items: center; gap: 10px; }
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3); border-top: 2px solid white;
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-success { text-align: center; padding: 3rem 1rem; display: none; }
.success-icon {
  width: 80px; height: 80px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.success-icon svg { width: 40px; height: 40px; color: var(--white); }
.form-success h4 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.4rem; margin-bottom: 0.7rem; }
.form-success p  { color: var(--text-muted); }
.alert { padding: 0.85rem 1rem; border-radius: 8px; margin-bottom: 1.2rem; font-size: 0.9rem; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.contato-footer { text-align: center; margin-top: 2.5rem; color: var(--text-muted); font-style: italic; font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--primary) 0%, #0f2830 100%);
  padding: 2rem 0; text-align: center;
  border-top: 2px solid rgba(212,175,55,0.28);
}
.site-footer p { color: rgba(245,245,220,0.45); font-size: 0.82rem; }

/* ============================================================
   DEVELOPER SIGNATURE
   ============================================================ */
.developer-signature {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #08192b 0%, #091628 100%);
  overflow: hidden;
}
.developer-signature-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 52px;
  padding: 0.72rem 2rem;
  background:
    radial-gradient(circle at 82% 50%, rgba(56,140,190,0.1), transparent 24%),
    linear-gradient(90deg, #07111f 0%, #08192b 52%, #091628 100%);
  border-top: 1px solid rgba(126,192,229,0.14);
  text-decoration: none;
  transition: background 0.3s ease;
}
.developer-signature-bar:hover {
  background:
    radial-gradient(circle at 82% 50%, rgba(56,140,190,0.16), transparent 24%),
    linear-gradient(90deg, #07111f 0%, #0a2137 52%, #0a1d32 100%);
}
.developer-signature-inline-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
  min-width: 0;
}
.developer-signature-brand {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f7fbff;
}
.developer-signature-tech {
  margin-top: 0.08rem;
  padding-left: 0.12em;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.44rem, 0.8vw, 0.62rem);
  font-weight: 400;
  letter-spacing: 0.52em;
  color: #7ec0e5;
}
.developer-signature-inline-copy {
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(234,245,250,0.84);
  line-height: 1.45;
  font-size: 0.78rem;
}
.developer-signature-inline-copy strong {
  color: #ffffff;
  font-weight: 600;
}
.developer-signature-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #9fd5f3;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   COOKIE CONSENT + TERMS
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(20px);
  width: min(1120px, calc(100% - 2rem));
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(11, 24, 29, 0.96);
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.16);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.2);
  backdrop-filter: blur(18px);
}
.cookie-banner-text strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: var(--beige);
}
.cookie-banner-text p {
  color: rgba(245,245,220,0.76);
  font-size: 0.84rem;
  line-height: 1.55;
  max-width: 720px;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-button,
.cookie-link-button {
  border: none;
  cursor: pointer;
  font: inherit;
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  font-size: 0.82rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cookie-button:hover,
.cookie-link-button:hover {
  transform: translateY(-1px);
}
.cookie-button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(212,175,55,0.18);
}
.cookie-button-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
}
.cookie-link-button {
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-inline: 0.35rem;
}
.terms-modal[hidden] {
  display: none;
}
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
}
.terms-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 22, 0.62);
  backdrop-filter: blur(8px);
}
.terms-dialog {
  position: relative;
  width: min(820px, calc(100% - 2rem));
  max-height: calc(100vh - 4rem);
  margin: 2rem auto;
  overflow: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbf8f1 0%, #f3ede2 100%);
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
  border: 1px solid rgba(26,70,82,0.08);
}
.terms-close {
  position: sticky;
  top: 1rem;
  margin-left: auto;
  margin-right: 1rem;
  margin-top: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(22,58,69,0.08);
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terms-body {
  padding: 0 2rem 2rem;
}
.terms-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.terms-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--primary);
  margin-bottom: 1.4rem;
  line-height: 1.15;
}
.terms-section + .terms-section {
  margin-top: 1.4rem;
}
.terms-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.45rem;
}
.terms-section p {
  color: var(--text-dark);
  line-height: 1.85;
  font-size: 0.96rem;
}
body.modal-open {
  overflow: hidden;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.btn-scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 998; box-shadow: 0 5px 18px rgba(212,175,55,0.4);
}
.btn-scroll-top.visible { opacity: 1; transform: scale(1); }
.btn-scroll-top:hover   { transform: scale(1.1); box-shadow: 0 8px 25px rgba(212,175,55,0.55); }
.btn-scroll-top svg { width: 20px; height: 20px; color: var(--primary); }

.btn-whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 58px; height: 58px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 998; box-shadow: 0 5px 20px rgba(37,211,102,0.42);
}
.btn-whatsapp-float.visible { opacity: 1; transform: scale(1); animation: waPulse 3s ease-in-out infinite; }
.btn-whatsapp-float:hover   { transform: scale(1.1) !important; animation: none !important; }
.btn-whatsapp-float svg { width: 27px; height: 27px; color: var(--white); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 5px 20px rgba(37,211,102,0.42); }
  50%      { box-shadow: 0 5px 32px rgba(37,211,102,0.65); }
}
.whatsapp-tooltip {
  position: absolute; left: 68px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: var(--primary); color: var(--white);
  padding: 0.45rem 0.8rem; border-radius: 6px;
  font-size: 0.78rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.btn-whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.btn-tiktok-float {
  position: fixed; bottom: 6.6rem; left: 2rem;
  width: 58px; height: 58px;
  background: linear-gradient(145deg, #111111 0%, #1d1d1d 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 998;
  box-shadow: 0 5px 20px rgba(17,17,17,0.36), 0 0 0 1px rgba(37,244,238,0.08);
}
.btn-tiktok-float::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(37,244,238,0.95), rgba(254,44,85,0.95));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
}
.btn-tiktok-float.visible { opacity: 1; transform: scale(1); animation: tiktokPulse 3s ease-in-out infinite; }
.btn-tiktok-float:hover   { transform: scale(1.1) !important; animation: none !important; }
.btn-tiktok-float svg { width: 24px; height: 24px; color: var(--white); position: relative; z-index: 1; }
@keyframes tiktokPulse {
  0%,100% { box-shadow: 0 5px 20px rgba(17,17,17,0.36), 0 0 0 1px rgba(37,244,238,0.08); }
  50% { box-shadow: 0 8px 28px rgba(17,17,17,0.48), 0 0 18px rgba(254,44,85,0.22); }
}
.tiktok-tooltip {
  position: absolute; left: 68px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: #111111; color: var(--white);
  padding: 0.45rem 0.8rem; border-radius: 6px;
  font-size: 0.78rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.btn-tiktok-float:hover .tiktok-tooltip { opacity: 1; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.slide-left  { opacity: 0; transform: translateX(-42px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-left.visible  { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(42px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   REFLEXOES PAGE
   ============================================================ */
.reflexoes-section {
  padding: calc(var(--navbar-h) + 60px) 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, #2C3E50 100%);
  min-height: 100vh;
  position: relative;
}
.reflexoes-container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.reflexoes-header { text-align: center; margin-bottom: 4rem; }
.reflexoes-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--beige); font-weight: 400; }
.timeline-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; }
.reflection-card {
  background: rgba(255,255,255,0.97); border-radius: 12px;
  border-top: 4px solid var(--gold); padding: 2rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative; opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.card-content,
.card-header,
.card-text,
.card-quote {
  min-width: 0;
  max-width: 100%;
}
.reflection-card.animate-in { opacity: 1; transform: translateY(0); }
.reflection-card:hover { box-shadow: 0 14px 42px rgba(0,0,0,0.2); }
.reflection-card.animate-in:hover { transform: translateY(-4px); }
.card-number {
  position: absolute; top: 1.1rem; right: 1.4rem;
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  color: rgba(212,175,55,0.22); font-weight: 600; line-height: 1;
}
.card-header { margin-bottom: 1.1rem; }
.card-title {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  color: var(--primary); margin-bottom: 0.35rem; font-weight: 500;
  line-height: 1.3; padding-right: 3rem;
  overflow-wrap: anywhere;
}
.card-theme { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.card-quote {
  background: linear-gradient(135deg, rgba(212,175,55,0.09), rgba(212,175,55,0.04));
  border-left: 3px solid var(--gold); padding: 0.9rem 1.1rem;
  margin: 0.9rem 0 1.1rem; border-radius: 0 6px 6px 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--primary); font-size: 0.94rem; line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-quote cite { display: block; margin-top: 0.5rem; font-style: normal; font-family: 'Inter', sans-serif; font-size: 0.79rem; color: var(--gold); font-weight: 500; overflow-wrap: anywhere; }
.card-text p { color: var(--text-dark); font-size: 0.91rem; line-height: 1.85; margin-bottom: 0.8rem; font-weight: 300; text-align: justify; overflow-wrap: anywhere; word-break: break-word; }
.card-text p:last-child { margin-bottom: 0; }
.card-text em     { color: var(--gold); font-style: italic; }
.card-text strong { color: var(--primary); font-weight: 600; }
.card-author {
  display: block; margin-top: 1rem; padding-top: 0.8rem;
  border-top: 1px solid rgba(26,70,82,0.1);
  font-size: 0.83rem; color: var(--gold); font-style: italic;
  overflow-wrap: anywhere;
}

/* Dynamic background orbs */
.dynamic-lights { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.light-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.light-orb-1 { width:400px;height:400px;background:var(--gold);   top:-8%;  left:-8%;  animation:orbFloat 25s ease-in-out infinite; }
.light-orb-2 { width:300px;height:300px;background:#4a8fa4; top:50%; right:-5%; animation:orbFloat 30s ease-in-out infinite reverse; }
.light-orb-3 { width:220px;height:220px;background:var(--gold);   bottom:8%; left:30%;  animation:orbFloat 20s ease-in-out infinite; }
.light-orb-4 { width:180px;height:180px;background:#2C3E50; top:30%; left:60%;  animation:orbFloat 35s ease-in-out infinite reverse; }
.light-orb-5 { width:260px;height:260px;background:var(--gold);   bottom:-5%;right:20%; animation:orbFloat 28s ease-in-out infinite; }
@keyframes orbFloat {
  0%,100% { transform:translate(0,0); }
  33%      { transform:translate(25px,-18px); }
  66%      { transform:translate(-18px,12px); }
}

/* ============================================================
   SOBRE MIM PAGE
   ============================================================ */
.sobre {
  padding: calc(var(--navbar-h) + 60px) 0 100px;
  background: linear-gradient(135deg, var(--beige-bg) 0%, var(--beige-bg2) 100%);
  min-height: 100vh;
}
.sobre-content { display: grid; grid-template-columns: 1fr 1.55fr; gap: 4rem; align-items: start; }
.sobre-image-wrap { position: relative; max-width: 340px; }
.sobre-image-wrap img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 15px 40px rgba(26,70,82,0.16);
  position: relative; z-index: 1; transition: transform 0.35s ease;
}
.sobre-image-wrap:hover img { transform: scale(1.02); }
.image-frame { position: absolute; inset: -10px; border: 2px solid rgba(212,175,55,0.55); border-radius: 14px; z-index: 0; }
.sobre-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--primary);
  margin-bottom: 1.5rem; font-weight: 500;
  position: relative; display: inline-block;
}
.sobre-title::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 55%; height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
}
.sobre-intro { font-size: 1.08rem; color: var(--primary); font-weight: 500; margin-bottom: 1.2rem; line-height: 1.75; }
.sobre-text  { font-size: 0.98rem; color: var(--text-dark); line-height: 1.95; margin-bottom: 1rem; font-weight: 300; }
.sobre-quote {
  background: var(--white); border-left: 4px solid var(--gold);
  padding: 1.5rem 1.8rem; border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 16px rgba(26,70,82,0.08); margin: 1.8rem 0;
  position: relative; transition: transform 0.3s ease;
}
.sobre-quote:hover { transform: translateY(-2px); }
.sobre-quote::before {
  content: '"'; position: absolute; top: -12px; left: 1.2rem;
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: rgba(212,175,55,0.28); line-height: 1;
}
.sobre-quote p { font-family: 'Playfair Display', serif; font-style: italic; color: var(--primary); line-height: 1.85; font-size: 1.05rem; margin: 0; }
.sobre-highlight { font-size: 1.02rem; font-weight: 500; color: var(--primary); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.sobre-cta { margin-top: 2.5rem; }
.btn-sobre {
  display: inline-block; padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary); border-radius: 50px;
  font-weight: 700; font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(212,175,55,0.32); min-width: 270px; text-align: center; transition: all 0.3s ease;
}
.btn-sobre:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 30px rgba(212,175,55,0.42); }

/* ============================================================
   MISC
   ============================================================ */
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .psicanalise-layout {
    grid-template-columns: 1fr;
  }
  .exterior-content { grid-template-columns: 1fr; }
  .processo-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .sobre-content { grid-template-columns: 1fr; }
  .sobre-image-wrap { max-width: 270px; margin: 0 auto; }
}
@media (max-width: 768px) {
  :root { --navbar-h: 72px; }
  .nav-container {
    padding: 0 1rem;
    gap: 0.75rem;
  }
  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-logo-image {
    width: 188px;
    max-width: 100%;
  }
  .nav-user-link {
    width: 38px;
    height: 38px;
    margin-left: auto;
    margin-right: 0;
    transform: none;
  }
  .nav-user-link:hover { transform: translateY(-1px); }
  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-h));
    min-height: calc(100dvh - var(--navbar-h));
    background:
      linear-gradient(180deg, rgba(15, 44, 53, 0.985) 0%, rgba(11, 31, 38, 0.985) 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.25rem 1rem 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    box-shadow: 0 18px 44px rgba(0,0,0,0.28);
    border-top: 1px solid rgba(212,175,55,0.12);
    margin-right: 0;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    color: rgba(245,245,220,0.92);
  }
  .nav-link::after {
    left: 0;
    bottom: 0;
    transform: none;
  }
  .nav-link:hover::after,
  .nav-link.active::after { width: 100%; }
  .clinica-grid    { grid-template-columns: 1fr; }
  .commitment-card { flex-direction: column; align-items: center; text-align: center; }
  .exterior-conclusion { flex-direction: column; text-align: center; }
  .hero-buttons    { flex-direction: column; align-items: center; }
  .contato-form-section { padding: 2rem 1.5rem; }
  .developer-signature {
    padding: 0;
  }
  .developer-signature-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
    min-height: 0;
    padding: 0.75rem 1rem;
  }
  .developer-signature-brand {
    font-size: 1.35rem;
  }
  .developer-signature-tech {
    font-size: 0.48rem;
    letter-spacing: 0.38em;
  }
  .developer-signature-inline-copy,
  .developer-signature-inline-link {
    font-size: 0.68rem;
  }
  .developer-signature-inline-link {
    letter-spacing: 0.1em;
  }
  .psicanalise {
    padding: 88px 0;
  }
  .psicanalise-header {
    margin-bottom: 2.6rem;
  }
  .psicanalise-card,
  .psicanalise-issues-card {
    padding: 1.6rem 1.3rem;
    border-radius: 18px;
  }
  .psicanalise-issues-list li {
    min-height: auto;
    padding: 0.95rem 1rem;
  }
  .psicanalise-card-quote,
  .psicanalise-note {
    padding: 1.2rem 1.15rem;
    font-size: 0.98rem;
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-button,
  .cookie-link-button {
    width: 100%;
  }
  .terms-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    border-radius: 18px;
  }
  .terms-body {
    padding: 0 1.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  :root { --navbar-h: 68px; }
  .container { padding: 0 1.2rem; }
  .nav-container { padding: 0 0.85rem; }
  .nav-logo-image { width: 162px; }
  .nav-user-link,
  .nav-toggle {
    width: 36px;
    height: 36px;
  }
  .nav-menu {
    padding: 1rem 0.85rem 1.75rem;
  }
  .processo-grid { grid-template-columns: 1fr; }
  .hero-title    { font-size: 1.75rem; }
  .hero-content { padding: 0 1.2rem; }
  .hero-subtitle { line-height: 1.75; }
  .btn-tiktok-float { bottom: 6.1rem; left: 1.2rem; }
  .btn-whatsapp-float,
  .btn-scroll-top { bottom: 1.2rem; }
  .btn-whatsapp-float { left: 1.2rem; }
  .btn-scroll-top { right: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
