/* ============================================
   CLÍNICA DA LINDA — STYLE.CSS (Unificado)
   main + home + services + detail + about
   ============================================ */

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

/* ══════════════════════════════════════════
   DESIGN SYSTEM — VARIÁVEIS & RESET
   ══════════════════════════════════════════ */
:root {
  --rose:       #c8748a;
  --rose-dark:  #9e4c64;
  --rose-light: #f5d6df;
  --blush:      #f9ede8;
  --cream:      #fdf8f5;
  --plum:       #5a2d4c;
  --plum-light: #8b5e7e;
  --gold:       #b8965a;
  --dark:       #1a0e14;
  --mid:        #4a3340;
  --muted:      #8c7882;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(90,45,76,0.10);
  --shadow-lg: 0 12px 48px rgba(90,45,76,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
em { font-style: italic; color: var(--rose); }
p  { color: var(--mid); font-size: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 520px; margin: 12px auto 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   BOTÕES
   ══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  transition: var(--transition); border: 2px solid var(--rose); cursor: pointer;
}
.btn-primary:hover {
  background: var(--rose-dark); border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,116,138,0.35);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--plum);
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500;
  border: 2px solid var(--plum-light); transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--plum); color: var(--white);
  border-color: var(--plum); transform: translateY(-2px);
}
.btn-ghost.full-width { width: 100%; justify-content: center; }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500;
  border: 2px solid rgba(255,255,255,0.5); transition: var(--transition);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(253,248,245,0.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow); padding: 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 0;
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 600; color: var(--plum); white-space: nowrap;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
/* fallback texto quando não tem imagem */
.logo-text-fallback { display: none; }

.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--mid);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rose);
  border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-login {
  background: var(--rose); color: var(--white);
  padding: 10px 22px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; transition: var(--transition);
}
.btn-login:hover { background: var(--rose-dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--plum); border-radius: 2px; transition: var(--transition);
}

/* ══════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,14,20,0.7);
  z-index: 2000; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  backdrop-filter: blur(6px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; width: 100%; max-width: 440px;
  position: relative; transform: translateY(20px);
  transition: transform var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blush); color: var(--mid); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--rose-light); }
.modal-logo {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--plum); margin-bottom: 20px;
}
.modal-logo img { height: 36px; width: auto; object-fit: contain; margin-bottom: 4px; }
.modal h2 { font-size: 1.8rem; color: var(--dark); margin-bottom: 6px; }
.modal-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: var(--muted); font-size: 0.85rem;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: #e8dde2;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--mid); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e0d4da; border-radius: var(--radius);
  font-size: 0.9rem; color: var(--dark); background: var(--cream);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose); background: var(--white);
}
.modal-footer-text {
  text-align: center; margin-top: 20px;
  font-size: 0.88rem; color: var(--muted);
}
.modal-footer-text button { color: var(--rose); font-weight: 500; text-decoration: underline; }

/* ── USER DROPDOWN ── */
.user-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 6px; border-radius: 100px;
  background: var(--blush); border: 1.5px solid var(--rose-light);
  transition: var(--transition);
}
.user-btn:hover { background: var(--rose-light); }
.user-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
}
.user-name-nav { font-size: 0.85rem; font-weight: 500; color: var(--plum); }
.user-dropdown {
  position: fixed; top: 80px; right: 24px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 260px; z-index: 1500;
  overflow: hidden; transition: var(--transition);
}
.user-dropdown.hidden { opacity: 0; pointer-events: none; transform: translateY(-10px); }
.user-dropdown-header {
  padding: 16px; display: flex; align-items: center; gap: 12px;
  background: var(--blush);
}
.user-avatar-sm {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rose); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 600;
}
.user-dropdown-header > div > div:first-child { font-weight: 500; font-size: 0.9rem; color: var(--dark); }
.user-dropdown-header > div > div:last-child { font-size: 0.78rem; color: var(--muted); }
.user-dropdown hr { border: none; border-top: 1px solid #eee; }
.user-dropdown a,
.user-dropdown button {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; font-size: 0.88rem; color: var(--mid);
  width: 100%; text-align: left; transition: background var(--transition);
}
.user-dropdown a:hover,
.user-dropdown button:hover { background: var(--blush); color: var(--rose); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--dark); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 0.88rem; z-index: 3000;
  transform: translateY(80px); opacity: 0;
  transition: all 0.4s ease; max-width: 320px; box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #2d7a4f; }
.toast.error   { background: #a33; }

/* ── FOOTER ── */
.footer { background: var(--plum); color: rgba(255,255,255,0.85); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; opacity: 0.75; line-height: 1.7; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background var(--transition);
}
.social-links a:hover { background: rgba(255,255,255,0.2); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--white); margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; opacity: 0.75; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; }
.footer-contact p { font-size: 0.88rem; opacity: 0.75; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; text-align: center;
  font-size: 0.82rem; opacity: 0.5;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ── SPINNER ── */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 50%;
  animation: spin 0.8s linear infinite; display: inline-block;
}

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose-dark) 100%);
  padding: 140px 0 80px; text-align: center;
  color: var(--white); position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1, .page-banner h2 { color: var(--white); position: relative; }
.page-banner p { color: rgba(255,255,255,0.8); position: relative; max-width: 540px; margin: 12px auto 0; }
.page-banner .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-12px); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%     { transform: scale(1.05); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 120px 80px 80px;
  position: relative; overflow: hidden; gap: 60px;
  background: linear-gradient(135deg, #fdf8f5 0%, #fbedf3 50%, #f5e8f5 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.orb-1 { width: 500px; height: 500px; background: rgba(200,116,138,0.15); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: rgba(140,94,158,0.12); bottom: 50px; left: 50px; }
.orb-3 { width: 200px; height: 200px; background: rgba(184,150,90,0.10); top: 50%; left: 40%; transform: translate(-50%,-50%); }
.hero-content { position: relative; z-index: 1; animation: fadeUp 0.9s ease both; }
.hero-tag {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rose); font-weight: 500; margin-bottom: 20px;
}
.hero-title { margin-bottom: 24px; color: var(--dark); font-weight: 300; letter-spacing: -0.01em; }
.hero-title em { font-weight: 400; display: block; }
.hero-sub { font-size: 1.05rem; max-width: 440px; margin-bottom: 40px; color: var(--mid); line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light) 0%, #e8c5d4 50%, #d4a8c8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; box-shadow: 0 30px 80px rgba(200,116,138,0.25);
  overflow: hidden;
}
.hero-circle img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.hero-circle::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1px solid rgba(200,116,138,0.3); animation: pulse 3s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
.hero-circle::after {
  content: ''; position: absolute; inset: -24px; border-radius: 50%;
  border: 1px solid rgba(200,116,138,0.15); animation: pulse 3s ease-in-out 1s infinite;
  pointer-events: none; z-index: 1;
}
.hero-circle-inner { text-align: center; }
.hero-circle-text {
  font-family: var(--font-display); font-size: 2.2rem;
  font-style: italic; color: var(--plum); line-height: 1.3;
}
.hero-card {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg); white-space: nowrap;
}
.hero-card:first-of-type { top: 30px; right: -20px; }
.hero-card:nth-of-type(2) { bottom: 50px; left: -30px; }
.hcard-icon { font-size: 1.5rem; }
.hcard-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--dark); }
.hcard-label { font-size: 0.78rem; color: var(--muted); }
.floating { animation: float 4s ease-in-out infinite; }
.delay-1 { animation-delay: 1.5s; }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em; z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: float 2s ease-in-out infinite;
}

/* Services Preview */
.services-preview { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-card {
  position: relative; padding: 32px 24px;
  border: 1.5px solid #edd8e2; border-radius: var(--radius-lg);
  background: var(--cream); transition: var(--transition);
  display: flex; flex-direction: column; gap: 10px; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--rose-light), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg); border-color: var(--rose);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose-dark) 100%);
  border-color: transparent; color: var(--white);
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .sc-price { color: rgba(255,255,255,0.9); }
.service-card.featured .sc-price { color: var(--white); }
.service-card.featured .sc-arrow { color: var(--white); }
.service-card.featured::before { display: none; }
.sc-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
  width: fit-content; margin-bottom: 4px;
}
.sc-icon { font-size: 2rem; }
.service-card h3 { font-size: 1.05rem; color: var(--dark); position: relative; }
.service-card p { font-size: 0.83rem; line-height: 1.6; position: relative; flex: 1; }
.sc-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--rose); font-weight: 600; position: relative; }
.sc-arrow { font-size: 1.1rem; color: var(--rose); align-self: flex-end; transition: transform var(--transition); position: relative; }
.service-card:hover .sc-arrow { transform: translateX(4px); }

/* Service Card com imagem */
.sc-img {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 8px;
}

/* Why Us */
.why-us { background: var(--blush); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { margin-bottom: 16px; }
.why-text p { margin-bottom: 28px; }
.why-list { list-style: none; margin-bottom: 36px; }
.why-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.9rem; color: var(--mid);
  border-bottom: 1px solid rgba(200,116,138,0.1);
}
.why-icon { color: var(--rose); font-size: 0.8rem; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: var(--white); padding: 32px 24px;
  border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow);
}
.stat-card.accent { background: linear-gradient(135deg, var(--plum), var(--rose-dark)); }
.stat-card.accent .stat-num,
.stat-card.accent .stat-label { color: var(--white); }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--rose); display: block; }
.stat-label { font-size: 0.82rem; color: var(--muted); }

/* Clinica img Why Us */
.why-img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 420px;
  box-shadow: var(--shadow-lg);
}

/* Professionals */
.professionals { background: var(--white); }
.prof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prof-card {
  padding: 40px 30px; text-align: center;
  border: 1.5px solid #edd8e2; border-radius: var(--radius-lg);
  background: var(--cream); transition: var(--transition);
}
.prof-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--rose);
}
.prof-card.featured { background: var(--plum); border-color: transparent; }
.prof-card.featured h3, .prof-card.featured p { color: var(--white); }
.prof-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.prof-avatar img { width: 100%; height: 100%; object-fit: cover; }
.prof-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.prof-card p { font-size: 0.85rem; margin-bottom: 16px; }
.prof-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.prof-tags span {
  font-size: 0.75rem; background: var(--rose-light);
  color: var(--rose-dark); padding: 4px 12px; border-radius: 100px;
}
.prof-card.featured .prof-tags span {
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
}

/* Testimonials */
.testimonials { background: var(--blush); }
.testimonials-slider { position: relative; min-height: 220px; }
.testimonial-card {
  display: none; max-width: 680px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
  box-shadow: var(--shadow); animation: fadeUp 0.5s ease;
}
.testimonial-card.active { display: block; }
.test-stars { font-size: 1.3rem; color: var(--gold); margin-bottom: 20px; }
.testimonial-card p {
  font-family: var(--font-display); font-size: 1.2rem;
  font-style: italic; color: var(--dark); line-height: 1.6; margin-bottom: 28px;
}
.test-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600;
}
.test-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.test-author span { font-size: 0.8rem; color: var(--muted); }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d4b8c4; cursor: pointer; transition: all var(--transition);
}
.dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

/* CTA Section */
.cta-section { background: var(--white); }
.cta-box {
  background: linear-gradient(135deg, var(--plum) 0%, #8b3d6a 50%, var(--rose-dark) 100%);
  border-radius: 32px; padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
  top: -150px; right: -100px;
}
.cta-box h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; position: relative; }
.cta-box h2 em { color: var(--rose-light); }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-btns .btn-primary { background: var(--white); color: var(--plum); border-color: var(--white); }
.cta-btns .btn-primary:hover { background: var(--cream); }

/* ══════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════ */
.services-list-section { padding: 80px 0; background: var(--white); }
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.srv-card {
  border: 1.5px solid #edd8e2; border-radius: var(--radius-lg);
  padding: 0; background: var(--cream);
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--rose), var(--plum));
  transform: scaleX(0); transition: transform var(--transition);
}
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card-img { width: 100%; height: 180px; object-fit: cover; }
.srv-card-body { padding: 28px 24px 32px; }
.srv-icon { font-size: 2.4rem; margin-bottom: 16px; }
.srv-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.srv-card h3 { font-size: 1.2rem; color: var(--dark); }
.srv-price-tag { font-family: var(--font-display); font-size: 1rem; color: var(--rose); font-weight: 600; white-space: nowrap; }
.srv-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.srv-benefits { list-style: none; margin-bottom: 24px; }
.srv-benefits li {
  font-size: 0.82rem; color: var(--mid); padding: 4px 0;
  padding-left: 18px; position: relative;
}
.srv-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 600; }
.srv-duration { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }
.srv-cta { display: flex; gap: 12px; }
.btn-detail {
  flex: 1; padding: 10px; border-radius: 100px;
  border: 1.5px solid var(--rose); color: var(--rose);
  font-size: 0.85rem; font-weight: 500; text-align: center; transition: var(--transition);
}
.btn-detail:hover { background: var(--rose); color: var(--white); }

/* Professional Selection */
.prof-selection-section { padding: 80px 0; background: var(--blush); }
.prof-selector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prof-select-card {
  background: var(--white); border: 2px solid #edd8e2;
  border-radius: var(--radius-lg); padding: 32px 24px;
  cursor: pointer; transition: var(--transition); text-align: center;
}
.prof-select-card:hover,
.prof-select-card.selected { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(200,116,138,0.12); }
.prof-select-card.selected { background: var(--rose-light); }
.psc-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.psc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.psc-avatar-initials {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
  margin: 0 auto 14px;
}
.psc-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.psc-role { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.psc-specialty { font-size: 0.78rem; color: var(--rose); margin-bottom: 16px; }
.availability-mini { background: var(--cream); border-radius: var(--radius); padding: 12px; }
.avail-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px; text-align: left;
}
.avail-slots { display: flex; flex-wrap: wrap; gap: 5px; }
.avail-slot {
  font-size: 0.72rem; padding: 3px 8px; border-radius: 4px;
  background: var(--rose-light); color: var(--rose-dark); font-weight: 500;
}

/* Booking Modal */
.booking-modal { max-width: 640px; }
.booking-steps {
  display: flex; gap: 0; margin-bottom: 32px;
  border-bottom: 1px solid #eee;
}
.booking-step {
  flex: 1; padding: 12px 8px; text-align: center;
  font-size: 0.8rem; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.booking-step.active { color: var(--rose); border-bottom-color: var(--rose); font-weight: 500; }
.booking-step.done { color: #4caf50; border-bottom-color: #4caf50; }
.booking-step-content { display: none; }
.booking-step-content.active { display: block; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0; }
.time-slot {
  padding: 10px; border: 1.5px solid #edd8e2; border-radius: var(--radius);
  text-align: center; font-size: 0.85rem; cursor: pointer;
  transition: var(--transition); background: var(--cream);
}
.time-slot:hover, .time-slot.selected { border-color: var(--rose); background: var(--rose-light); color: var(--rose-dark); }
.time-slot.unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.summary-box { background: var(--blush); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 0.88rem;
}
.summary-row:not(:last-child) { border-bottom: 1px solid rgba(200,116,138,0.15); }
.summary-row strong { color: var(--dark); }
.summary-total { font-family: var(--font-display); font-size: 1.2rem; color: var(--rose); }
input[type="date"] {
  padding: 12px 16px; border: 1.5px solid #e0d4da; border-radius: var(--radius);
  font-size: 0.9rem; width: 100%; background: var(--cream);
  color: var(--dark); cursor: pointer; outline: none;
}
input[type="date"]:focus { border-color: var(--rose); }

/* ══════════════════════════════════════════
   DETAIL PAGE
   ══════════════════════════════════════════ */
.detail-hero {
  background: linear-gradient(135deg, var(--blush) 0%, #f5e0ec 100%);
  padding: 140px 0 80px;
}
.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.detail-icon { font-size: 4rem; margin-bottom: 20px; }
.detail-img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}
.detail-hero h1 { margin-bottom: 16px; }
.detail-hero p { font-size: 1.05rem; max-width: 520px; margin-bottom: 24px; }
.detail-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.meta-item {
  background: var(--white); border-radius: 100px; padding: 8px 18px;
  font-size: 0.85rem; color: var(--mid); border: 1.5px solid rgba(200,116,138,0.2);
}
.detail-benefits-section { padding: 80px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { padding: 28px 24px; background: var(--blush); border-radius: var(--radius-lg); }
.benefit-card .bcard-num { font-family: var(--font-display); font-size: 2rem; color: var(--rose); font-weight: 600; margin-bottom: 8px; }
.benefit-card p { font-size: 0.88rem; }
.booking-sidebar {
  background: var(--white); border: 1.5px solid #edd8e2;
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: sticky; top: 90px; box-shadow: var(--shadow);
}
.sidebar-price { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #edd8e2; }
.price-from { font-size: 0.8rem; color: var(--muted); }
.price-value { font-family: var(--font-display); font-size: 2.2rem; color: var(--rose); font-weight: 600; }
.sidebar-info { list-style: none; margin-bottom: 24px; }
.sidebar-info li { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.88rem; border-bottom: 1px solid #f5eff2; }
.sidebar-info li strong { color: var(--dark); }
.related-services { padding: 80px 0; background: var(--blush); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.related-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 20px;
  border: 1.5px solid #edd8e2; transition: var(--transition);
}
.related-card:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card .rc-icon { font-size: 1.8rem; margin-bottom: 10px; }
.related-card h4 { font-size: 1rem; margin-bottom: 6px; }
.related-card p { font-size: 0.8rem; margin-bottom: 10px; }
.related-card .rc-price { color: var(--rose); font-weight: 600; font-size: 0.9rem; font-family: var(--font-display); }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.story-visual { position: relative; display: flex; justify-content: center; }
.story-circle {
  width: 340px; height: 340px; border-radius: 50%;
  overflow: hidden; box-shadow: 0 30px 80px rgba(200,116,138,.2);
}
.story-circle img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute; bottom: -10px; right: 10px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); font-size: 1.5rem;
}
.story-badge strong { display: block; font-size: .88rem; color: var(--dark); }
.story-badge small { font-size: .75rem; color: var(--muted); }
.story-text p { line-height: 1.8; }
.story-signature { margin-top: 24px; font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--rose); }
.values-section { background: var(--blush); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; }
.vc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.value-card p { font-size: .88rem; line-height: 1.7; }
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { border: 1.5px solid #edd8e2; border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-card.featured { border-color: var(--rose); }
.tc-avatar { height: 200px; overflow: hidden; }
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tc-info { padding: 24px; }
.tc-info h3 { margin-bottom: 4px; }
.tc-role { display: inline-block; font-size: .78rem; background: var(--rose-light); color: var(--rose-dark); padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }
.tc-info p { font-size: .88rem; line-height: 1.7; margin-bottom: 14px; }
.tc-certs { display: flex; flex-wrap: wrap; gap: 6px; }
.tc-certs span { font-size: .74rem; background: var(--blush); color: var(--mid); padding: 3px 8px; border-radius: 4px; }
.certs-section { background: var(--blush); }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.cert-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.cert-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cert-card h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.cert-card p { font-size: .82rem; }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact-form-box { background: var(--cream); border: 1.5px solid #edd8e2; border-radius: var(--radius-lg); padding: 48px 40px; }
.contact-form-box h2 { margin-bottom: 6px; }
.contact-form-box > p { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-box { padding: 10px 0; }
.contact-info-box h3 { margin-bottom: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid #edd8e2; }
.info-icon { width: 44px; height: 44px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-content strong { display: block; font-size: .88rem; color: var(--dark); margin-bottom: 2px; }
.info-content p { font-size: .85rem; }
.hours-grid { margin-top: 28px; background: var(--blush); border-radius: var(--radius); padding: 20px; }
.hours-grid h4 { font-family: var(--font-display); margin-bottom: 14px; font-size: 1rem; }
.hour-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .85rem; border-bottom: 1px solid rgba(200,116,138,.1); }
.hour-row:last-child { border: none; }
.hour-row strong { color: var(--dark); }
.map-section { padding: 0 0 80px; background: var(--white); }
.map-placeholder {
  background: linear-gradient(135deg, var(--blush), var(--rose-light));
  border-radius: var(--radius-lg); height: 350px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--plum); font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
}
.map-placeholder span { font-size: 2.5rem; }
.map-placeholder small { font-family: var(--font-body); font-style: normal; font-size: .88rem; color: var(--mid); }
.social-section { padding: 80px 0; background: var(--blush); text-align: center; }
.social-icons { display: flex; justify-content: center; gap: 20px; margin-top: 32px; }
.social-big {
  width: 70px; height: 70px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: var(--shadow); transition: var(--transition); text-decoration: none;
}
.social-big:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.faq-section { padding: 80px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.faq-item { background: var(--cream); border-radius: var(--radius); border: 1.5px solid #edd8e2; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: .9rem; }
.faq-answer { padding: 0 20px 20px; font-size: .87rem; color: var(--mid); line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-arrow { transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .values-grid, .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 32px 60px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .prof-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { margin-bottom: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr 1fr; }
  .prof-selector-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 24px;
    box-shadow: var(--shadow-lg); gap: 16px; z-index: 999;
  }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .modal { padding: 32px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-stats { gap: 14px; }
  .testimonial-card { padding: 32px 24px; }
  .cta-box { padding: 48px 24px; }
  .prof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid, .certs-grid { grid-template-columns: 1fr; }
  .benefits-grid, .related-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
