/* ═══════════════════════════════════════════════════════════════
   SB DESIGN EM PORCELANATO — STYLESHEET PREMIUM
   Design System: Off-white + Preto + Dourado Champagne
   Tipografia: Playfair Display (serif) + Inter (sans-serif)
   ═══════════════════════════════════════════════════════════════ */

/* ═══ CSS VARIABLES ═══ */
:root {
  /* Cores */
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --warm-gray: #F3F1EC;
  --sand: #E8E4DC;
  --stone: #C4BFB4;
  --taupe: #8A8477;
  --charcoal: #4A4740;
  --ink: #1C1B18;
  --gold: #B69D60;
  --gold-light: #D4BC82;
  --gold-dark: #96803E;
  --success: #4A7C59;
  --error: #C84B4B;

  /* Tipografia */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 800px;
  --border-radius: 2px;

  /* Transições */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(28, 27, 24, 0.04);
  --shadow-md: 0 8px 24px rgba(28, 27, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 27, 24, 0.12);
  --shadow-xl: 0 32px 80px rgba(28, 27, 24, 0.16);
}

/* ═══ 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-sans);
  font-weight: 300;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

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

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
  display: none;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: transform 0.3s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
  display: none;
}

.cursor.active,
.cursor-follower.active {
  transform: scale(2);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-follower {
    display: block;
  }
  
  body {
    cursor: none;
  }
  
  a, button, .btn, .specialty-card, .gallery__item, .audience-card {
    cursor: none;
  }
}

/* ═══ TIPOGRAFIA ═══ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--ink);
  line-height: 1.1;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--taupe);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* ═══ LAYOUT ═══ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ═══ ANIMAÇÕES ═══ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

/* ═══ BOTÕES ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(182, 157, 96, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
}

.btn--white:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--large {
  padding: 1.3rem 3rem;
  font-size: 0.8rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ═══ NAVEGAÇÃO ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  padding: var(--space-sm) 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  position: relative;
  display: block;
  width: clamp(210px, 19vw, 250px);
  flex-shrink: 0;
  line-height: 0;
}

.nav__logo-image {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s var(--ease-out);
}

.nav__logo-image--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nav.scrolled .nav__logo-image--light {
  opacity: 0;
}

.nav.scrolled .nav__logo-image--dark {
  opacity: 1;
}

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

.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav__links a {
  color: var(--taupe);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover::after {
  width: 100%;
}

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

.nav__cta {
  font-size: 0.68rem !important;
  padding: 0.7rem 1.5rem;
  background: var(--gold) !important;
  color: var(--white) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(182, 157, 96, 0.3);
}

.nav__mobile-toggle {
  display: none;
  padding: 0.5rem;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s;
}

.nav.scrolled .nav__mobile-toggle span {
  background: var(--ink);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 27, 24, 0.42) 0%,
    rgba(28, 27, 24, 0.52) 50%,
    rgba(28, 27, 24, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: var(--space-xl) var(--space-lg);
  max-width: 950px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

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

/* ═══ BARRA DE CONFIANÇA ═══ */
.trust-bar {
  background: var(--ink);
  padding: var(--space-lg) 0;
}

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

.trust-bar__item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ═══ CONTADOR ═══ */
.counter-section {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.counter-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ═══ ESSÊNCIA ═══ */
.essence {
  background: var(--cream);
}

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

.essence__image {
  position: relative;
  overflow: hidden;
}

.essence__image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.essence__image:hover img {
  transform: scale(1.04);
}

.essence__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(28, 27, 24, 0.15), transparent);
  pointer-events: none;
}

.essence__text blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-top: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 2px solid var(--gold);
}

.essence__text blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--space-sm);
}

/* ═══ ESPECIALIDADES ═══ */
.specialties {
  background: var(--warm-gray);
}

.specialties__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.specialties__header .section-subtitle {
  margin: 0 auto;
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.specialty-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.specialty-card__image {
  height: 340px;
  overflow: hidden;
}

.specialty-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.specialty-card:hover .specialty-card__image img {
  transform: scale(1.08);
}

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

.specialty-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.specialty-card__desc {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.specialty-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease-out);
}

.specialty-card:hover .specialty-card__link {
  gap: 0.8rem;
}

.specialty-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ═══ COMPARATIVO ═══ */
.comparison {
  background: var(--cream);
}

.comparison__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.comparison__header .section-subtitle {
  margin: 0 auto;
}

.comparison__table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--sand);
}

.comparison__row:last-child {
  border-bottom: none;
}

.comparison__row--header {
  background: var(--ink);
  color: var(--white);
}

.comparison__cell {
  padding: var(--space-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison__cell:first-child {
  justify-content: flex-start;
  text-align: left;
  font-weight: 500;
}

.comparison__row--header .comparison__cell {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.comparison__check {
  color: var(--success);
  font-size: 1.2rem;
}

.comparison__cross {
  color: var(--error);
  font-size: 1.2rem;
}

.comparison__highlight {
  background: rgba(182, 157, 96, 0.05);
}

/* ═══ DIFERENCIAIS ═══ */
.benefits {
  background: var(--cream);
}

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

.benefits__list {
  display: grid;
  gap: var(--space-lg);
}

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

.benefit-item__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-gray);
  border-radius: 50%;
  transition: all 0.3s var(--ease-out);
}

.benefit-item:hover .benefit-item__icon {
  background: var(--gold);
  transform: scale(1.1);
}

.benefit-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.benefit-item:hover .benefit-item__icon svg {
  stroke: var(--white);
}

.benefit-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.benefit-item__desc {
  font-size: 0.88rem;
  color: var(--taupe);
  line-height: 1.7;
}

.benefits__image {
  position: relative;
  overflow: hidden;
}

.benefits__image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/* ═══ GALERIA ═══ */
.gallery {
  background: var(--ink);
  padding: var(--space-3xl) 0;
}

.gallery .eyebrow {
  color: var(--gold-light);
}

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

.gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(260px, 1fr);
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 1s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 27, 24, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.gallery__item-label span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

/* ═══ PÚBLICO ═══ */
.audience {
  background: var(--warm-gray);
}

.audience__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.audience__header .section-subtitle {
  margin: 0 auto;
}

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

.audience-card {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

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

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.audience-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  transition: all 0.4s var(--ease-out);
}

.audience-card:hover .audience-card__icon {
  background: var(--gold);
  transform: scale(1.1);
}

.audience-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.audience-card:hover .audience-card__icon svg {
  stroke: var(--white);
}

.audience-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
}

.audience-card__desc {
  font-size: 0.88rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ═══ PROCESSO / TIMELINE ═══ */
.process {
  background: var(--cream);
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.process__header .section-subtitle {
  margin: 0 auto;
}

.process__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--sand);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step__number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--sand);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}

.process-step:hover .process-step__number {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.1);
}

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

.process-step:nth-child(odd) .process-step__content {
  grid-column: 1;
  text-align: right;
}

.process-step:nth-child(odd)::after {
  content: '';
  grid-column: 3;
}

.process-step:nth-child(even) .process-step__content {
  grid-column: 3;
  text-align: left;
}

.process-step:nth-child(even)::before {
  content: '';
  grid-column: 1;
}

.process-step__number {
  grid-column: 2;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.process-step__desc {
  font-size: 0.88rem;
  color: var(--taupe);
  line-height: 1.7;
}

/* ═══ DEPOIMENTOS ═══ */
.testimonials {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 25rem;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.testimonials .eyebrow {
  color: var(--gold-light);
}

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

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-xl) var(--space-lg);
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ═══ FAQ ═══ */
.faq {
  background: var(--cream);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq__header .section-subtitle {
  margin: 0 auto;
}

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

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: var(--space-md) 0;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  padding: var(--space-sm) 0;
  transition: color 0.3s;
}

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

.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.faq-item__icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.8;
}

/* ═══ CTA FINAL ═══ */
.cta-final {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
}

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

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 24, 0.75);
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 750px;
  padding: 0 var(--space-lg);
}

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

.cta-final__content .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto var(--space-xl);
}

.cta-final__buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

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

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

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--gold);
  background: rgba(182, 157, 96, 0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.3s;
}

.footer__social a:hover svg {
  fill: var(--gold);
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: scale(0.8);
  animation: whatsappIn 0.5s var(--ease-out) 2.5s forwards;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
}

@keyframes whatsappIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ═══ MOBILE MENU ═══ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  color: var(--white);
  font-size: 2rem;
}

/* ═══ RESPONSIVO ═══ */
@media (max-width: 1024px) {
  .nav__inner {
    padding: 0 var(--space-md);
  }

  .nav__logo {
    width: 180px;
  }

  .nav__links {
    gap: var(--space-sm);
  }

  .nav__links a {
    letter-spacing: 0.06em;
  }

  .nav__cta {
    padding: 0.65rem 0.9rem;
  }

  .essence__grid,
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .essence__image img,
  .benefits__image img {
    height: 450px;
  }

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

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

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

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

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .comparison__row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 6rem;
  }

  .hero__bg img {
    object-position: 85% center;
  }

  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: block;
  }

  .nav__logo {
    width: 165px;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .audience__grid,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .process__timeline::before {
    left: 40px;
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: var(--space-md);
  }

  .process-step__number {
    grid-column: 1 !important;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .process-step__content {
    grid-column: 2 !important;
    text-align: left !important;
    padding: 0;
  }

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

  .hero__ctas,
  .cta-final__buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .comparison__table {
    overflow-x: auto;
  }

  .comparison__row {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .trust-bar__inner {
    grid-template-columns: 1fr;
  }
}

/* ═══ SELECTION ═══ */
::selection {
  background: var(--gold);
  color: var(--white);
}

/* ═══ PRINT ═══ */
@media print {
  .nav, .whatsapp-float, .cursor, .cursor-follower {
    display: none !important;
  }
  
  section {
    page-break-inside: avoid;
  }
}
