/* ============================================================
   NATTA Odontologia Ipanema — Design System & Styles
   ============================================================ */

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

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --color-terracota: #9b562c;
  --color-terracota-dark: #7a4322;
  --color-terracota-light: #b8734a;
  --color-white: #ffffff;
  --color-green: #4b6f12;
  --color-green-light: #6a9a1e;
  --color-peach: #ffcc91;
  --color-peach-light: #ffe4c4;
  --color-orange: #ff792b;
  --color-orange-light: #ff9a5c;
  --color-black: #000000;
  --color-gray-900: #1a1a1a;
  --color-gray-800: #2d2d2d;
  --color-gray-700: #404040;
  --color-gray-600: #555555;
  --color-gray-400: #999999;
  --color-gray-300: #c4c4c4;
  --color-gray-200: #e5e5e5;
  --color-gray-100: #f5f5f5;
  --color-cream: #faf6f1;
  --color-cream-dark: #f0e8dd;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 4px 24px rgba(155, 86, 44, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(155, 86, 44, 0.16);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --navbar-height: 80px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-gray-800);
  line-height: 1.7;
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   3. Utility Classes
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terracota);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-terracota);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-5xl);
  color: var(--color-gray-900);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.8;
  max-width: 600px;
}

/* ---- Animations (scroll-triggered) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.7s; }

/* ============================================================
   4. Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-5) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  padding: var(--space-3) 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.navbar-logo img {
  height: 52px;
  width: auto;
  transition: all var(--transition-base);
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-logo img {
  height: 44px;
  filter: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-white);
  position: relative;
  padding: var(--space-1) 12px;
}

.navbar.scrolled .navbar-links a {
  color: var(--color-gray-800);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracota);
  transition: width var(--transition-base);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-terracota);
  color: var(--color-white) !important;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-cta:hover {
  background: var(--color-terracota-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 86, 44, 0.3);
}

/* Language Toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
}

.navbar.scrolled .lang-toggle {
  color: var(--color-gray-800);
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--color-gray-200);
}

.navbar.scrolled .lang-toggle:hover {
  background: var(--color-cream);
}

.lang-toggle-mobile {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  margin-top: var(--space-4);
}

.navbar-cta::after {
  display: none !important;
}

.navbar-cta svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background: var(--color-gray-800);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   5. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(155, 86, 44, 0.45) 50%,
    rgba(26, 26, 26, 0.65) 100%
  );
  z-index: 1;
}

/* Organic decorative shapes */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.08;
  filter: blur(60px);
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--color-peach);
  top: -200px;
  right: -150px;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--color-green);
  bottom: -100px;
  left: -100px;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-6);
  max-width: 900px;
}

.hero-logo {
  display: inline-block;
  margin-bottom: var(--space-10);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease-out 0.3s forwards;
}

.hero-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-7xl);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s ease-out 0.5s forwards;
}

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

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--color-peach);
  margin: 0 auto var(--space-6);
  opacity: 0;
  animation: heroFadeIn 1s ease-out 0.7s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto var(--space-10);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease-out 0.9s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-10);
  background: var(--color-terracota);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease-out 1.1s forwards;
}

.hero-cta:hover {
  background: var(--color-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 121, 43, 0.35);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeIn 1s ease-out 1.5s forwards;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================================
   6. Propósito Section
   ============================================================ */
.section-proposito {
  position: relative;
  background: var(--color-white);
  padding: var(--space-32) 0;
  overflow: hidden;
}

/* Organic wave divider at top */
.wave-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.proposito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.proposito-image-wrapper {
  position: relative;
}

.proposito-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.proposito-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proposito-image:hover img {
  transform: scale(1.03);
}

/* Decorative organic frame */
.proposito-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--color-peach);
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.proposito-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-peach-light);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.proposito-content {
  padding: var(--space-8) 0;
}

.proposito-text {
  font-size: var(--text-lg);
  color: var(--color-gray-700);
  line-height: 1.9;
  margin-bottom: var(--space-12);
}

.proposito-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  color: var(--color-terracota);
  transition: all var(--transition-base);
}

.value-item:hover .value-icon {
  background: var(--color-terracota);
  color: var(--color-white);
  transform: scale(1.08);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-content h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
}

.value-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ============================================================
   7. Quem Somos Section
   ============================================================ */
.section-equipe {
  position: relative;
  background: var(--color-cream);
  padding: var(--space-32) 0;
  overflow: hidden;
}

/* Organic background decoration */
.equipe-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--color-peach-light);
  opacity: 0.3;
  filter: blur(80px);
  z-index: 0;
}

.equipe-bg-shape-1 {
  top: -100px;
  right: -100px;
}

.equipe-bg-shape-2 {
  bottom: -100px;
  left: -100px;
}

.equipe-header {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 1;
}

.equipe-header .section-subtitle {
  margin: 0 auto;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
  position: relative;
  z-index: 1;
}

.equipe-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  position: relative;
}

.equipe-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.equipe-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.equipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.equipe-card:hover .equipe-card-image img {
  transform: scale(1.05);
}

/* Gradient overlay on image */
.equipe-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.equipe-card:hover .equipe-card-image::after {
  opacity: 1;
}

.equipe-card-content {
  padding: var(--space-8);
  text-align: center;
}

.equipe-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
}

.equipe-card-role {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: var(--color-cream);
  color: var(--color-terracota);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.equipe-card-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.equipe-card-credentials li {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.5;
  padding-left: var(--space-5);
  position: relative;
}

.equipe-card-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-peach);
  border-radius: 50%;
}

/* ============================================================
   8. Tratamentos Section
   ============================================================ */
.section-tratamentos {
  position: relative;
  background: var(--color-white);
  padding: var(--space-32) 0;
  overflow: hidden;
}

.tratamentos-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.tratamentos-header .section-subtitle {
  margin: 0 auto;
}

.tratamentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.tratamento-card {
  position: relative;
  padding: var(--space-10) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: default;
}

.tratamento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracota), var(--color-peach));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.tratamento-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.tratamento-card:hover::before {
  transform: scaleX(1);
}

.tratamento-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  fill: var(--color-terracota);
  transition: all var(--transition-base);
}

.tratamento-card:hover .tratamento-icon {
  background: var(--color-terracota);
  color: var(--color-white);
  fill: var(--color-white);
  transform: scale(1.1) rotate(-5deg);
}

.tratamento-icon svg {
  width: 36px;
  height: 36px;
}

.tratamento-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.tratamento-card p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ============================================================
   9. Resultados Section
   ============================================================ */
.section-resultados {
  position: relative;
  background: var(--color-cream);
  padding: var(--space-32) 0;
  overflow: hidden;
}

.resultados-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.resultados-header .section-subtitle {
  margin: 0 auto;
}

.resultados-carousel-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.resultados-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  background: var(--color-black);
  aspect-ratio: 4 / 5;
}

.resultado-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.resultado-slide.active {
  opacity: 1;
  position: relative;
}

.resultado-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Controls */
.resultados-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.resultado-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 50%;
  color: var(--color-gray-800);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.resultado-btn:hover {
  background: var(--color-terracota);
  border-color: var(--color-terracota);
  color: var(--color-white);
}

.resultado-btn svg {
  width: 20px;
  height: 20px;
}

/* Dots */
.resultados-dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.resultados-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-base);
}

.resultados-dots .dot.active {
  background: var(--color-terracota);
  transform: scale(1.3);
}

.resultados-dots .dot:hover {
  background: var(--color-terracota-light);
}

/* ============================================================
   10. Parallax Break Section
   ============================================================ */
.parallax-break {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-break-bg {
  position: absolute;
  inset: -50px;
  z-index: 0;
}

.parallax-break-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(155, 86, 44, 0.85) 0%,
    rgba(75, 111, 18, 0.7) 100%
  );
  z-index: 1;
}

.parallax-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-6);
}

.parallax-break-content blockquote {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.parallax-break-content blockquote::before {
  content: '"';
  display: block;
  font-size: var(--text-7xl);
  color: var(--color-peach);
  line-height: 1;
  margin-bottom: var(--space-2);
}

/* ============================================================
   10. Recomendações / Reviews Section
   ============================================================ */
.section-reviews {
  position: relative;
  background: var(--color-cream);
  padding: var(--space-32) 0;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-4);
}

.reviews-header .section-subtitle {
  margin: 0 auto;
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-12);
}

.reviews-google-badge svg {
  width: 24px;
  height: 24px;
}

.reviews-google-badge .stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
}

.reviews-google-badge .stars svg {
  width: 18px;
  height: 18px;
}

.reviews-google-badge .rating-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-800);
}

.reviews-carousel-wrapper {
  position: relative;
  margin-top: var(--space-8);
}

.reviews-carousel {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-4) var(--space-2);
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-terracota);
  flex-shrink: 0;
}

.review-author-info h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gray-900);
}

.review-author-info .review-date {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: #fbbc04;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  line-height: 1.7;
  font-style: italic;
}

.review-google-icon {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  opacity: 0.15;
}

.review-google-icon svg {
  width: 28px;
  height: 28px;
}

/* Carousel controls */
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.review-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 50%;
  color: var(--color-gray-800);
  transition: all var(--transition-base);
}

.review-btn:hover {
  background: var(--color-terracota);
  border-color: var(--color-terracota);
  color: var(--color-white);
}

.review-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   11. CTA Section
   ============================================================ */
.section-cta {
  position: relative;
  padding: var(--space-24) 0;
  background: var(--color-terracota);
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--color-peach);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-12);
  background: var(--color-white);
  color: var(--color-terracota);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   12. Footer
   ============================================================ */
.footer {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: var(--space-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  padding-right: var(--space-8);
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-6);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--color-gray-400);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-terracota);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-column ul li a {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-peach);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-terracota);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.6;
}

.footer-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-4);
  aspect-ratio: 16/9;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--text-xs);
  color: var(--color-gray-600);
}

/* ============================================================
   13. Galeria de Ambiente (inline entre seções)
   ============================================================ */
.ambiente-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  overflow: hidden;
}

.ambiente-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.ambiente-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ambiente-gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================================
   14. Mobile Navigation Overlay
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-white);
  font-weight: 400;
  transition: color var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-nav.active .mobile-nav-links a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-links a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-links a:hover {
  color: var(--color-peach);
}

/* ============================================================
   15. Responsive Design
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
  }

  .navbar-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .proposito-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .proposito-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .equipe-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .tratamentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --text-7xl: 2.75rem;
    --text-6xl: 2.25rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --space-32: 5rem;
  }

  .container, .container-wide {
    padding: 0 var(--space-5);
  }

  .equipe-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .proposito-values {
    grid-template-columns: 1fr;
  }

  .tratamentos-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .review-card {
    flex: 0 0 300px;
  }

  .parallax-break {
    height: 300px;
  }

  .parallax-break-content blockquote {
    font-size: var(--text-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .ambiente-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-logo img {
    height: 60px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --text-7xl: 2.25rem;
    --text-5xl: 1.75rem;
    --space-32: 4rem;
  }

  .hero-cta {
    padding: var(--space-3) var(--space-8);
    font-size: var(--text-sm);
  }

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

  .tratamento-card {
    padding: var(--space-8) var(--space-5);
  }

  .review-card {
    flex: 0 0 280px;
    padding: var(--space-6);
  }

  .navbar-cta {
    display: none;
  }
}
