/* ======================================================
   WARNING: Phased build — edit carefully
/* ======================================================
   CLÍNICA PLASTIQUÈ — DESIGN SYSTEM CSS
   Surgical Elegance | Ivory + Charcoal + Gold
   ====================================================== */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', -apple-system, sans-serif; color: #2C2825; background: #FAF7F2; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* anchor jumps land below the fixed navbar */
section[id], [id].section { scroll-margin-top: 96px; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* Custom Elements Default */
site-navbar, site-footer { display: block; }

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  /* Colors */
  --ivory: #FAF7F2;
  --charcoal: #2C2825;
  --gold: #C9A96E;
  --gold-dark: #B8953D;
  --rose: #E8D5CC;
  --sage: #8FA68D;
  --terracotta: #C4917A;
  --forest: #3D5A47;
  --white: #FFFFFF;
  --success: #4A7C59;
  --warning: #D4A34A;
  --error: #C4564A;

  /* Typography Scale 1.333 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.333rem;
  --text-2xl: 1.777rem;
  --text-3xl: 2.369rem;
  --text-4xl: 3.157rem;
  --text-5xl: 4.209rem;
  --text-hero: 5.61rem;

  /* Spacing 8pt */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 80px; --sp-10: 120px; --sp-11: 160px;

  /* Easing */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; color: var(--charcoal); }
h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; }
h1 { font-size: var(--text-5xl); line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: var(--text-4xl); line-height: 1.15; }
h3 { font-size: var(--text-3xl); line-height: 1.2; font-weight: 600; }
h4 { font-size: var(--text-2xl); line-height: 1.3; }
p { font-size: var(--text-base); line-height: 1.7; color: #4A4542; }
.lead { font-size: var(--text-lg); line-height: 1.7; }
.caption { font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.02em; }
.label-tag { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* --- LAYOUT --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-5); }
.section { padding: var(--sp-9) 0; }
.section--lg { padding: var(--sp-10) 0; }
.section--alt { background: var(--white); }
.section--rose { background: rgba(232,213,204,0.2); }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark p { color: rgba(250,247,242,0.8); }

.grid-65-35 { display: grid; grid-template-columns: 1fr 0.54fr; gap: var(--sp-7); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.grid-3 > :nth-child(3n+2) { transform: translateY(40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.grid-4 > :nth-child(even) { transform: translateY(32px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section Header */
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--sp-7); }
.section-header .label-tag { margin-bottom: var(--sp-3); display: block; }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p { color: #6B6560; }

/* Premium Divider */
.elegant-divider {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-2) 0 var(--sp-5);
  color: var(--gold);
}
.elegant-divider .elegant-line {
  height: 1.5px;
  width: 50px;
  transform: scaleX(0);
}
.elegant-divider .elegant-line.left {
  background: linear-gradient(to right, transparent, var(--gold));
  transform-origin: right;
}
.elegant-divider .elegant-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
  transform-origin: left;
}
.elegant-divider svg {
  width: 14px;
  height: 14px;
  opacity: 0;
}
[data-reveal].visible .elegant-line {
  animation: expandLine 1s var(--ease-expo) forwards;
  animation-delay: 0.3s;
}
[data-reveal].visible.elegant-divider svg {
  animation: sparkPop 1s var(--ease-spring) forwards, pulseGlow 4s ease-in-out infinite 1.3s;
  animation-delay: 0.6s;
}

@keyframes expandLine {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes sparkPop {
  0% { opacity: 0; transform: scale(0) rotate(-45deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(201,169,110,0)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 6px rgba(201,169,110,0.8)); transform: scale(1.15); }
}

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; gap: var(--sp-2); font-family: 'DM Sans', sans-serif; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; transition: all 0.4s var(--ease-expo); }
.btn-primary { background: var(--gold); color: var(--charcoal); padding: var(--sp-4) var(--sp-6); border: none; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }
.btn-secondary { background: transparent; color: var(--charcoal); padding: 14px 28px; border: 1.5px solid var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--ivory); }
.btn-outline-gold { background: transparent; color: var(--charcoal); padding: var(--sp-4) var(--sp-6); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: white; box-shadow: 0 8px 24px rgba(201,169,110,0.35); transform: translateY(-2px); }
.btn-ghost { background: none; border: none; color: var(--gold); padding: var(--sp-2) 0; position: relative; }
.btn-ghost::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.4s var(--ease-expo); }
.btn-ghost:hover::after { width: 100%; }
.btn-whatsapp { background: #25D366; color: #fff; padding: var(--sp-4) var(--sp-5); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

/* --- NAVBAR --- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: var(--sp-5) 0; transition: all 0.4s var(--ease-expo); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
/* Light text by default (over dark hero) */
.navbar-logo { font-family: 'Cormorant Garamond', serif; font-size: var(--text-2xl); font-weight: 500; letter-spacing: 0.04em; color: var(--ivory); transition: color 0.4s; }
.navbar-logo span { color: var(--gold); }
.navbar-links { display: flex; align-items: center; gap: var(--sp-6); }
.navbar-links a { font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.04em; position: relative; transition: color 0.3s; color: rgba(250,247,242,0.85); }
.navbar-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.4s var(--ease-expo); }
.navbar-links a:hover { color: var(--gold); }
.navbar-links a:hover::after { width: 100%; }
.navbar-links .btn-primary { color: var(--charcoal); }
/* Scrolled state — solid bg + dark text */
.navbar.scrolled { background: rgba(250,247,242,0.97); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(44,40,37,0.08); padding: var(--sp-3) 0; }
.navbar.scrolled .navbar-logo { color: var(--charcoal); }
.navbar.scrolled .navbar-links a { color: var(--charcoal); }
.navbar.scrolled .navbar-links a:hover { color: var(--gold); }
.navbar.scrolled .navbar-links .btn-primary { color: var(--charcoal); }

/* Mobile menu toggle — animated hamburger to X */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; z-index: 1100; position: relative; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: all 0.4s var(--ease-expo); transform-origin: center; }
.navbar.scrolled .menu-toggle span { background: var(--charcoal); }
/* X animation when open */
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-toggle.open span { background: var(--ivory) !important; }

/* Full-screen mobile nav overlay */
@media (max-width: 768px) {
  .navbar-links {
    display: flex !important; /* always present in DOM */
    flex-direction: column;
    justify-content: flex-start; /* changed from center to flex-start to allow proper scroll */
    align-items: flex-start;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    padding: 95px var(--sp-6) var(--sp-5);
    gap: 0;
    z-index: 1050;
    overflow-y: auto;
    overflow-x: hidden;
    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: opacity 0.5s var(--ease-expo), clip-path 0.55s var(--ease-expo);
  }
  .navbar-links.open {
    opacity: 1;
    pointer-events: all;
    clip-path: inset(0 0 0% 0);
  }
  /* Individual nav links */
  .navbar-links a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(250,247,242,0.55);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,169,110,0.1);
    width: 100%;
    transition: color 0.3s, padding-left 0.3s var(--ease-expo);
    transform: translateY(20px);
    opacity: 0;
    transition: color 0.3s, padding-left 0.3s var(--ease-expo), transform 0.5s var(--ease-expo), opacity 0.5s var(--ease-expo);
  }
  .navbar-links a::after { display: none; }
  .navbar-links a:hover { color: var(--gold); padding-left: var(--sp-3); }
  /* Stagger reveal each link when open */
  .navbar-links.open a { transform: translateY(0); opacity: 1; }
  .navbar-links.open a:nth-child(1) { transition-delay: 0.05s; }
  .navbar-links.open a:nth-child(2) { transition-delay: 0.1s; }
  .navbar-links.open a:nth-child(3) { transition-delay: 0.15s; }
  .navbar-links.open a:nth-child(4) { transition-delay: 0.2s; }
  .navbar-links.open a:nth-child(5) { transition-delay: 0.25s; }
  .navbar-links.open a:nth-child(6) { transition-delay: 0.3s; }
  /* CTA button */
  .navbar-links .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--charcoal) !important;
    background: var(--gold);
    border: none;
    padding: 15px 24px;
    margin-top: var(--sp-4);
    margin-bottom: 0;
    border-bottom: none;
    border-radius: 0;
    transition-delay: 0.35s;
    width: auto;
    align-self: flex-start;
  }
  .navbar-links .btn-primary:hover { background: var(--gold-dark); padding-left: 32px; color: var(--charcoal) !important; }
  /* Decorative gold label at top of overlay */
  .navbar-links::before {
    content: 'Navegação';
    position: absolute;
    top: 65px;
    left: var(--sp-6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
  }
  /* Decorative element bottom-right */
  .navbar-links::after {
    content: 'Plastiquè';
    position: absolute;
    bottom: var(--sp-4);
    right: var(--sp-5);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(201,169,110,0.15);
    letter-spacing: 0.05em;
  }
}

/* --- HERO --- */
.hero { position: relative; height: 100vh; display: flex; align-items: stretch; overflow: hidden; background: var(--charcoal); }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); z-index: 2; opacity: 0.5; pointer-events: none; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.06; z-index: 1; }
.hero-pattern svg { width: 100%; height: 100%; }

/* Hero Split Layout — full bleed grid */
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; height: 100%; }

/* Left: Content */
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: var(--sp-9) var(--sp-7) var(--sp-7); padding-left: max(var(--sp-5), calc((100vw - 1280px) / 2 + var(--sp-5))); position: relative; }
.hero-content .label-tag { color: var(--gold); margin-bottom: var(--sp-4); display: inline-flex; align-items: center; gap: var(--sp-3); }
.hero-content .label-tag::before { content: ''; display: inline-block; width: 32px; height: 1.5px; background: var(--gold); }
.hero h1 { color: var(--ivory); font-size: clamp(2.6rem, 4.5vw, 4.8rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: var(--text-base); color: rgba(250,247,242,0.65); max-width: 480px; margin-bottom: var(--sp-5); line-height: 1.7; }
.hero-ctas { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 16px 32px; font-size: var(--text-xs); }
.hero-ctas .btn-whatsapp { font-size: var(--text-xs); }
.hero-ctas .btn-ghost { color: var(--ivory); }
.hero-ctas .btn-ghost::after { background: var(--ivory); }

/* Trust Bar */
.trust-bar { display: flex; gap: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid rgba(201,169,110,0.2); }
.trust-item { display: flex; align-items: center; gap: var(--sp-2); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-item span { font-size: 11px; color: rgba(250,247,242,0.55); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* Right: Image Area */
.hero-visual { position: relative; overflow: hidden; background: var(--charcoal); }
.hero-visual-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.9; }
.hero-visual-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(26,26,26,0.85) 100%); mix-blend-mode: multiply; }
.hero-visual-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--sp-7); background: linear-gradient(to top, rgba(26,26,26,0.6) 0%, transparent 40%); }

/* Floating badges on hero visual */
.hero-badge { background: rgba(250,247,242,0.95); padding: var(--sp-4) var(--sp-5); display: inline-flex; align-items: center; gap: var(--sp-3); box-shadow: 0 8px 30px rgba(0,0,0,0.12); max-width: fit-content; }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.hero-badge-text { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--charcoal); }
.hero-badge-sub { font-size: 11px; color: #6B6560; font-weight: 400; text-transform: none; letter-spacing: 0; display: block; margin-top: 2px; }

/* Decorative elements on hero */
.hero-deco-line { position: absolute; top: 15%; right: 0; width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); z-index: 2; opacity: 0.4; }
.hero-deco-circle { position: absolute; bottom: 20%; left: -40px; width: 80px; height: 80px; border: 1px solid rgba(201,169,110,0.3); border-radius: 50%; z-index: 2; }
.hero-deco-text { position: absolute; top: 25%; right: var(--sp-7); writing-mode: vertical-rl; font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,169,110,0.4); z-index: 2; }



/* Google rating badge */
.hero-rating { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.hero-rating-stars { display: flex; gap: 2px; color: var(--gold); font-size: var(--text-sm); }
.hero-rating-text { font-size: 11px; color: rgba(250,247,242,0.45); letter-spacing: 0.02em; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: var(--sp-6); left: var(--sp-7); z-index: 3; display: flex; align-items: center; gap: var(--sp-3); }
.scroll-indicator span { font-size: var(--text-xs); color: rgba(250,247,242,0.35); letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 40px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleX(0.6); transform-origin: left; } 50% { opacity: 1; transform: scaleX(1); } }

/* Hero badge animations */
.hero-badge { animation: floatBadge 4s ease-in-out infinite; }
.hero-badge:nth-child(2) { animation-delay: 1s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* --- PROCEDURE CARDS --- */
.procedure-card { background: var(--white); overflow: hidden; transition: all 0.5s var(--ease-expo); position: relative; display: flex; flex-direction: column; }
.procedure-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(44,40,37,0.12); }
.procedure-card-img { position: relative; overflow: hidden; height: 260px; background: var(--rose); flex-shrink: 0; }
.procedure-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-expo); }
.procedure-card:hover .procedure-card-img img { transform: scale(1.05); }
.procedure-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(44,40,37,0.5), transparent); }
.procedure-card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex-grow: 1; }
.procedure-card-body .label-tag { margin-bottom: var(--sp-2); }
.procedure-card-body h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.procedure-card-body p { font-size: var(--text-sm); color: #6B6560; margin-bottom: var(--sp-4); line-height: 1.6; }
.procedure-card-divider { width: 40px; height: 1.5px; background: var(--gold); margin-bottom: var(--sp-4); margin-top: auto; }
.procedure-card-body .btn-ghost { align-self: flex-start; }

/* Tab Navigation */
.tab-nav { display: flex; gap: var(--sp-5); margin-bottom: var(--sp-7); justify-content: center; flex-wrap: wrap; }
.tab-nav button { background: none; border: none; font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.04em; color: #6B6560; padding: var(--sp-2) var(--sp-4); border-bottom: 2px solid transparent; transition: all 0.3s; }
.tab-nav button.active, .tab-nav button:hover { color: var(--charcoal); border-bottom-color: var(--gold); }

/* --- DOCTOR CARDS --- */
.doctor-card { display: flex; gap: var(--sp-5); padding: var(--sp-6); background: var(--white); border: 1px solid rgba(201,169,110,0.2); transition: all 0.4s var(--ease-expo); }
.doctor-card:hover { box-shadow: 0 12px 36px rgba(44,40,37,0.08); border-color: var(--gold); }
.doctor-photo { width: 120px; height: 120px; background: var(--rose); flex-shrink: 0; overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-info h3 { font-size: var(--text-xl); margin-bottom: var(--sp-1); font-family: 'Cormorant Garamond', serif; }
.doctor-info .doctor-title { font-size: var(--text-sm); color: var(--gold); font-weight: 500; margin-bottom: var(--sp-3); }
.doctor-info p { font-size: var(--text-sm); color: #6B6560; margin-bottom: var(--sp-3); }

/* --- TESTIMONIALS --- */
.testimonial-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); }
.testimonial-card { padding: var(--sp-8) var(--sp-6); background: var(--white); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; min-height: 400px; border: 1px solid rgba(201,169,110,0.15); border-radius: 4px; z-index: 1; transition: transform 0.5s var(--ease-expo), box-shadow 0.5s; cursor: default; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(44,40,37,0.08); }
.testimonial-card.staggered { margin-top: 40px; }
.testimonial-bg-quote { position: absolute; top: -20px; left: 10px; font-family: 'Cormorant Garamond', serif; font-size: 200px; color: rgba(201,169,110,0.1); line-height: 1; z-index: -1; pointer-events: none; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.35rem; line-height: 1.6; color: var(--charcoal); margin-bottom: var(--sp-6); position: relative; }
.testimonial-author-block { display: flex; align-items: center; gap: var(--sp-4); padding-top: var(--sp-5); border-top: 1px solid rgba(201,169,110,0.2); }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-author { font-size: 1rem; font-weight: 700; color: var(--charcoal); font-family: 'DM Sans', sans-serif; letter-spacing: 0.02em; }
.testimonial-meta { font-size: 0.85rem; color: #6B6560; margin-top: 2px; }
.testimonial-stars { display: flex; gap: 2px; margin-top: 4px; color: var(--gold); }
.testimonial-stars svg { width: 14px; height: 14px; }

/* --- NUMBERS / STATS --- */
.stat-item { text-align: center; padding: var(--sp-6); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: var(--text-5xl); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: var(--sp-2); }
.stat-label { font-size: var(--text-sm); color: rgba(250,247,242,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(201,169,110,0.2); }
.stats-grid { display: flex; justify-content: center; gap: var(--sp-9); }

/* --- TIMELINE --- */
.timeline { position: relative; padding-left: var(--sp-7); }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 1.5px; background: linear-gradient(to bottom, var(--gold), var(--rose)); }
.timeline-item { position: relative; margin-bottom: var(--sp-7); }
.timeline-dot { position: absolute; left: calc(-1 * var(--sp-7) + 6px); top: 6px; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 2px solid var(--ivory); }
.timeline-item h4 { font-size: var(--text-lg); font-family: 'Cormorant Garamond', serif; font-weight: 600; margin-bottom: var(--sp-1); }
.timeline-item .timeline-year { font-size: var(--text-sm); color: var(--gold); font-weight: 700; margin-bottom: var(--sp-2); display: block; }
.timeline-item p { font-size: var(--text-sm); color: #6B6560; }

/* --- BLOG / REVISTA --- */
.blog-grid-standard { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); }
.blog-card { text-decoration: none; display: flex; flex-direction: column; height: 100%; background: var(--ivory); border: 1px solid rgba(201,169,110,0.15); border-radius: 4px; overflow: hidden; transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(44,40,37,0.06); }
.blog-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 16/10; width: 100%; border-bottom: 1px solid rgba(201,169,110,0.1); }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-expo); display: block; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.05); }
.blog-category-pill { position: absolute; top: var(--sp-4); left: var(--sp-4); background: var(--white); color: var(--charcoal); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 6px 14px; border-radius: 50px; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.blog-card-content { padding: var(--sp-6); display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; line-height: 1.25; color: var(--charcoal); margin-bottom: var(--sp-3); transition: color 0.3s; }
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { font-size: 1rem; color: #6B6560; line-height: 1.6; margin-bottom: var(--sp-5); flex: 1; }
.blog-meta-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(201,169,110,0.15); padding-top: var(--sp-4); margin-top: auto; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #8A847F; }


/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--rose); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-5) 0; cursor: pointer; width: 100%; background: none; border: none; text-align: left; font: 500 var(--text-lg) 'DM Sans', sans-serif; color: var(--charcoal); transition: color 0.3s; }
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: var(--text-xl); color: var(--gold); transition: transform 0.4s var(--ease-expo); font-weight: 300; flex-shrink: 0; margin-left: var(--sp-4); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-expo); }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 0 var(--sp-5); }
.faq-answer-inner p { font-size: var(--text-base); color: #6B6560; }

/* --- CONTACT --- */
.contact-card { padding: var(--sp-7); background: var(--white); border: 1px solid var(--rose); }
.contact-card h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-5); }
.contact-item { display: flex; gap: var(--sp-4); margin-bottom: var(--sp-5); align-items: flex-start; }
.contact-icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item p { font-size: var(--text-base); }
.contact-item a { color: var(--gold); font-weight: 500; transition: opacity 0.3s; }
.contact-item a:hover { opacity: 0.7; }

/* Form */
.form-group { margin-bottom: var(--sp-5); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--sp-2); color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: var(--sp-3) var(--sp-4); border: 1.5px solid var(--rose); background: var(--ivory); font-family: 'DM Sans', sans-serif; font-size: var(--text-base); color: var(--charcoal); transition: border-color 0.3s; border-radius: 0; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- INSTITUCIONAL (O LEGADO & EQUIPE) --- */
.inst-legacy { position: relative; background: var(--charcoal); color: var(--ivory); overflow: hidden; }
.inst-legacy-bg { position: absolute; inset: 0; z-index: 1; }
.inst-legacy-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) contrast(1.1); }
.inst-legacy-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(44,40,37,0.95) 0%, rgba(44,40,37,0.85) 50%, rgba(44,40,37,0.5) 100%); mix-blend-mode: multiply; }
.inst-legacy-title { font-size: clamp(2.5rem, 5vw, 4rem); font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; margin-bottom: var(--sp-4); color: var(--ivory); }
.inst-legacy-title em { font-style: italic; color: var(--gold); }
.inst-legacy-text { font-size: 1.125rem; line-height: 1.7; color: rgba(250,247,242,0.8); max-width: 600px; }
.inst-legacy-signature { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--gold); }
.inst-legacy-link { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--sp-5); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ivory); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.4); padding-bottom: 4px; transition: color .3s var(--ease-expo), border-color .3s, gap .3s var(--ease-expo); }
.inst-legacy-link:hover { color: var(--gold); border-color: var(--gold); gap: 14px; }
.inst-legacy-link svg { transition: transform .3s var(--ease-expo); }
.inst-legacy-link:hover svg { transform: translateX(2px); }

/* Os 3 Pilares */
.inst-pillars { display: flex; flex-direction: column; gap: var(--sp-6); border-left: 1px solid rgba(201,169,110,0.2); padding-left: var(--sp-6); margin-top: var(--sp-8); }
.pillar-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.pillar-icon { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); font-weight: 500; min-width: 30px; }
.pillar-item h4 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: var(--ivory); margin-bottom: 4px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.pillar-item p { font-size: 0.95rem; color: rgba(250,247,242,0.6); line-height: 1.5; }

/* Corpo Clínico / Editorial */
.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-bottom: var(--sp-8); }
.edit-card { display: flex; flex-direction: column; text-decoration: none; }
.edit-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--rose); margin-bottom: var(--sp-4); }
.edit-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); transition: filter 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
.edit-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,40,37,0.8) 0%, transparent 40%); opacity: 0; transition: opacity 0.5s; }
.edit-card-badge { position: absolute; bottom: var(--sp-4); left: var(--sp-4); background: var(--gold); color: var(--charcoal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 8px; transform: translateY(10px); opacity: 0; transition: all 0.5s var(--ease-expo); }
.edit-card:hover .edit-card-img img { filter: grayscale(0%) contrast(1.05); transform: scale(1.03); }
.edit-card:hover .edit-card-overlay { opacity: 1; }
.edit-card:hover .edit-card-badge { transform: translateY(0); opacity: 1; }
.edit-card-info h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 4px; transition: color 0.3s; }
.edit-card:hover .edit-card-info h3 { color: var(--gold); }
.edit-card-info p { font-size: 1rem; color: #6B6560; margin-bottom: var(--sp-3); line-height: 1.5; }
.edit-card-link { font-size: 0.875rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s; }
.edit-card:hover .edit-card-link { gap: 8px; }

/* Banner Residência */
.academic-banner { background: var(--ivory); border: 1px solid var(--rose); padding: var(--sp-7); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); margin-top: var(--sp-8); }
.academic-banner-content h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-2); }
.academic-banner-content p { color: #6B6560; font-size: 1rem; line-height: 1.6; max-width: 800px; }
.academic-banner-cta { flex-shrink: 0; }

/* --- FOOTER --- */
.footer { background: var(--charcoal); color: rgba(250,247,242,0.7); padding: var(--sp-9) 0 var(--sp-6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-7); margin-bottom: var(--sp-8); }
.footer h4 { font-family: 'Cormorant Garamond', serif; font-size: var(--text-xl); color: var(--ivory); margin-bottom: var(--sp-5); font-weight: 500; }
.footer p { font-size: var(--text-sm); line-height: 1.7; color: rgba(250,247,242,0.7); }
.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a { font-size: var(--text-sm); }
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); justify-content: center; border-top: 1px solid rgba(201,169,110,0.15); padding-top: var(--sp-5); margin-top: var(--sp-6); }
.footer-nav a { font-size: var(--text-sm); letter-spacing: 0.04em; color: rgba(250,247,242,0.75); transition: color 0.25s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,169,110,0.15); padding-top: var(--sp-5); margin-top: var(--sp-5); display: flex; justify-content: space-between; align-items: center; font-size: var(--text-xs); }
.footer-credit { text-align: center; margin-top: var(--sp-4); font-size: var(--text-xs); color: rgba(250,247,242,0.5); }
.footer-credit a { color: rgba(250,247,242,0.7); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.3); transition: color 0.25s, border-color 0.25s; }
.footer-credit a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social { display: flex; gap: var(--sp-4); }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(201,169,110,0.25); transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-social a svg { width: 18px; height: 18px; }

/* --- WHATSAPP FLOATING --- */
.whatsapp-float { position: fixed; bottom: var(--sp-6); right: var(--sp-6); z-index: 999; width: 56px; height: 56px; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); transition: all 0.3s var(--ease-spring); border-radius: 0; }
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; color: white; }

/* --- SCROLL REVEAL --- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-left] { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
[data-reveal-left].visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0ms !important; }
.stagger-2 { transition-delay: 100ms !important; }
.stagger-3 { transition-delay: 200ms !important; }
.stagger-4 { transition-delay: 300ms !important; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-left] { opacity: 1; transform: none; transition: none; }
}

/* --- BEFORE/AFTER GALLERY --- */
.ba-slider { position: relative; overflow: hidden; cursor: col-resize; height: 400px; background: var(--rose); touch-action: pan-y; user-select: none; }
.ba-slider img, .ba-slider .ba-before, .ba-slider .ba-after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); z-index: 1; }
.ba-slider .ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); z-index: 2; pointer-events: none; }
.ba-slider .ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: var(--gold); display: flex; align-items: center; justify-content: center; z-index: 3; pointer-events: none; }
.ba-slider .ba-handle svg { width: 20px; height: 20px; color: var(--charcoal); }
.ba-label { position: absolute; bottom: var(--sp-4); padding: var(--sp-2) var(--sp-3); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2; }
.ba-label--before { left: var(--sp-4); background: rgba(44,40,37,0.7); color: var(--ivory); }
.ba-label--after { right: var(--sp-4); background: rgba(201,169,110,0.9); color: var(--charcoal); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  h1 { font-size: var(--text-4xl); }
  .hero h1 { font-size: var(--text-5xl); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 300px; }
  .hero-content { padding: var(--sp-10) 0 var(--sp-7); }
  .grid-65-35 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 > :nth-child(even) { transform: translateY(24px); }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 > :nth-child(3n+2) { transform: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --text-hero: 3.5rem; --text-5xl: 2.8rem; --text-4xl: 2.2rem; --text-3xl: 1.8rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 > :nth-child(even) { transform: translateY(20px); }
  .section { padding: var(--sp-8) 0; }
  .section--lg { padding: var(--sp-9) 0; }
  /* Mobile menu overlay — handled in the dedicated @media block above (clip-path overlay) */
  .menu-toggle { display: flex; }

  .hero { height: auto; min-height: 100vh; overflow: visible; display: flex; flex-direction: column; }
  .hero-inner { display: flex; flex-direction: column; height: auto; }
  .hero-content { padding: 120px var(--sp-5) var(--sp-6); order: 1; z-index: 10; }

  /* --- Mobile: Hide hero photo, show credentials block --- */
  .hero-visual { order: 2; position: relative; min-height: 0; background: var(--charcoal); border-top: 1px solid rgba(201,169,110,0.15); }
  .hero-visual-bg { display: none; } /* hide the woman photo on mobile */
  .hero-deco-line, .hero-deco-circle, .hero-deco-text { display: none; }
  .hero-visual-overlay { 
    position: relative; 
    inset: auto;
    padding: var(--sp-7) var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    background: none;
    z-index: 5;
    justify-content: flex-start;
  }
  /* Small section header above badges */
  .hero-visual-overlay::before {
    content: 'Nossas Credenciais';
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-2);
  }
  .hero-badge { 
    width: 100%; 
    max-width: 100%; 
    margin-bottom: 0;
    animation: none;
    background: rgba(250,247,242,0.04); 
    border: 1px solid rgba(201,169,110,0.2); 
    box-shadow: none;
    border-radius: 4px; 
    padding: var(--sp-5) var(--sp-5);
  }
  .hero-badge svg { color: var(--gold); }
  .hero-badge-text { color: var(--ivory); font-size: 0.8rem; letter-spacing: 0.08em; }
  .hero-badge-sub { color: rgba(250,247,242,0.55); }

  .hero h1 { font-size: 2.6rem; margin-bottom: var(--sp-4); }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; margin-bottom: var(--sp-4); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-bar { 
    display: flex; 
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-4) var(--sp-6);
    padding-top: var(--sp-5);
    margin-top: var(--sp-4);
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .grid-3, .grid-2, .grid-4, .editorial-grid, .testimonial-layout { grid-template-columns: 1fr; }
  .grid-4 > :nth-child(even) { transform: none; }
  .testimonial-card .servicos-grid { grid-template-columns: 1fr; }
  .blog-grid-standard { grid-template-columns: 1fr; }
  .testimonial-card.staggered { margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-compact { grid-template-columns: 1fr; }
  .blog-compact .blog-img-wrapper { aspect-ratio: 16/9; margin-bottom: var(--sp-4); }
  .newsletter-form { flex-direction: column; width: 100%; }
  .section-header[style*="flex"] { flex-direction: column; align-items: flex-start !important; gap: var(--sp-4); }
  .academic-banner { flex-direction: column; align-items: flex-start; }
  .stats-grid { flex-direction: column; gap: var(--sp-6); }
  .stat-divider { width: 40px; height: 1px; margin: 0 auto; }
  .doctor-card { flex-direction: column; }
  .doctor-photo { width: 100%; height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .scroll-indicator { display: none; }
}

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

/* === GOOGLE REVIEWS (depoimentos) === */
.reviews-summary { display:flex; align-items:center; justify-content:center; gap:var(--sp-6); flex-wrap:wrap; margin:var(--sp-7) auto var(--sp-8); padding:var(--sp-5) var(--sp-6); background:var(--white); border:1px solid rgba(201,169,110,0.18); border-radius:6px; box-shadow:0 12px 40px rgba(44,40,37,0.05); max-width:780px; }
.reviews-summary-score { display:flex; align-items:center; gap:var(--sp-4); }
.reviews-score-num { font-family:'Cormorant Garamond',serif; font-size:3.4rem; line-height:1; color:var(--charcoal); font-weight:600; }
.reviews-score-meta { display:flex; flex-direction:column; gap:5px; }
.reviews-stars-row { display:flex; gap:3px; color:var(--gold); }
.reviews-stars-row svg { width:18px; height:18px; }
.reviews-score-label { font-size:.78rem; color:#6B6560; font-family:'DM Sans',sans-serif; letter-spacing:.02em; }
.reviews-divider { width:1px; align-self:stretch; min-height:48px; background:rgba(201,169,110,0.25); }
.reviews-google { display:flex; align-items:center; gap:10px; font-family:'DM Sans',sans-serif; font-size:.82rem; color:var(--charcoal); line-height:1.2; }
.reviews-google .review-gicon { width:26px; height:26px; }
.review-gicon { display:inline-flex; width:17px; height:17px; flex-shrink:0; vertical-align:middle; }
.review-gicon svg { width:100%; height:100%; }

.reviews-carousel { position:relative; max-width:1180px; margin:0 auto; }
.rc-viewport { overflow:hidden; }
.rc-track { display:flex; align-items:stretch; transition:transform .6s var(--ease-expo); }
.rc-slide { flex:0 0 33.333%; min-width:33.333%; padding:var(--sp-3); box-sizing:border-box; }
.rc-card { position:relative; height:100%; display:flex; flex-direction:column; justify-content:space-between; min-height:300px; background:var(--white); border:1px solid rgba(201,169,110,0.18); border-radius:8px; box-shadow:0 14px 40px rgba(44,40,37,0.06); padding:var(--sp-7) var(--sp-6); }
.rc-quote { position:absolute; top:2px; left:18px; font-family:'Cormorant Garamond',serif; font-size:4.5rem; line-height:1; color:rgba(201,169,110,0.16); pointer-events:none; }
.rc-text { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.12rem; line-height:1.55; color:var(--charcoal); margin:var(--sp-4) 0 var(--sp-5); position:relative; z-index:1; display:-webkit-box; -webkit-line-clamp:9; -webkit-box-orient:vertical; overflow:hidden; }
.rc-foot { display:flex; align-items:center; gap:var(--sp-3); padding-top:var(--sp-4); border-top:1px solid rgba(201,169,110,0.18); }
.rc-avatar { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-weight:600; color:#fff; flex-shrink:0; }
.rc-id { flex:1; min-width:0; }
.rc-name { font-family:'DM Sans',sans-serif; font-weight:700; font-size:.9rem; color:var(--charcoal); display:flex; align-items:center; gap:7px; flex-wrap:wrap; }
.rc-sub { font-size:.72rem; color:#8A847F; font-family:'DM Sans',sans-serif; margin-top:2px; }
.rc-stars { display:flex; gap:2px; color:var(--gold); margin-top:5px; }
.rc-stars svg { width:14px; height:14px; }
.rc-new { font-size:.56rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#fff; background:var(--gold-dark); padding:2px 6px; border-radius:3px; }
.av-gold{background:linear-gradient(135deg,#C9A96E,#B8953D);} .av-charcoal{background:linear-gradient(135deg,#4A4542,#2C2825);} .av-terra{background:linear-gradient(135deg,#C08552,#9C6B43);} .av-sage{background:linear-gradient(135deg,#8FA68D,#5E7A5C);} .av-rose{background:linear-gradient(135deg,#C98B8B,#A86A6A);}
.rc-arrow { position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%; background:var(--white); border:1px solid rgba(201,169,110,0.3); color:var(--charcoal); display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:5; box-shadow:0 6px 20px rgba(44,40,37,0.08); transition:background .3s var(--ease-expo), transform .3s var(--ease-expo), color .3s; }
.rc-arrow svg { width:20px; height:20px; }
.rc-arrow:hover { background:var(--gold); border-color:var(--gold); color:var(--charcoal); transform:translateY(-50%) scale(1.07); }
.rc-prev { left:-20px; } .rc-next { right:-20px; }
.rc-dots { display:flex; justify-content:center; gap:9px; margin-top:var(--sp-6); }
.rc-dots button { width:8px; height:8px; border-radius:50%; border:none; background:rgba(201,169,110,0.35); cursor:pointer; padding:0; transition:all .35s var(--ease-expo); }
.rc-dots button.active { background:var(--gold-dark); width:26px; border-radius:5px; }
@media (max-width:1024px){ .rc-slide{ flex-basis:50%; min-width:50%; } .rc-prev{left:2px;} .rc-next{right:2px;} .rc-arrow{background:rgba(255,255,255,0.92);} }
@media (max-width:768px){ .reviews-summary{ flex-direction:column; gap:var(--sp-4); text-align:center; } .reviews-divider{ display:none; } .rc-slide{ flex-basis:100%; min-width:100%; } .rc-text{ font-size:1.15rem; -webkit-line-clamp:12; } .rc-card{ padding:var(--sp-6) var(--sp-5); } .rc-arrow{ width:40px; height:40px; } }

/* === CONTEÚDO RELACIONADO (internal linking) === */
.related-content { background: var(--ivory); border-top: 1px solid rgba(201,169,110,0.18); padding: var(--sp-8) 0; }
.related-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--charcoal); text-align: center; margin-bottom: var(--sp-7); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--sp-4); max-width: 1100px; margin: 0 auto; }
.related-card { display: flex; flex-direction: column; gap: 9px; background: #fff; border: 1px solid rgba(201,169,110,0.2); border-radius: 12px; padding: var(--sp-5); text-decoration: none; transition: transform .35s var(--ease-expo), box-shadow .35s, border-color .35s; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,40,37,0.1); border-color: var(--gold); }
.related-kind { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }
.related-name { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; color: var(--charcoal); line-height: 1.3; transition: color .25s; }
.related-card:hover .related-name { color: var(--gold-dark); }
@media (max-width:560px){ .related-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); } .related-card { padding: var(--sp-4); } .related-name { font-size: 1.02rem; } }
