/* ═══════════════════════════════════════════
   FONTS
═══════════════════════════════════════════ */
@font-face {
  font-family: 'Belgan Aesthetic';
  src: url('../assets/fonts/belgan-aesthetic.woff2') format('woff2'),
       url('../assets/fonts/belgan-aesthetic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ═══════════════════════════════════════════
   RESET & CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Cores Primárias ── */
  --color-dark:       #373435;
  --color-near-black: #1E1E1E;
  --color-black:      #0D0D0D;

  /* ── Cores Douradas ── */
  --color-gold-light: #EECC7E;
  --color-gold:       #D18636;
  --color-gold-warm:  #EAA548;
  --color-gold-mid:   #EAB35D;

  /* ── Terrosas ── */
  --color-brown-deep: #5C3D2E;

  /* ── Neutros ── */
  --color-white:      #FFFFFF;
  --color-off-white:  #FEFCFC;
  --color-gray-mid:   #C4B49A;
  --color-gray-dark:  #6B6560;

  /* ── Gradientes ── */
  --gradient-gold:     linear-gradient(90deg, #D18636 0%, #EECC7E 100%);
  --gradient-gold-rev: linear-gradient(90deg, #EAA548 0%, #EAB35D 100%);
  --gradient-hero:     linear-gradient(135deg, #0D0D0D 0%, #373435 60%, #5C3D2E 100%);

  /* ── Tipografia ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-belgan:  'Belgan Aesthetic', 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

  /* ── Hero ── */
  --bg-hero: linear-gradient(155deg, #2B1409 0%, #4C2A18 50%, #3C1F0D 100%);

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

  /* ── Bordas ── */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* ── Sombras ── */
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(209,134,54,0.3);

  /* ── Transições ── */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:  150ms;
  --duration-base:  300ms;
  --duration-slow:  500ms;

  /* ── Layout ── */
  --container-max: 1200px;
  --nav-height:    72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}


/* ═══════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}


/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section {
  padding: var(--space-24) 0;
}

.section--near-black {
  background: var(--color-near-black);
}

.section--black {
  background: var(--color-black);
}

.section--planning {
  background: linear-gradient(140deg, #120e0b 0%, #2a1a0e 45%, #1c1816 100%);
  position: relative;
  overflow: hidden;
}

.section--planning::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(209,134,54,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(234,165,72,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.section--cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(209,134,54,0.12) 0%, transparent 65%);
  pointer-events: none;
}


/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease);
  font-size: 0.875rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-dark);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 6px 32px rgba(209,134,54,0.5);
  transform: translateY(-2px);
}

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

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: 0.75rem;
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: 1rem;
}


/* ═══════════════════════════════════════════
   BADGES
═══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(209,134,54,0.15);
  color: var(--color-gold-light);
  border: 1px solid rgba(209,134,54,0.3);
}


/* ═══════════════════════════════════════════
   DIVIDERS
═══════════════════════════════════════════ */
.divider-gold {
  height: 1px;
  background: var(--gradient-gold);
  width: 80px;
  margin: var(--space-5) 0;
}


/* ═══════════════════════════════════════════
   AUTHORITY BAR
═══════════════════════════════════════════ */
.authority-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(209,134,54,0.3);
  border-bottom: 1px solid rgba(209,134,54,0.3);
}

.authority-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
}

.authority-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   SECTION HEADING PATTERN
═══════════════════════════════════════════ */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-belgan);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

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

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(209,134,54,0.15);
  transition: all var(--duration-base) var(--ease);
}

.nav.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom-color: rgba(209,134,54,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-8);
}

.nav__logo img {
  height: 34px;
  width: auto;
}

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

.nav__links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

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


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero__bg-glow {
  position: absolute;
  top: -100px;
  right: -40px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(209,134,54,0.1) 0%, transparent 65%);
  pointer-events: none;
  will-change: auto;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: stretch;
  flex: 1;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
  min-width: 0;
}

.hero__headline {
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero__headline {
  font-family: var(--font-belgan);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold-light);
  display: block;
  margin-top: var(--space-2);
  font-size: 0.88em;
}

.hero__body {
  font-size: 1.0625rem;
  color: var(--color-gray-mid);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: var(--space-10);
}

.hero__cta {
  margin-bottom: var(--space-8);
}

.btn-hero-cta {
  background: #25D366;
  color: #fff;
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-size: 0.875rem;
  width: 100%;
  justify-content: center;
  max-width: 480px;
}

.btn-hero-cta:hover {
  background: #1ebe5b;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

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

.hero__authority {
  max-width: 560px;
}

.hero__photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}


.hero__photo-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - var(--nav-height) - 50px);
  object-fit: contain;
  object-position: bottom center;
  display: block;
  align-self: flex-end;
}


/* ═══════════════════════════════════════════
   HERO GRID (animated background)
═══════════════════════════════════════════ */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__grid-base {
  color: rgba(238, 204, 126, 0.55);
  opacity: 0.06;
}

.hero__grid-reveal {
  color: rgba(238, 204, 126, 0.85);
  opacity: 0.32;
  mask-image: radial-gradient(280px circle at -9999px -9999px, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(280px circle at -9999px -9999px, black 0%, transparent 100%);
}


/* ═══════════════════════════════════════════
   HERO TICKER
═══════════════════════════════════════════ */
.hero__ticker {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(209, 134, 54, 0.18);
  padding: var(--space-3) 0;
  flex-shrink: 0;
}

.hero__ticker-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  animation: hero-ticker 28s linear infinite;
}

.hero__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  white-space: nowrap;
  padding: var(--space-2) var(--space-5);
  border: 1px solid rgba(209, 134, 54, 0.22);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.hero__ticker-item::before {
  content: '•';
  color: var(--color-gold);
  font-size: 0.75rem;
}

@keyframes hero-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 3)); }
}


/* ═══════════════════════════════════════════
   SECTION 2: PROBLEMS
═══════════════════════════════════════════ */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* Bento: card 1 = largo (3/5), card 2 = estreito (2/5) */
/* Bento: card 3 = estreito (2/5), card 4 = largo (3/5), card 5 = full */
/* Bento: card 6 = estreito (2/5), card 7 = largo (3/5) */
.card-service:nth-child(1) { grid-column: span 3; }
.card-service:nth-child(2) { grid-column: span 2; }
.card-service:nth-child(3) { grid-column: span 2; }
.card-service:nth-child(4) { grid-column: span 3; }
.card-service:nth-child(5) { grid-column: span 5; }
.card-service:nth-child(6) { grid-column: span 2; }
.card-service:nth-child(7) { grid-column: span 3; }

.card-service {
  background: #181615;
  border: 1px solid #2a2827;
  border-top: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  min-height: 200px;
  transition: all var(--duration-base) var(--ease);
}

.card-service:hover {
  border-color: var(--color-gold-light);
  border-top-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.card-service-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
}

.card-service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.card-service-text {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  line-height: 1.7;
}

.problems__transition {
  text-align: center;
  padding: var(--space-8) 0 var(--space-4);
}

.problems__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-off-white);
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto var(--space-8);
  position: relative;
  padding: 0 var(--space-8);
}

.problems__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(209,134,54,0.15);
  position: absolute;
  top: -2rem;
  left: 0;
  line-height: 1;
}


/* ═══════════════════════════════════════════
   SECTION 3: STRATEGY PILLARS
═══════════════════════════════════════════ */
.strategy__intro {
  font-size: 1.0625rem;
  color: var(--color-gray-mid);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

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

.pillar {
  background: rgba(55,52,53,0.25);
  border: 1px solid #2a2827;
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-base) var(--ease);
}

.pillar:hover {
  background: rgba(55,52,53,0.45);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.pillar__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.pillar__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar__text {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   SECTION 4: TECHNICAL
═══════════════════════════════════════════ */
.technical__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.technical__icon {
  color: var(--color-gold);
  opacity: 0.7;
  margin-top: var(--space-10);
}

.technical__title {
  text-align: left;
  margin-bottom: var(--space-6);
}

.technical__text {
  font-size: 1.0625rem;
  color: var(--color-gray-mid);
  line-height: 1.85;
  margin-bottom: var(--space-8);
}

.technical__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}


/* ═══════════════════════════════════════════
   SECTION 5: ABOUT
═══════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about__left {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  align-self: start;
}

.about__photo-wrap {
  position: relative;
  margin-bottom: 0;
}

.about__photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(209,134,54,0.25);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 0;
}

.about__photo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  position: relative;
  z-index: 1;
}

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

.card-stat {
  text-align: center;
  padding: var(--space-5) var(--space-3);
  background: rgba(55,52,53,0.4);
  border: 1px solid #2a2827;
  border-radius: var(--radius-lg);
}

.card-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.card-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-top: var(--space-2);
  line-height: 1.3;
}

.about__title {
  text-align: left;
  margin-bottom: var(--space-5);
}

.about__text {
  font-size: 1rem;
  color: var(--color-gray-mid);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

.credentials {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.credentials__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-off-white);
}

.credentials__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-gold);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   SECTION 6: PLANNING
═══════════════════════════════════════════ */
.planning__sub {
  font-size: 1.0625rem;
  color: var(--color-gray-mid);
  max-width: 840px;
  margin: var(--space-6) auto 0;
  line-height: 1.8;
}

.planning__body {
  font-size: 1rem;
  color: var(--color-gray-mid);
  line-height: 1.85;
  max-width: 800px;
  margin: 0 auto var(--space-12);
  text-align: center;
  position: relative;
  z-index: 1;
}

.planning__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.planning__card {
  background: rgba(18,10,6,0.7);
  border: 1px solid rgba(209,134,54,0.18);
  border-top: 2px solid var(--color-gold-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-base) var(--ease);
  backdrop-filter: blur(4px);
}

.planning__card:hover {
  border-color: rgba(209,134,54,0.45);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.planning__card-icon {
  color: var(--color-gold-warm);
  margin-bottom: var(--space-5);
  display: flex;
  justify-content: center;
}

.planning__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
}

.planning__card-text {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  line-height: 1.75;
}

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


/* ═══════════════════════════════════════════
   SECTION 7: TESTIMONIALS CAROUSEL
═══════════════════════════════════════════ */
.testimonials__carousel-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.carousel__viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-lg);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card-testimonial {
  min-width: 100%;
  box-sizing: border-box;
  background: #181615;
  border: 1px solid #2a2827;
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
}

.card-testimonial:hover {
  border-color: rgba(209,134,54,0.4);
  border-left-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}

.carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(55,52,53,0.5);
  border: 1px solid rgba(209,134,54,0.25);
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease);
}

.carousel__btn:hover {
  background: rgba(209,134,54,0.15);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(209,134,54,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration-base) var(--ease);
}

.carousel__dot.active {
  background: var(--color-gold);
  width: 28px;
}

.testimonial__google-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-size: 0.7rem;
  color: var(--color-gray-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-testimonial-stars {
  color: var(--color-gold);
  font-size: 0.9375rem;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.card-testimonial-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-off-white);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

.card-testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

.card-testimonial-date {
  font-size: 0.75rem;
  color: var(--color-gray-dark);
  margin-top: var(--space-1);
}

.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  padding: var(--space-8) 0 var(--space-4);
  border-top: 1px solid rgba(209,134,54,0.2);
}

.rating__stars {
  color: var(--color-gold);
  font-size: 1.375rem;
  letter-spacing: 3px;
}

.rating__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating__label {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
}


/* ═══════════════════════════════════════════
   SECTION 8: PROCESS STEPS (vertical timeline)
═══════════════════════════════════════════ */
.process__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.process__left {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-10));
}

.process__left .section-title {
  text-align: left;
  margin-bottom: var(--space-5);
}

.process__left .section-divider {
  margin: 0;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-line {
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(209,134,54,0.12);
  border-radius: 1px;
  overflow: hidden;
}

.timeline-line-fill {
  width: 100%;
  height: 0%;
  background: var(--gradient-gold);
  border-radius: 1px;
  transition: height 0.15s linear;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}

.process-step--last {
  padding-bottom: 0;
}

.process-step-indicator {
  flex-shrink: 0;
}

.process-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30,30,30,0.9);
  border: 2px solid rgba(209,134,54,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  transition: background var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease),
              color var(--duration-base) var(--ease);
}

.process-step.active .process-step-dot {
  background: var(--gradient-gold);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  color: var(--color-dark);
}

.process-step-body {
  padding-top: var(--space-2);
  flex: 1;
}

.process-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gray-mid);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
  transition: color var(--duration-base) var(--ease);
}

.process-step.active .process-step-title {
  color: var(--color-gold-light);
}

.process-step-text {
  font-size: 0.9375rem;
  color: var(--color-gray-dark);
  line-height: 1.75;
  transition: color var(--duration-base) var(--ease);
}

.process-step.active .process-step-text {
  color: var(--color-gray-mid);
}


/* ═══════════════════════════════════════════
   SECTION 9: FAQ
═══════════════════════════════════════════ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #2a2827;
  padding: var(--space-5) 0;
}

.faq-item:first-child {
  border-top: 1px solid #2a2827;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  text-align: left;
  padding: 0;
  transition: color var(--duration-fast) var(--ease);
}

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

.faq-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease);
  line-height: 1;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.9375rem;
  color: var(--color-gray-mid);
  line-height: 1.85;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--duration-slow) var(--ease),
              padding var(--duration-slow) var(--ease);
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: var(--space-4);
}


/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-8) 0;
}

.cta-final__title {
  font-family: var(--font-belgan);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.cta-final__title em {
  color: var(--color-gold-light);
}

.cta-final__text {
  font-size: 1.125rem;
  color: var(--color-gray-mid);
  max-width: 440px;
  margin: 0 auto var(--space-10);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid #181615;
  padding-top: var(--space-16);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid #181615;
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-5);
}

.footer__tagline {
  font-size: 0.75rem;
  color: var(--color-gray-dark);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.footer__nav-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  font-weight: 600;
}

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

.footer__nav a {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
  letter-spacing: 0.03em;
}

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

.footer__contact {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  line-height: 1.6;
}

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #25D366;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease);
}

.footer__whatsapp:hover {
  opacity: 0.8;
}

.footer__bottom {
  padding: var(--space-6) 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__bottom-inner p {
  font-size: 0.75rem;
  color: var(--color-gray-dark);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--duration-base) var(--ease);
}

.whatsapp-float:hover {
  background: #1ebe5b;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}


/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 0;
    padding-top: 0;
  }

  .hero__body {
    max-width: 100%;
  }

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

  .card-service:nth-child(1),
  .card-service:nth-child(2),
  .card-service:nth-child(3),
  .card-service:nth-child(4),
  .card-service:nth-child(6),
  .card-service:nth-child(7) {
    grid-column: span 1;
  }

  .card-service:nth-child(5) {
    grid-column: span 2;
  }

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

  .about__left {
    position: static;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --space-24: 4rem;
    --space-16: 3rem;
  }

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

  /* ── Nav ── */
  .nav__inner {
    justify-content: center;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  /* ── Hero layout: texto em cima, imagem colada na base ── */
  .hero__content {
    padding-top: var(--space-10);
    padding-bottom: var(--space-6);
  }

  .hero__photo {
    align-items: flex-end;
    overflow: hidden;
  }

  .hero__photo-img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    aspect-ratio: unset;
    object-fit: contain;
    object-position: bottom center;
  }

  /* ── Botões: impede overflow e quebra linha ── */
  .btn {
    white-space: normal;
    word-break: break-word;
  }

  .btn-lg,
  .btn-hero-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* ── Seções ── */
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

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

  .technical__icon {
    display: none;
  }

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

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

  .process__left {
    position: static;
  }

  .process__left .section-title {
    text-align: center;
  }

  .process__left .section-divider {
    margin: 0 auto;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
  }

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

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: var(--space-4) var(--space-5);
    font-size: 0.8125rem;
  }

  .testimonials__rating {
    flex-direction: column;
    gap: var(--space-2);
  }

  .hero__photo-img {
    max-height: 55vh;
  }
}
