/* ==============================================================
   EXPERT ENDOSCOPIA — DESIGN SYSTEM & STYLESHEET
   Identidade Visual: Preto (#0A0A0A), Branco (#FFFFFF), Vermelho Expert (#9E1B1B)
   Tipografia: Quicksand (Títulos/Eyebrows/CTAs) & Inter (Corpo)
   Padrão de Qualidade: Locmidia / Santti Company
   ============================================================== */

/* --------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary-dark: #0A0A0A;
  --color-dark-surface: #121212;
  --color-dark-surface-2: #1A1A1A;
  --color-dark-surface-3: #222222;
  --color-dark-border: #262626;
  --color-dark-border-subtle: #1F1F1F;

  --color-white: #FFFFFF;
  --color-light-bg: #F8FAFC;
  --color-light-surface: #FFFFFF;
  --color-light-surface-2: #F1F5F9;
  --color-light-border: #E2E8F0;
  --color-light-border-subtle: #EDF2F7;

  --color-red-expert: #9E1B1B;
  --color-red-hover: #B71C1C;
  --color-red-active: #7E1414;
  --color-red-soft: rgba(158, 27, 27, 0.08);
  --color-red-glow: rgba(158, 27, 27, 0.25);
  --color-red-border: rgba(158, 27, 27, 0.3);

  --color-text-dark: #2B2B2B;
  --color-text-muted-dark: #52525B;
  --color-text-light: #F4F4F5;
  --color-text-muted-light: #A1A1AA;

  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5D;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.35);

  --color-star-gold: #F59E0B;

  /* Typography */
  --font-heading: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --container-width: 1240px;
  --container-narrow: 900px;
  --header-height: 84px;
  --topbar-height: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);
  --shadow-xl: 0 24px 50px rgba(0, 0, 0, 0.14);
  --shadow-red: 0 10px 30px rgba(158, 27, 27, 0.28);
  --shadow-dark-card: 0 14px 35px rgba(0, 0, 0, 0.4);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--header-height) + 16px);
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted-dark);
}

p:last-child {
  margin-bottom: 0;
}

/* Destaque [palavra] oficial Santti / Expert */
.highlight {
  color: var(--color-red-expert);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.highlight-dark {
  color: var(--color-red-expert);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.section-padding {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.section-padding-sm {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.75rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-red-expert);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.85rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--color-red-expert);
}

.eyebrow.no-lines::before,
.eyebrow.no-lines::after {
  display: none;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1.15rem;
}

.section-header .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3.5px;
  background-color: var(--color-red-expert);
  border-radius: var(--radius-full);
  margin: 0.95rem auto 1.35rem auto;
}

.section-header.text-left .section-title::after,
.about-content .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3.5px;
  background-color: var(--color-red-expert);
  border-radius: var(--radius-full);
  margin: 0.95rem 0 1.35rem 0;
}

.hero-h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3.5px;
  background-color: var(--color-red-expert);
  border-radius: var(--radius-full);
  margin: 1.15rem 0 1.5rem 0;
}

.audience-section .section-header .section-title::after {
  background-color: var(--color-white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted-dark);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

/* Dark Theme Overrides */
.theme-dark {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  position: relative;
}

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

.theme-dark .section-desc {
  color: var(--color-text-muted-light);
}

.theme-dark-alt {
  background-color: #0E0E0E;
  color: var(--color-text-light);
}

.theme-light-alt {
  background-color: var(--color-light-bg);
}

/* --------------------------------------------------
   4. BUTTONS & CTAS
   -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--color-red-expert);
  color: var(--color-white);
  box-shadow: var(--shadow-red);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(158, 27, 27, 0.38);
}

.btn-primary:active {
  transform: translateY(0);
  background-color: var(--color-red-active);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary-light {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-light-border);
}

.btn-secondary-light:hover {
  background-color: var(--color-light-surface-2);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 10px 25px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.btn-outline-red {
  background-color: transparent;
  color: var(--color-red-expert);
  border: 1.5px solid var(--color-red-expert);
}

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

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.15rem 2.25rem;
  font-size: 1.05rem;
}

.btn-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn:hover .btn-icon-svg {
  transform: translateX(3px);
}

/* --------------------------------------------------
   5. TOPBAR & FIXED HEADER
   -------------------------------------------------- */
.topbar {
  background-color: #050505;
  color: var(--color-text-muted-light);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem 0;
  position: relative;
  z-index: 999;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #B3B3B3;
  transition: var(--transition-fast);
}

.topbar-link:hover {
  color: var(--color-white);
}

.topbar-icon {
  width: 14px;
  height: 14px;
  fill: var(--color-red-expert);
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-base);
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(158, 27, 27, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: #D1D5DB;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-red-expert);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-fast);
  margin: 2.5px 0;
}

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

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

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

/* Trava de Scroll Robusta quando o Menu Lateral estiver Aberto */
html.drawer-open,
body.drawer-open {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  position: fixed !important;
  width: 100% !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: auto !important;
  overscroll-behavior: none !important;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #0E0E0E;
  border-left: 1px solid var(--color-dark-border);
  z-index: 2000;
  padding: clamp(0.75rem, 2vh, 1.25rem) clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none !important;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.32s;
  overflow: hidden !important;
  overflow-y: hidden !important;
  box-sizing: border-box;
  touch-action: none;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.85) !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(0.35rem, 1vh, 0.75rem);
  border-bottom: 1px solid var(--color-dark-border);
  flex-shrink: 0;
}

.mobile-drawer-logo {
  height: clamp(26px, 4vh, 36px);
  width: auto;
}

.mobile-close-btn {
  width: clamp(32px, 5vh, 38px);
  height: clamp(32px, 5vh, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-grow: 1;
  margin: 0;
  padding: clamp(0.25rem, 1vh, 0.65rem) 0;
  list-style: none;
  overflow: hidden;
}

.mobile-nav-list li {
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.1vh, 1.05rem);
  font-weight: 600;
  color: #E5E7EB;
  padding: clamp(0.1rem, 0.4vh, 0.25rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link:hover {
  color: var(--color-white);
  padding-left: 0.35rem;
}

.mobile-drawer-footer {
  padding-top: clamp(0.35rem, 1vh, 0.75rem);
  border-top: 1px solid var(--color-dark-border);
  flex-shrink: 0;
}

.mobile-drawer-footer .btn {
  padding: clamp(0.55rem, 1.4vh, 0.8rem) 1rem !important;
  font-size: clamp(0.76rem, 1.8vh, 0.88rem) !important;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  touch-action: none;
  transition: var(--transition-base);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Scroll margin para seções com ID */
section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

/* --------------------------------------------------
   6. SECTION 7.1 — HERO SECTION
   -------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--color-primary-dark);
  background-image: url('../assets/hero-bg-desktop.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 280px;
  overflow: visible;
  border-bottom: 3px solid var(--color-red-expert);
}

/* Background Ambient Glows - Removidos para manter a imagem original pura sem overlay */
.hero-glow-1,
.hero-glow-2 {
  display: none;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 50%;
  max-width: 50%;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-red-expert);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(158, 27, 27, 0.12);
  border: 1px solid rgba(158, 27, 27, 0.3);
  border-radius: var(--radius-full);
}

.hero-h1 {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #D1D5DB;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 760px;
}

/* Slogan Official Badge */
.hero-slogan-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.8));
  border: 1px solid rgba(158, 27, 27, 0.4);
  border-left: 4px solid var(--color-red-expert);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.slogan-text strong {
  color: var(--color-white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}

/* Hero Media / Card */
.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background-color: var(--color-dark-surface);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Floating Card over Hero Media */
.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(158, 27, 27, 0.4);
  backdrop-filter: blur(16px);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.floating-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(158, 27, 27, 0.15);
  border: 1px solid var(--color-red-expert);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--color-red-expert);
}

.floating-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.floating-card-subtitle {
  font-size: 0.82rem;
  color: #9CA3AF;
}

/* Hero Trust Floating Card */
.hero-trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transform: translateY(50%);
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}

.trust-card-wrapper {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.25rem 0.5rem;
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  padding-right: 1.5rem;
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-red-soft);
  border: 1px solid var(--color-red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-red-expert);
}

.trust-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.3;
}

.trust-item-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted-dark);
  line-height: 1.4;
}

/* --------------------------------------------------
   7. SECTION 7.2 — DIFERENCIAIS
   -------------------------------------------------- */
.differentials-section {
  background-color: var(--color-white);
  padding-top: 8.5rem;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.differential-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.differential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 3px;
  background-color: transparent;
  transition: var(--transition-fast);
  border-radius: 0 0 3px 3px;
}

.differential-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 27, 27, 0.35);
  box-shadow: var(--shadow-lg);
}

.differential-card:hover::before {
  background-color: var(--color-red-expert);
}

.diff-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--color-light-surface-2);
  border: 1px solid var(--color-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.diff-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--color-red-expert);
  transition: transform 0.3s ease;
}

.differential-card:hover .diff-icon-wrap {
  background-color: var(--color-red-expert);
  border-color: var(--color-red-expert);
}

.differential-card:hover .diff-icon-wrap svg {
  fill: var(--color-white);
  transform: scale(1.1);
}

.diff-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.diff-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
}

/* --------------------------------------------------
   8. SECTION 7.3 — QUEM ATENDEMOS / SOLUÇÕES
   -------------------------------------------------- */
.audience-section {
  background: linear-gradient(135deg, #7A1212 0%, #9E1B1B 45%, #6B0E0E 100%);
  position: relative;
  overflow: hidden;
}

.audience-section .section-header .eyebrow {
  color: var(--color-white);
  background: transparent;
  border: none;
  padding: 0;
}

.audience-section .section-header .eyebrow::before,
.audience-section .section-header .eyebrow::after {
  background-color: rgba(255, 255, 255, 0.7);
}

.audience-section .section-title {
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.audience-section .section-title .highlight {
  color: #FFFFFF;
  font-style: normal;
}

.audience-section .section-desc {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.audience-grid {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.audience-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: linear-gradient(135deg, rgba(186, 38, 38, 0.52) 0%, rgba(138, 20, 20, 0.68) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  transition: var(--transition-base);
  align-items: stretch;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  background: linear-gradient(135deg, rgba(200, 45, 45, 0.6) 0%, rgba(148, 24, 24, 0.76) 100%);
}

.audience-card.card-reversed {
  grid-template-columns: 0.85fr 1.15fr;
}

.audience-body {
  padding: 3.25rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.audience-card-tag::before,
.audience-card-tag::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.75);
}

.audience-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.audience-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 1.85rem;
}

.audience-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.45;
}

.audience-check-icon {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
  flex-shrink: 0;
}

.audience-action {
  margin-top: 0.5rem;
}

.btn-audience {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-red-expert);
  background-color: var(--color-white);
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-base);
  border: 1px solid transparent;
  align-self: flex-start;
}

.btn-audience:hover {
  background-color: #FFFFFF;
  color: #7A1212;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.audience-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card:hover .audience-media img {
  transform: scale(1.04);
}

/* --------------------------------------------------
   9. SECTION 7.4 — NOSSOS SERVIÇOS
   -------------------------------------------------- */
.services-section {
  background-color: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 27, 27, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-red-expert);
  background-color: var(--color-red-soft);
  border: 1px solid var(--color-red-border);
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.service-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.service-desc {
  font-size: 0.94rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-action {
  margin-top: auto;
}

.btn-service-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red-expert);
  padding: 0.75rem 0.85rem;
  background-color: var(--color-light-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-border);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-service-cta .btn-icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-service-cta span {
  white-space: nowrap;
}

.service-card:hover .btn-service-cta {
  background-color: var(--color-red-expert);
  color: var(--color-white);
  border-color: var(--color-red-expert);
  box-shadow: var(--shadow-red);
}

.btn-service-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service-card:hover .btn-service-cta svg {
  transform: translateX(4px);
}

/* --------------------------------------------------
   10. SECTION 7.5 — COMO FUNCIONA
   -------------------------------------------------- */
.how-it-works-section {
  background-color: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--color-red-expert);
  box-shadow: 0 0 10px rgba(158, 27, 27, 0.4);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  background-color: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition-base);
}

.timeline-step:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 27, 27, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.step-number-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: #1A1A1A;
  border: 2px solid var(--color-red-expert);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px rgba(158, 27, 27, 0.35);
  transition: var(--transition-fast);
}

.timeline-step:hover .step-number-wrap {
  background-color: var(--color-red-expert);
  box-shadow: 0 0 25px rgba(158, 27, 27, 0.6);
}

.step-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.92rem;
  color: #9CA3AF;
  line-height: 1.6;
}

/* --------------------------------------------------
   11. SECTION 7.6 — SOBRE A EXPERT
   -------------------------------------------------- */
.about-section {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about-media {
  position: relative;
  display: flex;
  height: 100%;
}

.about-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-light-border);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 100%;
  display: flex;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-body-text {
  font-size: 1.08rem;
  color: var(--color-text-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.about-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background-color: var(--color-light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-border);
}

.pillar-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-red-expert);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.2rem;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted-dark);
}

/* --------------------------------------------------
   12. SECTION 7.7 — CTA INTERMEDIÁRIO
   -------------------------------------------------- */
.cta-banner-section {
  background: linear-gradient(135deg, #7A1212 0%, #9E1B1B 45%, #6B0E0E 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  filter: contrast(1.2) brightness(1.1);
  pointer-events: none;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(158, 27, 27, 0.2) 0%, rgba(107, 14, 14, 0.75) 100%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  line-height: 1.25;
}

.cta-banner-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3.5px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  margin: 0.95rem auto 1.35rem auto;
}

.cta-highlight {
  color: #FFFFFF;
  font-style: normal;
  position: relative;
  display: inline-block;
}

.cta-banner-subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.btn-cta-white {
  background-color: var(--color-white);
  color: var(--color-red-expert);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.05rem 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: var(--transition-fast);
}

.btn-cta-white:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.btn-cta-white svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.btn-cta-white:hover svg {
  transform: scale(1.1);
}

/* --------------------------------------------------
   13. SECTION 7.8 — DEPOIMENTOS (CARROSSEL)
   -------------------------------------------------- */
.testimonials-section {
  background-color: var(--color-white);
  position: relative;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 2rem 0;
}

.testimonials-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  user-select: none;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 calc((100% - (2 * 1.75rem)) / 3);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
  min-height: 290px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(158, 27, 27, 0.3);
}

.testimonial-card-top {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.star-icon {
  width: 17px;
  height: 17px;
  fill: #F59E0B;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.google-badge-icon {
  width: 13px;
  height: 13px;
  display: block;
}

.testimonial-quote-box {
  height: 98px;
  max-height: 98px;
  overflow-y: auto;
  padding: 0.25rem 0.85rem;
  border-left: 2.5px solid #CBD5E1;
  border-right: 2.5px solid #CBD5E1;
  margin-bottom: 1.25rem;
}

.testimonial-quote-box::-webkit-scrollbar {
  width: 4px;
}

.testimonial-quote-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}

.testimonial-quote-box::-webkit-scrollbar-thumb {
  background: rgba(158, 27, 27, 0.35);
  border-radius: 4px;
}

.testimonial-quote-box::-webkit-scrollbar-thumb:hover {
  background: var(--color-red-expert);
}

.testimonial-quote {
  font-size: 0.94rem;
  color: #374151;
  line-height: 1.6;
  font-style: normal;
  margin: 0;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--color-light-border-subtle);
  margin-top: auto;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: rgba(158, 27, 27, 0.08);
  color: var(--color-red-expert);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(158, 27, 27, 0.2);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.3;
}

.author-role {
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
  line-height: 1.35;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.carousel-arrow:hover {
  background-color: var(--color-red-expert);
  color: var(--color-white);
  border-color: var(--color-red-expert);
  box-shadow: var(--shadow-red);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: #CBD5E1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  width: 28px;
  background-color: var(--color-red-expert);
}

/* --------------------------------------------------
   14. SECTION 7.9 — CONTATO
   -------------------------------------------------- */
.contact-section {
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: var(--color-light-bg);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-red-expert);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-white);
}

.contact-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--color-red-expert);
}

.contact-card:hover .contact-icon-wrap {
  background-color: var(--color-red-expert);
  border-color: var(--color-red-expert);
}

.contact-card:hover .contact-icon-wrap svg {
  fill: var(--color-white);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.contact-card-value {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  margin-bottom: 1.25rem;
  word-break: break-word;
}

.contact-card-btn {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red-expert);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-card-btn .btn-icon-svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-card-btn:hover {
  color: var(--color-red-hover);
}

.contact-central-action {
  text-align: center;
}

.contact-map-wrap {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-light-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2.25rem;
  margin-bottom: 2.75rem;
  background-color: var(--color-light-surface-2);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* --------------------------------------------------
   15. SECTION 7.10 — FAQ (LAYOUT SPLIT 2 COLUNAS)
   -------------------------------------------------- */
.faq-section {
  background-color: var(--color-light-bg);
}

.faq-split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.faq-info-col {
  position: sticky;
  top: 110px;
}

.faq-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin-top: 0.65rem;
  margin-bottom: 1.25rem;
}

.faq-accent-line {
  width: 48px;
  height: 3.5px;
  background-color: var(--color-red-expert);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.faq-desc {
  font-size: 1.02rem;
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.faq-accordion-col {
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: rgba(158, 27, 27, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  border-color: rgba(158, 27, 27, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  cursor: pointer;
  background-color: transparent;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  transition: var(--transition-fast);
}

.faq-question-text {
  display: inline-block;
  line-height: 1.45;
}

.faq-question-text strong {
  color: var(--color-red-expert);
  margin-right: 0.35rem;
  font-weight: 700;
}

.faq-item.active .faq-question {
  color: var(--color-red-expert);
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary-dark);
  transition: transform 0.35s ease, color 0.2s ease;
}

.faq-toggle-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.35s ease;
}

.faq-item.active .faq-toggle-icon {
  color: var(--color-red-expert);
}

.faq-item.active .faq-toggle-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.6rem 1.4rem 1.6rem;
}

.faq-answer-inner {
  font-size: 0.96rem;
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-light-surface-2);
}

/* --------------------------------------------------
   16. SECTION 7.11 — RODAPÉ (FOOTER)
   -------------------------------------------------- */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  border-top: 3px solid var(--color-red-expert);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #D1D5DB;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--color-red-expert);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.92rem;
  color: #9CA3AF;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #9CA3AF;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-red-expert);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.88rem;
  color: #9CA3AF;
}

.footer-copyright {
  text-align: center;
  width: 100%;
}

/* Assinatura do Desenvolvedor (Locmídia) */
.footer-dev-signature {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 0.65rem 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.footer-dev-signature a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-dev-signature a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-dev-signature img {
  height: 15px !important;
  max-height: 15px !important;
  width: auto !important;
  max-width: 160px !important;
  display: block !important;
  margin: 0 auto !important;
}

@media (max-width: 640px) {
  .footer-dev-signature {
    padding: 0.55rem 0 !important;
  }

  .footer-dev-signature img {
    height: 13px !important;
    max-height: 13px !important;
    max-width: 130px !important;
  }
}

/* --------------------------------------------------
   17. SECTION 7.12 — BOTÃO FLUTUANTE WHATSAPP
   -------------------------------------------------- */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  padding: 0.75rem 1.25rem 0.75rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px var(--color-whatsapp-glow);
  transition: var(--transition-base);
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-beacon {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: #4ADE80;
  border: 2px solid var(--color-whatsapp);
  animation: pulse-beacon 2s infinite;
}

@keyframes pulse-beacon {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.whatsapp-float-text {
  display: flex;
  flex-direction: column;
}

.whatsapp-float-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.whatsapp-float-status {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* --------------------------------------------------
   18. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  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; }

/* --------------------------------------------------
   19. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   -------------------------------------------------- */

/* Desktop Refinement (1024px a 1240px) — Mantém 100% layout Desktop */
@media (min-width: 1024px) and (max-width: 1240px) {
  .header-container {
    gap: 0.5rem;
  }

  .logo-img {
    height: 38px;
  }

  .nav-menu {
    gap: 0.65rem;
    flex-wrap: nowrap;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 0.25rem 0;
  }

  .btn-header-cta {
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .btn-header-cta .btn-icon-svg {
    width: 13px;
    height: 13px;
  }

  .hero-section {
    padding-top: 180px;
    padding-bottom: 260px;
  }

  .hero-content {
    width: 50%;
    max-width: 50%;
    text-align: left;
  }

  .hero-h1 {
    font-size: 2.75rem;
  }

  .trust-items-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

  .trust-item {
    gap: 0.6rem;
    padding: 0.2rem 0.2rem;
  }

  .trust-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    padding-right: 0.6rem;
  }

  .trust-item-icon {
    width: 38px;
    height: 38px;
  }

  .trust-item-icon svg {
    width: 17px;
    height: 17px;
  }

  .trust-item-title {
    font-size: 0.86rem;
  }

  .trust-item-desc {
    font-size: 0.74rem;
  }

  .differentials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .differential-card,
  .service-card,
  .timeline-step,
  .contact-card {
    padding: 1.65rem 1.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .btn-service-cta {
    font-size: 0.76rem;
    padding: 0.65rem 0.45rem;
  }

  .btn-service-cta .btn-icon-svg {
    width: 13px;
    height: 13px;
  }

  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .timeline-grid::before {
    display: block;
    top: 56px;
    left: 10%;
    right: 10%;
  }

  .step-number-wrap {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - (2 * 1.25rem)) / 3);
    padding: 1.5rem 1.2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .footer-top-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .faq-split-grid {
    gap: 2.5rem;
  }
}

/* Tablet e Telas Menores que 1024px (<= 1023px) */
@media (max-width: 1023px) {
  .nav-menu,
  .header-cta-wrap {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 220px;
  }

  .hero-content {
    width: 70%;
    max-width: 70%;
    text-align: left;
  }

  .hero-eyebrow {
    margin-left: 0;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .trust-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

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

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

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

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

  .timeline-grid::before {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap img {
    height: 380px;
  }

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

  .faq-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-info-col {
    position: static;
  }

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

  .topbar-container {
    justify-content: center;
  }

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

  .topbar-right {
    display: none;
  }
}

@media (max-width: 960px) {
  .audience-card,
  .audience-card.card-reversed {
    grid-template-columns: 1fr;
  }

  .audience-card .audience-media,
  .audience-card.card-reversed .audience-media {
    order: -1;
  }

  .audience-card .audience-body,
  .audience-card.card-reversed .audience-body {
    order: 1;
  }

  .audience-media {
    min-height: 260px;
    max-height: 320px;
  }

  .audience-body {
    padding: 2.25rem 1.5rem;
  }

  .audience-title {
    font-size: 1.65rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  /* Topbar Mobile: Centralizado e Sem Quebra de Linha */
  .topbar {
    padding: 0.45rem 0.5rem;
  }

  .topbar-container {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  .topbar-left {
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .topbar-link {
    white-space: nowrap;
    font-size: clamp(0.66rem, 2.8vw, 0.78rem);
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
  }

  .topbar-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  /* Mobile Drawer — 100% do tamanho da tela sem passar e sem scroll */
  .mobile-drawer {
    width: 100% !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: clamp(0.75rem, 2vh, 1.25rem) clamp(1rem, 4vw, 1.5rem) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    overflow-y: hidden !important;
    touch-action: none !important;
  }

  .mobile-drawer-header {
    margin-bottom: 0 !important;
    padding-bottom: clamp(0.35rem, 1vh, 0.75rem) !important;
  }

  .mobile-drawer-logo {
    height: clamp(26px, 4vh, 36px) !important;
  }

  .mobile-nav-list {
    gap: 0 !important;
    justify-content: space-evenly !important;
    padding: clamp(0.2rem, 1vh, 0.5rem) 0 !important;
  }

  .mobile-nav-link {
    font-size: clamp(0.85rem, 2.1vh, 1.05rem) !important;
    padding: clamp(0.1rem, 0.4vh, 0.25rem) 0 !important;
  }

  .mobile-drawer-footer {
    margin-top: 0 !important;
    padding-top: clamp(0.35rem, 1vh, 0.75rem) !important;
  }

  /* Botões 100% largura e sem quebra de texto no CTA */
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-hero-cta,
  .btn-hero-secondary,
  .btn-audience,
  .btn-service-cta,
  .btn-cta-banner,
  .contact-card-btn,
  .btn-contact-action,
  .about-content .btn,
  .cta-banner-actions .btn,
  .audience-action .btn,
  .contact-action-box .btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  .btn-audience {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: clamp(0.68rem, 3.1vw, 0.82rem) !important;
    padding: 0.85rem 0.4rem !important;
    gap: 0.35rem !important;
  }

  .btn-audience .btn-icon-svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
  }

  .btn-hero-cta,
  .btn-hero-secondary,
  .btn-cta-banner,
  .btn-contact-action,
  .about-content .btn {
    font-size: clamp(0.74rem, 3.5vw, 0.95rem);
    padding: 0.85rem 0.75rem;
  }

  .btn-service-cta,
  .contact-card-btn {
    font-size: clamp(0.72rem, 3.2vw, 0.84rem);
    padding: 0.75rem 0.5rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    background-image: url('../assets/hero-bg-mobile.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 250px;
    padding-bottom: 210px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

  .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.65rem;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero-h1 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .hero-h1::after {
    width: 36px;
    height: 3px;
    margin: 0.65rem auto 0.85rem auto;
  }

  .hero-subtitle {
    font-size: clamp(0.82rem, 2.7vw, 0.92rem);
    line-height: 1.45;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.15rem;
    max-width: 95%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }

  .btn-hero-cta {
    font-size: clamp(0.76rem, 3.4vw, 0.9rem) !important;
    padding: 0.8rem 0.75rem !important;
  }

  .trust-card-wrapper {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .trust-items-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .trust-item {
    padding: 0.45rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .differentials-section {
    padding-top: 14rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .differential-card {
    padding: 1.75rem 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  /* Soluções — Imagem em cima e textos em baixo em ambos os cards */
  .audience-card,
  .audience-card.card-reversed {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .audience-card .audience-media,
  .audience-card.card-reversed .audience-media {
    order: -1;
    width: 100%;
    min-height: 220px;
    max-height: 270px;
  }

  .audience-card .audience-body,
  .audience-card.card-reversed .audience-body {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 1.75rem 1rem;
  }

  .audience-title {
    font-size: 1.5rem;
  }

  .audience-desc {
    font-size: 0.92rem;
  }

  .audience-feature-item {
    font-size: 0.85rem;
  }

  .audience-action {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Como Funciona */
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .timeline-step {
    padding: 1.5rem 1.25rem;
  }

  .timeline-grid::before {
    display: none;
  }

  /* Depoimentos */
  .testimonial-card {
    flex: 0 0 100%;
    padding: 1.5rem 1.25rem;
    min-height: 260px;
  }

  .testimonial-quote-box {
    height: 105px;
    max-height: 105px;
    padding: 0.25rem 0.65rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  /* Sobre Nós */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-wrap img {
    height: 280px;
    border-radius: var(--radius-lg);
  }

  .about-body-text {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .about-pillars {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .about-pillar-item {
    padding: 0.85rem;
  }

  /* CTA Intermediário */
  .cta-banner-content {
    padding: 2.75rem 1.25rem;
  }

  .cta-banner-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .cta-banner-subtitle {
    font-size: 0.95rem;
  }

  /* Contato */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-map-wrap {
    height: 260px;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
  }

  .contact-action-box {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .contact-action-title {
    font-size: 1.4rem;
  }

  .contact-action-subtitle {
    font-size: 0.92rem;
  }

  /* FAQ */
  .faq-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-question {
    padding: 1rem 1.15rem;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 1.15rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.15rem 1.15rem 1.15rem;
  }

  /* Rodapé: Centralização exclusiva dos elementos de marca */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand-col a {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-logo {
    margin: 0 auto 1.25rem auto;
  }

  .footer-slogan {
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
  }

  .footer-brand-desc {
    text-align: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .whatsapp-float-text {
    display: none;
  }

  .whatsapp-float-btn {
    padding: 0.85rem;
    border-radius: var(--radius-full);
    bottom: 20px;
    right: 20px;
  }
}
