/* ============================================
   DESIGN SYSTEM — Clínica Marlise Conceição
   Concept: Elegância Emocional
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Palette */
  --white-warm: #FDFBF8;
  --beige-soft: #EFE7DD;
  --champagne: #DCC7A1;
  --gold: #C6A46A;
  --gold-light: #D4B57E;
  --gold-warm: #CEAD72;
  --gold-pale: #E8D5B0;
  --gold-deep: #B08D52;
  --gold-glow: rgba(198, 164, 106, 0.18);
  --gold-glow-subtle: rgba(198, 164, 106, 0.08);
  --gold-glow-medium: rgba(198, 164, 106, 0.12);
  --gold-glow-strong: rgba(198, 164, 106, 0.25);
  --gold-glow-intense: rgba(198, 164, 106, 0.35);
  --gold-border: rgba(198, 164, 106, 0.22);
  --gold-border-light: rgba(220, 199, 161, 0.35);
  --gold-border-warm: rgba(206, 173, 114, 0.28);
  --gray-elegant: #3D3A36;
  --gray-secondary: #6E6A66;
  --gray-light: #B5B0AA;
  --overlay-soft: rgba(61, 58, 54, 0.45);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 140px 0;
  --container-max: 1200px;
  --container-narrow: 800px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;
  --gap-2xl: 100px;

  /* Transitions */
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-elegant: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast: 0.3s;
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadows — with golden light */
  --shadow-soft: 0 4px 30px rgba(61, 58, 54, 0.04);
  --shadow-card: 0 8px 40px rgba(61, 58, 54, 0.06);
  --shadow-elevated: 0 16px 60px rgba(61, 58, 54, 0.08);
  --shadow-gold-soft: 0 4px 24px rgba(198, 164, 106, 0.12);
  --shadow-gold-medium: 0 6px 32px rgba(198, 164, 106, 0.18);
  --shadow-gold-glow: 0 0 40px rgba(198, 164, 106, 0.15), 0 0 80px rgba(198, 164, 106, 0.06);
  --shadow-gold-border-glow: 0 0 16px rgba(198, 164, 106, 0.12);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-elegant);
  background-color: var(--white-warm);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-elegant);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
  font-style: italic;
}

h2 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  font-style: italic;
}

h3 {
  font-size: 36px;
  line-height: 1.2;
}

p {
  color: var(--gray-secondary);
  max-width: 640px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--gap-md);
  padding: 6px 18px 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(198, 164, 106, 0.04), rgba(220, 199, 161, 0.06));
}

.section-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(198, 164, 106, 0.5);
  animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(198, 164, 106, 0.4); }
  50% { box-shadow: 0 0 14px rgba(198, 164, 106, 0.7); }
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all var(--duration-normal) var(--ease-soft);
  background: transparent;
}

.nav--scrolled {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 30px rgba(61, 58, 54, 0.04);
  border-bottom: 1px solid var(--gold-border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  white-space: nowrap;
  line-height: 1;
}

.nav__brand em {
  font-style: normal;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.nav__brand-name {
  font-size: inherit;
  font-weight: 400;
  color: var(--gray-elegant);
  line-height: 1.1;
}

.nav__brand-name span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-secondary);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-elegant);
}

.nav__link:hover {
  color: var(--gray-elegant);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--champagne);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-soft);
  box-shadow: 0 0 0 0 rgba(198, 164, 106, 0);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--white-warm);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(198, 164, 106, 0.25);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gray-elegant);
  transition: all var(--duration-fast) var(--ease-soft);
  border-radius: 2px;
}

.nav__mobile-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav__mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 18px 36px;
  border-radius: 100px;
  transition: all var(--duration-normal) var(--ease-elegant);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: var(--white-warm);
  box-shadow: 0 4px 20px rgba(198, 164, 106, 0.25), 0 0 0 0 rgba(198, 164, 106, 0);
  border: 1px solid rgba(212, 181, 126, 0.3);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%, rgba(255,255,255,0.05));
  pointer-events: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-deep));
  box-shadow: 0 8px 30px rgba(198, 164, 106, 0.35), 0 0 60px rgba(198, 164, 106, 0.15);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--champagne);
  box-shadow: 0 0 0 0 rgba(198, 164, 106, 0);
}

.btn--secondary:hover {
  background: var(--gold-glow-subtle);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-border-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-elegant);
  padding: 12px 0;
  gap: 8px;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease-soft);
}

.btn--ghost:hover {
  color: var(--gold);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--white-warm);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #DDC825, transparent);
  opacity: 0.8;
}

.hero__bg-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 106, 0.10), rgba(220, 199, 161, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero__bg-accent::after {
  content: '';
  position: absolute;
  top: 300px;
  left: -600px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 199, 161, 0.06), transparent 70%);
  pointer-events: none;
}

@keyframes heroGlow {
  0% { opacity: 0.7; transform: translate(0, 0) scale(1); }
  100% { opacity: 1; transform: translate(-20px, 10px) scale(1.05); }
}

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

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--beige-soft), rgba(220, 199, 161, 0.4));
  border: 1px solid var(--gold-border-light);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-secondary);
  margin-bottom: var(--gap-lg);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(198, 164, 106, 0.08);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(198, 164, 106, 0.6);
}

.hero__title {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--gap-lg);
  max-width: 480px;
}

.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-xl);
}

.hero__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-secondary);
}

.hero__highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(198, 164, 106, 0.5);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

.hero__image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 580px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__bg-room {
  position: absolute;
  top: -130px;
  left: 0;
  bottom: 0;
  right: calc(-50vw + 50%);
  background-image: url('images/Sala (3).webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero__bg-room-overlay {
  position: absolute;
  top: -130px;
  left: 0;
  bottom: 0;
  right: calc(-50vw + 50%);
  background: 
    linear-gradient(to right, #FDFBF8 0%, rgba(253, 251, 248, 0.9) 15%, rgba(253, 251, 248, 0) 60%),
    linear-gradient(to top, #FDFBF8 0%, rgba(253, 251, 248, 0) 25%);
  z-index: 2;
  pointer-events: none;
}

.hero__portrait {
  position: relative;
  z-index: 3;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.1) 4%, black 15%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.1) 4%, black 15%);
  filter: drop-shadow(0 10px 35px rgba(61, 58, 54, 0.08));
  pointer-events: none;
  transform: scale(1.1) translateX(-105px);
  transform-origin: bottom center;
}

/* --- Identification Section --- */
.identification {
  background: var(--beige-soft);
  padding: var(--section-padding);
  position: relative;
}

.identification::before {
  display: none;
}

.identification::after {
  content: '';
  position: absolute;
  top: 80px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 106, 0.05), transparent 70%);
  pointer-events: none;
}

.identification__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--gap-2xl);
}

.identification__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.identification__header p {
  margin: 0 auto;
}

.identification__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.identification__card {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-elegant);
  border: 1px solid var(--gold-border-light);
  position: relative;
}

.identification__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-soft);
  border-radius: 2px;
}

.identification__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-soft);
  border-color: var(--champagne);
}

.identification__card:hover::after {
  opacity: 1;
}

.identification__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige-soft), rgba(220, 199, 161, 0.4));
  color: var(--gold);
  border: 1px solid var(--gold-border-light);
  box-shadow: 0 0 12px rgba(198, 164, 106, 0.08);
  transition: all var(--duration-normal) var(--ease-soft);
}

.identification__card:hover .identification__card-icon {
  box-shadow: 0 0 20px rgba(198, 164, 106, 0.2);
  border-color: var(--gold-border);
}

.identification__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.identification__card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.identification__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
  margin: 0 auto;
}

.identification__cta {
  text-align: center;
}

/* --- About Section --- */
.about {
  padding: var(--section-padding);
  background: var(--white-warm);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 106, 0.04), transparent 65%);
  pointer-events: none;
}

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

.about__image-wrapper {
  position: relative;
}

.about__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: var(--shadow-gold-glow);
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(198, 164, 106, 0.04);
}

.about__experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-gold-medium), var(--shadow-elevated);
  text-align: center;
  border: 1px solid var(--gold-border);
  overflow: hidden;
}

.about__experience-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--gold), var(--champagne));
}

.about__experience-badge .number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about__experience-badge .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-secondary);
  margin-top: 4px;
  display: block;
}

.about__content h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.about__content > p {
  margin-bottom: var(--gap-lg);
  font-size: 17px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm) var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-secondary);
}

.about__feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 164, 106, 0.1), rgba(220, 199, 161, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-border-light);
}

.about__feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  filter: drop-shadow(0 0 2px rgba(198, 164, 106, 0.3));
}

/* --- Differentials Section --- */
.differentials {
  padding: var(--section-padding);
  background: var(--beige-soft);
  position: relative;
}

.differentials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold), var(--champagne), transparent);
  opacity: 0.35;
}

.differentials::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 106, 0.04), transparent 65%);
  pointer-events: none;
}

.differentials__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--gap-2xl);
}

.differentials__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.differentials__header p {
  margin: 0 auto;
}

.differentials__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.differentials__card {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  transition: all var(--duration-normal) var(--ease-elegant);
  border: 1px solid var(--gold-border-light);
  position: relative;
  overflow: hidden;
}

.differentials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold), var(--gold-warm), var(--champagne), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-soft);
}

.differentials__card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 106, 0.05), transparent 70%);
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-soft);
  opacity: 0;
}

.differentials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-soft), var(--shadow-card);
  border-color: var(--champagne);
}

.differentials__card:hover::before {
  opacity: 1;
}

.differentials__card:hover::after {
  opacity: 1;
}

.differentials__card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--beige-soft), rgba(220, 199, 161, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-md);
  border: 1px solid var(--gold-border-light);
  box-shadow: 0 2px 10px rgba(198, 164, 106, 0.06);
  transition: all var(--duration-normal) var(--ease-soft);
}

.differentials__card:hover .differentials__card-icon {
  box-shadow: 0 4px 20px rgba(198, 164, 106, 0.15);
  border-color: var(--gold-border);
}

.differentials__card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.differentials__card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.differentials__card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-secondary);
}

.differentials__cta {
  text-align: center;
}

/* --- Process Section --- */
.process {
  padding: var(--section-padding);
  background: var(--white-warm);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold-light), var(--gold-pale), transparent);
  opacity: 0.35;
}

.process__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--gap-2xl);
}

.process__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.process__header p {
  margin: 0 auto;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold), var(--gold-warm), var(--gold), var(--champagne), transparent);
  opacity: 0.6;
  box-shadow: 0 0 8px rgba(198, 164, 106, 0.1);
}

.process__step {
  text-align: center;
  position: relative;
  padding-top: 24px;
}

.process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white-warm);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-md);
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all var(--duration-normal) var(--ease-elegant);
  box-shadow: 0 0 12px rgba(198, 164, 106, 0.08);
}

.process__step:hover .process__step-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: var(--white-warm);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(198, 164, 106, 0.35), 0 0 40px rgba(198, 164, 106, 0.12);
}

.process__step h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
  margin: 0 auto;
  max-width: 220px;
}

/* --- Authority Section --- */
.authority {
  padding: var(--section-padding);
  background: var(--beige-soft);
  position: relative;
}

.authority::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold), var(--champagne), transparent);
  opacity: 0.35;
}

.authority__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--gap-2xl);
}

.authority__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.authority__header p {
  margin: 0 auto;
}

.authority__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  max-width: 900px;
  margin: 0 auto;
}

.authority__item {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  padding: 28px;
  background: var(--white-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border-light);
  transition: all var(--duration-normal) var(--ease-soft);
  position: relative;
}

.authority__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-soft);
}

.authority__item:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-gold-soft);
}

.authority__item:hover::before {
  opacity: 0.5;
}

.authority__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 164, 106, 0.08), rgba(220, 199, 161, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-border-light);
  box-shadow: 0 0 8px rgba(198, 164, 106, 0.06);
}

.authority__item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.authority__item h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.authority__item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
}

/* --- Environment Section --- */
.environment {
  padding: var(--section-padding);
  background: var(--white-warm);
  position: relative;
}

.environment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold-light), var(--gold-pale), transparent);
  opacity: 0.35;
}

.environment__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--gap-2xl);
}

.environment__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.environment__header p {
  margin: 0 auto;
}

.environment__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold-glow);
  border: 1px solid var(--gold-border-light);
  position: relative;
}

.environment__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.environment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-elegant);
}

.environment__image:hover img {
  transform: scale(1.05);
}

.environment__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(198, 164, 106, 0.06) 100%);
  pointer-events: none;
  transition: background var(--duration-normal) var(--ease-soft);
}

.environment__image:hover::after {
  background: linear-gradient(180deg, transparent 50%, rgba(198, 164, 106, 0.10) 100%);
}

/* --- Testimonials Section --- */
.testimonials {
  padding: var(--section-padding);
  background: var(--beige-soft);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold), var(--champagne), transparent);
  opacity: 0.35;
}

.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--gap-2xl);
}

.testimonials__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.testimonials__header p {
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.testimonial__card {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--gold-border-light);
  transition: all var(--duration-normal) var(--ease-soft);
  position: relative;
  overflow: hidden;
}

.testimonial__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--champagne), transparent);
  opacity: 0.5;
}

.testimonial__card:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-gold-soft);
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 60px;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 4px rgba(198, 164, 106, 0.15));
}

.testimonial__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-secondary);
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige-soft), rgba(220, 199, 161, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  border: 1px solid var(--gold-border-light);
  box-shadow: 0 0 8px rgba(198, 164, 106, 0.08);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-elegant);
}

.testimonial__role {
  font-size: 12px;
  color: var(--gray-light);
}

.testimonials__note {
  text-align: center;
  margin: var(--gap-xl) auto 0;
  max-width: 600px;
  font-size: 13px;
  color: var(--gray-light);
  font-style: italic;
}

/* --- FAQ Section --- */
.faq {
  padding: var(--section-padding);
  background: var(--white-warm);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold-light), var(--gold-pale), transparent);
  opacity: 0.35;
}

.faq__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--gap-2xl);
}

.faq__header h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
}

.faq__header p {
  margin: 0 auto;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gold-border-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-elegant);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-soft);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-soft);
  box-shadow: 0 0 8px rgba(198, 164, 106, 0.06);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: transform var(--duration-fast) var(--ease-soft);
}

.faq__item.active .faq__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(198, 164, 106, 0.25);
}

.faq__item.active .faq__icon svg {
  stroke: var(--white-warm);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-elegant),
              padding var(--duration-normal) var(--ease-elegant);
}

.faq__answer-inner {
  padding-bottom: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-secondary);
  max-width: 640px;
}

/* --- Final CTA Section --- */
.cta-final {
  padding: 160px 0;
  background: var(--beige-soft);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold), var(--champagne), transparent);
  opacity: 0.35;
}

.cta-final::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 106, 0.05), transparent 60%);
  pointer-events: none;
}

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

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final__content h2 {
  margin-bottom: var(--gap-md);
  font-style: italic;
  max-width: 480px;
}

.cta-final__content p {
  font-size: 17px;
  margin-bottom: var(--gap-xl);
  max-width: 440px;
}

.cta-final__image-wrapper {
  position: relative;
}

.cta-final__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-gold-glow);
}

.cta-final__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-final__accent {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(198, 164, 106, 0.06);
  animation: accentFloat 8s ease-in-out infinite;
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  background: #6E5E54;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-warm), var(--gold-deep), transparent);
  opacity: 0.6;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-xl);
  margin-bottom: var(--gap-xl);
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: var(--gap-sm);
}

.footer__brand em {
  font-style: normal;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 2px;
}

.footer__brand-name {
  font-size: inherit;
  font-weight: 400;
  color: var(--white-warm);
  line-height: 1.1;
}

.footer__brand-name span {
  color: var(--champagne);
}

.footer__description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--white-warm);
  margin-bottom: var(--gap-md);
}

.footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-soft);
}

.footer__link:hover {
  color: var(--champagne);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: var(--gap-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(198, 164, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-soft);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(198, 164, 106, 0.08);
  box-shadow: 0 0 16px rgba(198, 164, 106, 0.12);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill var(--duration-fast) var(--ease-soft);
}

.footer__social-link:hover svg {
  fill: var(--champagne);
}

.footer__bottom {
  border-top: 1px solid rgba(198, 164, 106, 0.12);
  padding-top: var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__dev-link {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-soft);
}

.footer__dev-link:hover {
  color: var(--gold-light);
}

.footer__crp {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
  transition: all var(--duration-fast) var(--ease-soft);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.25);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-elegant),
              transform var(--duration-slow) var(--ease-elegant);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Divider --- */
.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(198, 164, 106, 0.15);
}

/* --- Gold shimmer effect --- */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-pale) 25%,
    var(--gold-light) 50%,
    var(--gold-pale) 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

/* --- Mobile Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 0;
  }

  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  h3 { font-size: 30px; }

  .container { padding: 0 32px; }

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

  .hero__content { text-align: center; }
  .hero__subtitle { margin: 0 auto var(--gap-lg); }
  .hero__highlights { align-items: center; }
  .hero__actions { justify-content: center; }

  .hero__image-wrapper {
    height: 480px;
    max-width: 450px;
    margin: 0 auto;
  }
  .hero__bg-room {
    top: -60px;
    right: 0;
  }
  .hero__bg-room-overlay {
    top: -60px;
    right: 0;
    background: 
      linear-gradient(to right, #FDFBF8 0%, rgba(253, 251, 248, 0) 15%, rgba(253, 251, 248, 0) 85%, #FDFBF8 100%),
      linear-gradient(to bottom, #FDFBF8 0%, rgba(253, 251, 248, 0) 15%, rgba(253, 251, 248, 0) 80%, #FDFBF8 100%);
  }
  .hero__portrait {
    transform: scale(1.08) translateX(-95px);
  }

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

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

  .about__image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }

  .differentials__cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto var(--gap-xl);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
  }

  .process__steps::before { display: none; }

  .authority__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .cta-final__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    text-align: center;
  }

  .cta-final__content h2,
  .cta-final__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-final__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-padding: 80px 0;
  }

  body { font-size: 16px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }

  .container { padding: 0 20px; }

  .nav__brand {
    font-size: 20px;
  }
  .nav__brand em {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .footer__brand {
    font-size: 22px;
  }
  .footer__brand em {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  @media (max-width: 380px) {
    .nav__brand {
      font-size: 16px;
    }
    .nav__brand em {
      font-size: 8px;
      letter-spacing: 0.12em;
    }
  }

  /* Nav Mobile */
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 251, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--gap-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-soft);
    z-index: 99;
  }

  .nav__links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav__links .nav__link {
    font-size: 20px;
    font-family: var(--font-heading);
  }

  .nav__links .nav__cta {
    font-size: 16px;
    padding: 14px 32px;
  }

  .nav__mobile-toggle {
    display: flex;
    z-index: 101;
  }

  /* Hero Mobile */
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero__image-wrapper {
    height: 380px;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__bg-room {
    top: -30px;
  }
  .hero__bg-room-overlay {
    top: -30px;
  }
  .hero__portrait {
    transform: scale(1.06) translateX(-90px);
  }

  .hero__badge { font-size: 12px; }

  .hero__actions {
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .hero__actions .btn { width: 100%; }

  .hero__image-accent { display: none; }

  /* Cards Mobile */
  .identification__cards {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .environment__gallery {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }

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

  /* About Mobile */
  .about__features {
    grid-template-columns: 1fr;
  }

  .about__experience-badge {
    bottom: -16px;
    right: 16px;
    padding: 16px 20px;
  }

  .about__experience-badge .number {
    font-size: 32px;
  }

  /* Footer Mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--gap-sm);
    text-align: center;
  }

  /* FAQ Mobile */
  .faq__question {
    font-size: 18px;
    padding: 22px 0;
  }

  /* CTA Final Mobile */
  .cta-final { padding: 100px 0; }

  /* WhatsApp Float Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
