/* ============================================
   RENNOVA - PREMIUM MEDICAL AESTHETIC
   Design System & Styles
   ============================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  /* Color Palette - Premium Brown/Beige/Nude */
  --brand-brown: #8B5A2B;
  --brand-brown-dark: #3B2416;
  --brand-brown-light: #5C3D2E;
  --brand-beige: #E9DDD3;
  --brand-beige-light: #F5F0EB;
  --brand-beige-warm: #F0E8E0;
  --brand-nude: #D8B39A;
  --brand-amber: #B8860B;
  --brand-amber-soft: #C4956A;
  --brand-cream: #FAF7F4;
  --brand-white: #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-section: 7rem;

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

  /* Shadows - Soft & Elegant */
  --shadow-xs: 0 1px 3px rgba(59, 36, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(59, 36, 22, 0.06);
  --shadow-md: 0 4px 16px rgba(59, 36, 22, 0.08);
  --shadow-lg: 0 8px 32px rgba(59, 36, 22, 0.10);
  --shadow-xl: 0 16px 48px rgba(59, 36, 22, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brand-brown-dark);
  background-color: var(--brand-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

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

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

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

ul {
  list-style: none;
}

/* ===================== UTILITY CLASSES ===================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.icon--arrow {
  transition: transform var(--transition-base);
}

.btn:hover .icon--arrow {
  transform: translateX(4px);
}

.hide-mobile { display: inline; }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }
}

/* ===================== TYPOGRAPHY ===================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-amber-soft);
  margin-bottom: var(--space-sm);
}

.section-label--light {
  color: var(--brand-nude);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--brand-brown-dark);
  margin-bottom: var(--space-md);
}

.section-title--light {
  color: var(--brand-white);
}

.section-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(59, 36, 22, 0.7);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--space-2xl);
}

.section-header .section-title {
  margin-bottom: var(--space-sm);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-brown-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(59, 36, 22, 0.6);
  margin-top: 0.25rem;
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--brand-brown-dark);
  color: var(--brand-white);
  padding: 0.875rem 1.75rem;
  border: none;
}

.btn--primary:hover {
  background-color: var(--brand-brown);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1.5px solid var(--brand-brown-dark);
  color: var(--brand-brown-dark);
  padding: 0.875rem 1.75rem;
  background: transparent;
}

.btn--outline:hover {
  background-color: var(--brand-brown-dark);
  color: var(--brand-white);
}

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--brand-white);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost {
  border: 1.5px solid rgba(59, 36, 22, 0.2);
  color: var(--brand-brown-dark);
  padding: 0.875rem 1.75rem;
  background: transparent;
}

.btn--ghost:hover {
  background-color: rgba(59, 36, 22, 0.05);
  border-color: var(--brand-brown-dark);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 2rem;
  transition: all var(--transition-base);
}

.header.scrolled .header__inner {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 48px;
  width: auto;
}

.header__cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background-color: var(--brand-beige-light);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__bg-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero__bg-decor--1 {
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(216, 179, 154, 0.25) 0%, transparent 70%);
  filter: blur(80px);
}

.hero__bg-decor--2 {
  bottom: -30%;
  left: -15%;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.08) 0%, transparent 70%);
  filter: blur(100px);
}

.hero__bg-decor--3 {
  top: 40%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
  filter: blur(60px);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 7fr 5fr;
    gap: var(--space-3xl);
  }
}

.hero__content {
  max-width: 36rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--brand-amber-soft);
}

.hero__eyebrow-text {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-amber-soft);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brand-brown-dark);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(59, 36, 22, 0.75);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 32rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) warm();
}

.hero__stat-card {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(59, 36, 22, 0.05);
}

.hero__seal {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__seal-icon {
  width: 100%;
  height: 100%;
  color: var(--brand-nude);
  opacity: 0.6;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand-brown-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 2rem) 0 3rem;
  }

  .hero__visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__stat-card {
    bottom: -1rem;
    left: -0.75rem;
    padding: 1rem 1.25rem;
  }

  .hero__seal {
    width: 60px;
    height: 60px;
    top: -1rem;
    right: -1rem;
  }
}

/* ===================== PAIN POINTS ===================== */
.pain-points {
  padding: var(--space-section) 0;
  background-color: var(--brand-white);
}

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .pain-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pain-points__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.pain-card {
  background-color: var(--brand-beige-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.pain-card:hover {
  border-color: rgba(59, 36, 22, 0.08);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pain-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background-color: rgba(59, 36, 22, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background-color var(--transition-base);
}

.pain-card:hover .pain-card__icon {
  background-color: rgba(59, 36, 22, 0.08);
}

.pain-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-brown);
}

.pain-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  margin-bottom: 0.375rem;
}

.pain-card__desc {
  font-size: 0.9375rem;
  color: rgba(59, 36, 22, 0.6);
  line-height: 1.6;
}

.pain-points__cta {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.pain-points__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.pain-points__quote-icon {
  width: 2rem;
  height: 2rem;
  color: var(--brand-nude);
  opacity: 0.6;
}

.pain-points__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(59, 36, 22, 0.7);
  line-height: 1.7;
}

/* ===================== CATARATA ===================== */
.catarata {
  position: relative;
  padding: var(--space-section) 0;
  background: linear-gradient(160deg, var(--brand-brown-dark) 0%, #2D1A10 50%, var(--brand-brown-light) 100%);
  color: var(--brand-white);
  overflow: hidden;
}

.catarata__bg-accent {
  position: absolute;
  top: -40%;
  right: -25%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.catarata__bg-gradient {
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
  height: 50%;
  background: radial-gradient(ellipse at bottom, rgba(216, 179, 154, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.catarata__container {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  gap: clamp(3rem, 6vw, 6rem) !important;
  align-items: center !important;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE - Content */
.catarata__left {
  max-width: 36rem;
}

.catarata__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.catarata__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--brand-amber-soft);
}

.catarata__eyebrow-text {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-amber-soft);
}

.catarata__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.catarata__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--brand-amber-soft), transparent);
  margin-bottom: var(--space-xl);
}

.catarata__text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.catarata__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.catarata__highlight-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(216, 179, 154, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catarata__highlight-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-nude);
}

.catarata__highlight-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brand-white);
  margin-bottom: 0.375rem;
}

.catarata__highlight-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.catarata__btn {
  display: inline-flex;
  gap: 0.5rem;
}

/* RIGHT SIDE - Visual */
.catarata__right {
  position: relative;
  display: flex;
  align-items: center;
}

.catarata__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.catarata__image-frame {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.catarata__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.catarata__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.05) saturate(0.85);
  transition: transform var(--transition-slow);
}

.catarata__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 26, 16, 0.85) 0%,
    rgba(45, 26, 16, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-lg);
}

.catarata__overlay-content {
  text-align: center;
  width: 100%;
}

.catarata__overlay-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto var(--space-xs);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catarata__overlay-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: rgba(255, 255, 255, 0.9);
}

.catarata__overlay-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-white);
  margin-bottom: 0.125rem;
}

.catarata__overlay-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.catarata__stat-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.catarata__stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-brown-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.catarata__stat-desc {
  font-size: 0.6875rem;
  color: rgba(59, 36, 22, 0.55);
  max-width: 7rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .catarata__stat-card {
    bottom: -1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .catarata {
    padding: calc(var(--space-section) * 0.75) 0;
  }

  .catarata__container {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }

  .catarata__left {
    order: 2;
    max-width: 100%;
  }

  .catarata__right {
    order: 1;
  }

  .catarata__visual {
    max-width: 100%;
    justify-self: auto;
  }

  .catarata__image-wrapper {
    aspect-ratio: 4/3;
    max-height: 280px;
    max-width: 100%;
  }

  .catarata__stat-card {
    right: 1rem;
    bottom: -0.75rem;
    padding: 0.875rem 1.25rem;
  }

  .catarata__stat-number {
    font-size: 1.375rem;
  }

  .catarata__stat-desc {
    max-width: 6rem;
  }

  .catarata__highlight {
    padding: var(--space-md);
  }

  .catarata__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== DIFERENCIAIS ===================== */
.diferenciais {
  padding: var(--space-section) 0;
  background-color: var(--brand-cream);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diff-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(59, 36, 22, 0.04);
  transition: all var(--transition-base);
}

.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 36, 22, 0.08);
}

.diff-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background-color: var(--brand-beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-base);
}

.diff-card:hover .diff-card__icon {
  background-color: var(--brand-beige);
}

.diff-card__icon svg {
  width: 1.625rem;
  height: 1.625rem;
  color: var(--brand-brown);
}

.diff-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  margin-bottom: 0.375rem;
}

.diff-card__desc {
  color: rgba(59, 36, 22, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.diferenciais__quote {
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(59, 36, 22, 0.08);
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-style: italic;
  color: rgba(59, 36, 22, 0.7);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===================== JORNADA ===================== */
.jornada {
  padding: var(--space-section) 0;
  background-color: var(--brand-white);
}

.jornada__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .jornada__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jornada__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journey-card {
  position: relative;
  background-color: var(--brand-beige-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid rgba(59, 36, 22, 0.04);
  transition: all var(--transition-base);
}

.journey-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 36, 22, 0.08);
}

.journey-card__step {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(59, 36, 22, 0.08);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.journey-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background-color: rgba(59, 36, 22, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.journey-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--brand-brown);
}

.journey-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  margin-bottom: 0.375rem;
}

.journey-card__desc {
  color: rgba(59, 36, 22, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.jornada__footer {
  text-align: center;
  max-width: 38rem;
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(59, 36, 22, 0.06);
}

.jornada__footer p {
  color: rgba(59, 36, 22, 0.65);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ===================== EMOCIONAL ===================== */
.emocional {
  position: relative;
  padding: var(--space-section) 0;
  background: linear-gradient(145deg, var(--brand-brown-dark) 0%, #4A3228 100%);
  color: var(--brand-white);
  overflow: hidden;
}

.emocional__bg-1 {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(216, 179, 154, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.emocional__bg-2 {
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.emocional__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .emocional__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.emocional__image {
  position: relative;
}

.emocional__image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.emocional__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) warm();
}

.emocional__quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  max-width: 18rem;
}

.emocional__quote-mark {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-nude);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.emocional__quote-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--brand-brown-dark);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.emocional__quote-author {
  font-size: 0.8125rem;
  color: rgba(59, 36, 22, 0.5);
}

.emocional__content .section-label {
  margin-bottom: var(--space-md);
}

.emocional__content .section-title {
  margin-bottom: var(--space-lg);
}

.emocional__text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.emocional__highlight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brand-nude);
  line-height: 1.7;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .emocional__quote-card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    max-width: 90%;
  }
}

/* ===================== DOCTOR ===================== */
.doctor {
  position: relative;
  padding: var(--space-section) 0;
  background-color: var(--brand-beige-light);
  overflow: hidden;
}

.doctor__bg-decor {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(216, 179, 154, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.doctor__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .doctor__container {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-3xl);
  }
}

.doctor__image {
  position: relative;
}

.doctor__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.doctor__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.doctor__stat-card {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--brand-brown-dark);
  color: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.doctor__stat-card .stat-number {
  color: var(--brand-white);
}

.doctor__stat-card .stat-label {
  color: rgba(255, 255, 255, 0.65);
}

.doctor__content .section-label {
  margin-bottom: var(--space-sm);
}

.doctor__content .section-title {
  margin-bottom: var(--space-md);
}

.doctor__bio {
  color: rgba(59, 36, 22, 0.7);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.doctor__credentials {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(59, 36, 22, 0.08);
}

.doctor__credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.doctor__credential-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background-color: rgba(59, 36, 22, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doctor__credential-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-brown);
}

.doctor__credential-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(59, 36, 22, 0.5);
  margin-bottom: 0.125rem;
}

.doctor__credential-desc {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
}

.doctor__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(59, 36, 22, 0.65);
  padding-left: var(--space-md);
  border-left: 2px solid var(--brand-nude);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .doctor__credentials {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ===================== DEPOIMENTOS ===================== */
.depoimentos {
  padding: var(--space-section) 0;
  background-color: var(--brand-cream);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .depoimentos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(59, 36, 22, 0.04);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.star {
  width: 1rem;
  height: 1rem;
  fill: var(--brand-amber-soft);
  color: var(--brand-amber-soft);
}

.testimonial-card__text {
  font-style: italic;
  font-size: 1rem;
  color: rgba(59, 36, 22, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(59, 36, 22, 0.06);
}

.testimonial-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--brand-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brand-brown);
}

.testimonial-card__name {
  font-weight: 500;
  color: var(--brand-brown-dark);
  font-size: 0.9375rem;
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: rgba(59, 36, 22, 0.5);
}

/* ===================== FAQ ===================== */
.faq {
  padding: var(--space-section) 0;
  background-color: var(--brand-white);
}

.faq__container {
  max-width: 48rem;
}

.faq .section-header {
  margin-bottom: var(--space-xl);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  background-color: var(--brand-beige-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.faq__item:hover {
  border-color: rgba(59, 36, 22, 0.06);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  transition: background-color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.faq__question:hover {
  background-color: rgba(59, 36, 22, 0.03);
}

.faq__question span {
  flex: 1;
}

.faq__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-brown);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding: 0 var(--space-lg) var(--space-md);
  color: rgba(59, 36, 22, 0.7);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===================== CLÍNICA ===================== */
.clinica {
  padding: var(--space-section) 0;
  background-color: var(--brand-cream);
}

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

@media (min-width: 1024px) {
  .clinica__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.clinica__content .section-label {
  margin-bottom: var(--space-sm);
}

.clinica__content .section-title {
  margin-bottom: var(--space-md);
}

.clinica__desc {
  color: rgba(59, 36, 22, 0.7);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.clinica__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.clinica__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.clinica__feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background-color: rgba(59, 36, 22, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clinica__feature-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--brand-brown);
}

.clinica__feature-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  margin-bottom: 0.25rem;
}

.clinica__feature-desc {
  font-size: 0.9375rem;
  color: rgba(59, 36, 22, 0.6);
  line-height: 1.6;
}

.clinica__video {
  width: 100%;
}

.clinica__video video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(59, 36, 22, 0.15);
}

/* ===================== INSTAGRAM ===================== */
.instagram {
  padding: var(--space-2xl) 0;
  background-color: var(--brand-white);
  text-align: center;
}

.instagram__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.instagram__hint {
  font-size: 0.875rem;
  color: rgba(59, 36, 22, 0.5);
}

.instagram__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  transition: color var(--transition-fast);
}

.instagram__link:hover {
  color: var(--brand-brown);
}

.instagram__link .icon {
  width: 1.375rem;
  height: 1.375rem;
}

/* ===================== LOCALIZAÇÃO ===================== */
.localizacao {
  padding: var(--space-2xl) 0;
  background-color: var(--brand-beige-light);
}

.localizacao__card {
  background: var(--brand-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .localizacao__card {
    grid-template-columns: 1fr 2fr;
    padding: var(--space-2xl);
  }
}

.localizacao__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--brand-brown-dark);
  margin-bottom: var(--space-md);
}

.localizacao__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(59, 36, 22, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.localizacao__address .icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--brand-brown);
}

.localizacao__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-brown-dark);
  font-weight: 500;
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.localizacao__phone:hover {
  color: var(--brand-brown);
}

.localizacao__phone .icon {
  color: var(--brand-brown);
}

.localizacao__directions-btn {
  margin-top: var(--space-sm);
}

.localizacao__map {
  aspect-ratio: 16/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--brand-beige);
  border: 1px solid rgba(59, 36, 22, 0.06);
}

.localizacao__map iframe {
  width: 100%;
  height: 100%;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  position: relative;
  padding: var(--space-section) 0;
  background: linear-gradient(135deg, var(--brand-brown-dark) 0%, var(--brand-brown-light) 100%);
  color: var(--brand-white);
  overflow: hidden;
  text-align: center;
}

.final-cta__bg-1 {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(216, 179, 154, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.final-cta__bg-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  background: radial-gradient(circle, rgba(59, 36, 22, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
}

.final-cta__content .section-title {
  margin-bottom: var(--space-md);
}

.final-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.final-cta__btn {
  margin-bottom: var(--space-lg);
}

.final-cta__note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

/* ===================== FOOTER ===================== */
.footer {
  background-color: var(--brand-brown-dark);
  color: var(--brand-white);
}

.footer__top {
  padding: var(--space-2xl) 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer__logo-img {
  height: 44px;
  width: auto;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 20rem;
  font-size: 0.9375rem;
}

.footer__brand .btn {
  margin-top: var(--space-sm);
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--brand-white);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
  font-size: 0.9375rem;
  line-height: 1.6;
}

a.footer__contact-item:hover {
  color: var(--brand-white);
}

.footer__contact-item .icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--brand-nude);
  opacity: 0.8;
}

.footer__services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__services-list li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer__services-list li:hover {
  color: var(--brand-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.footer__cnpj {
  color: rgba(255, 255, 255, 0.25) !important;
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
@media (max-width: 768px) {
  :root {
    --space-section: 5rem;
    --header-height: 64px;
  }

  .section-header {
    margin-bottom: var(--space-xl);
  }

  .pain-card,
  .diff-card,
  .journey-card,
  .testimonial-card {
    padding: var(--space-md);
  }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }

  .hero__buttons .btn--lg {
    width: auto;
  }

  .hero__buttons {
    gap: 0.75rem;
  }

  .faq__question {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
  }

  .faq__answer p {
    padding: 0 var(--space-md) var(--space-sm);
    font-size: 0.875rem;
  }

  .localizacao__card {
    padding: var(--space-lg);
  }
}

/* ===================== RESPONSIVE ADJUSTMENTS (max-width: 480px) ===================== */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .header__logo-img {
    height: 36px;
  }

  .header__cta {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
}

/* ===================== MOBILE-ONLY REORGANIZATION ===================== */
@media (max-width: 767px) {
  body,
  main,
  section,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span,
  li,
  a,
  button {
    text-align: center;
  }

  .container {
    padding-inline: 1.25rem;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: var(--header-height);
  }

  .header__logo {
    justify-content: flex-start;
  }

  .header__cta {
    padding: 0.55rem 0.85rem;
    min-width: 0;
  }

  .header__cta .icon {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.75rem);
  }

  .hero__container,
  .catarata__container,
  .emocional__container,
  .doctor__container,
  .clinica__container,
  .localizacao__card,
  .footer__container {
    grid-template-columns: 1fr !important;
  }

  .hero__content,
  .catarata__left,
  .emocional__content,
  .doctor__content,
  .clinica__content,
  .localizacao__info,
  .footer__brand,
  .footer__contact,
  .footer__services {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero__eyebrow,
  .catarata__eyebrow {
    justify-content: center;
  }

  .hero__eyebrow-line,
  .catarata__eyebrow-line {
    display: none;
  }

  .hero__subtitle,
  .section-desc,
  .clinica__desc,
  .doctor__bio,
  .footer__desc {
    margin-inline: auto;
  }

  .hero__buttons {
    flex-direction: column !important;
    align-items: stretch;
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero__buttons .btn--lg,
  .pain-points__cta .btn,
  .catarata__btn,
  .localizacao__directions-btn,
  .final-cta__btn,
  .footer__brand .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .hero__visual,
  .catarata__right,
  .emocional__image,
  .doctor__image,
  .clinica__image {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .pain-points__grid,
  .diferenciais__grid,
  .jornada__grid,
  .depoimentos__grid {
    grid-template-columns: 1fr !important;
  }

  .pain-card,
  .diff-card,
  .journey-card,
  .testimonial-card,
  .catarata__highlight,
  .clinica__feature,
  .doctor__credential,
  .testimonial-card__author,
  .localizacao__address,
  .localizacao__phone,
  .footer__contact-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pain-card__icon,
  .diff-card__icon,
  .journey-card__icon,
  .catarata__highlight-icon,
  .clinica__feature-icon,
  .doctor__credential-icon,
  .testimonial-card__avatar,
  .localizacao__address .icon,
  .footer__contact-item .icon {
    margin-inline: auto;
  }

  .testimonial-card__stars,
  .instagram__link {
    justify-content: center;
  }

  .footer__contact-list,
  .footer__services-list,
  .footer__bottom-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .doctor__credentials {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: clamp(2rem, 10vw, 4rem);
    text-align: center;
  }

  .doctor__credential {
    width: min(44%, 9rem);
  }

  .doctor__quote {
    padding-left: 0;
    padding-top: var(--space-md);
    border-left: 0;
    border-top: 2px solid var(--brand-nude);
  }

  .faq__question {
    align-items: center;
    text-align: center;
  }

  .faq__question span {
    text-align: center;
  }

  .localizacao__card {
    padding: var(--space-lg);
  }

  .localizacao__map {
    aspect-ratio: 1 / 1;
  }

  .footer__logo,
  .footer__brand .btn {
    margin-inline: auto;
  }
}
