/* ================================================================
   GEVERSON CHAGAS — ADVOGADO CRIMINALISTA E PREVIDENCIÁRIO
   Design System & Styles
   ================================================================ */

/* --------------------------------
   1. CUSTOM PROPERTIES
   -------------------------------- */
:root {
  /* Brand Colors — extraídas da identidade visual */
  --brand-primary: #1B2A4A;
  --brand-secondary: #C4985A;
  --brand-accent: #A07A3E;
  --brand-secondary-light: #D4B07A;

  /* Surfaces */
  --surface-dark: #0F1923;
  --surface-light: #F5F3EF;
  --surface-white: #FFFFFF;
  --surface-mid: #E8E4DD;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-on-dark: #F0EDE8;
  --text-on-dark-secondary: #A8A29E;
  --text-on-dark-heading: #FFFFFF;

  /* Borders */
  --border-color: #D4CFC7;
  --border-color-dark: #2A3D5C;

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

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 350ms ease;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--surface-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* --------------------------------
   3. TYPOGRAPHY
   -------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--brand-secondary);
  flex-shrink: 0;
}

.section-intro {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-top: 1rem;
}

/* --------------------------------
   4. LAYOUT
   -------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section--dark {
  background-color: var(--brand-primary);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark-heading);
}

.section--dark .section-intro {
  color: var(--text-on-dark-secondary);
}

.section--darker {
  background-color: var(--surface-dark);
  color: var(--text-on-dark);
}

.section--darker h2,
.section--darker h3,
.section--darker h4 {
  color: var(--text-on-dark-heading);
}

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

/* --------------------------------
   5. SKIP LINK
   -------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background-color: var(--brand-secondary);
  color: var(--surface-dark);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* --------------------------------
   6. HEADER & NAVIGATION
   -------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color var(--transition-base),
              padding var(--transition-base),
              box-shadow var(--transition-base);
}

.header--scrolled {
  background-color: rgba(9, 13, 21, 0.95);
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 152, 90, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.header__brand-info {
  display: flex;
  flex-direction: column;
}

.header__brand-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.header__brand-tag {
  font-family: var(--font-body);
  font-size: 0.5875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #A0AEC0;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brand-secondary);
  transition: width var(--transition-base);
}

.header__nav-link:hover,
.header__nav-link:focus-visible,
.header__nav-link--active {
  color: #FFFFFF;
}

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after,
.header__nav-link--active::after {
  width: 100%;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform var(--transition-fast),
              opacity var(--transition-fast);
  transform-origin: center;
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100dvh;
  background-color: #0B0F17;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right var(--transition-base);
  overflow-y: auto;
  border-left: 1px solid rgba(196, 152, 90, 0.15);
}

.mobile-menu--open {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base),
              visibility var(--transition-base);
  backdrop-filter: blur(4px);
}

.mobile-menu__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #E2E8F0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast),
              padding-left var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  color: var(--brand-secondary);
  padding-left: 0.5rem;
}

.mobile-menu__cta {
  margin-top: 2rem;
}

/* --------------------------------
   7. BUTTONS & PILLS
   -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
}

.btn--pill-white {
  background-color: #FFFFFF;
  color: #0A0E17;
  border: 1px solid #FFFFFF;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background-color var(--transition-fast);
}

.btn--pill-white:hover {
  background-color: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  color: #000000;
}

.btn--primary {
  background-color: var(--brand-secondary);
  color: var(--surface-dark);
  border-color: var(--brand-secondary);
}

.btn--primary:hover {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-on-dark-heading);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

.btn--outline {
  background-color: transparent;
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

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

.btn--small {
  min-height: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

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

/* --------------------------------
   8. HERO (IMAGEM OFICIAL PANORÂMICA NO FUNDO)
   -------------------------------- */
.hero--panorama {
  position: relative;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  background-color: #070B13;
  background-image: url('../images/hero-desktop.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    #070B13 0%, 
    rgba(7, 11, 19, 0.94) 36%, 
    rgba(7, 11, 19, 0.75) 50%, 
    rgba(7, 11, 19, 0.2) 65%, 
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

/* Badge Autoral Superior */
.hero__badge-author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero__badge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--brand-secondary);
  flex-shrink: 0;
}

.hero__badge-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge-divider {
  width: 3px;
  height: 14px;
  background-color: #10B981;
  border-radius: 2px;
  display: block;
}

.hero__badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #E2E8F0;
  letter-spacing: 0.01em;
}

/* Headline Principal Display */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-weight: 700;
}

.hero__text {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #94A3B8;
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Status Badge com Ponto Verde */
.hero__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero__status-info {
  display: flex;
  flex-direction: column;
}

.hero__status-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #E2E8F0;
  line-height: 1.2;
}

.hero__status-sub {
  font-size: 0.75rem;
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 500;
}

.hero__status-sub:hover {
  text-decoration: underline;
}

/* Coluna e Card Flutuante */
.hero__card-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 1.5rem;
}

.hero__floating-card {
  position: relative;
  z-index: 10;
  background: rgba(11, 16, 28, 0.84);
  border: 1px solid rgba(196, 152, 90, 0.22);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  max-width: 310px;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(196, 152, 90, 0.08);
  transition: transform var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  margin-bottom: 2rem;
}

.hero__floating-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 152, 90, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6),
              0 0 25px rgba(196, 152, 90, 0.15);
}

.hero__floating-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--brand-secondary);
  flex-shrink: 0;
}

.hero__floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__floating-content {
  flex: 1;
}

.hero__floating-quote {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #F1F5F9;
  font-style: italic;
  margin-bottom: 0.35rem;
}

.hero__floating-author {
  font-size: 0.6875rem;
  color: var(--brand-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}

/* --------------------------------
   9. CONTEXTUALIZAÇÃO (3 CARDS ESCUROS DA REFERÊNCIA)
   -------------------------------- */
.section--dark-context {
  background-color: #0A0E17;
  background-image: linear-gradient(180deg, #080C14 0%, #0D1322 100%);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.eyebrow--gold {
  color: var(--brand-secondary);
}

.context__title {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section-intro--light {
  color: #94A3B8;
  line-height: 1.8;
}

.context__cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Dark Card com Estilo Retângulo da Referência */
.dark-card {
  position: relative;
  background: linear-gradient(155deg, #131A29 0%, #0D1320 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  overflow: hidden;
}

.dark-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 152, 90, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45),
              0 0 20px rgba(196, 152, 90, 0.06);
}

.dark-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dark-card__icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  background-color: rgba(196, 152, 90, 0.08);
  border: 1px solid rgba(196, 152, 90, 0.2);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

.dark-card:hover .dark-card__icon-box {
  background-color: rgba(196, 152, 90, 0.15);
  color: var(--brand-secondary-light);
}

.dark-card__icon-box svg {
  width: 24px;
  height: 24px;
}

.dark-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  margin: 0;
}

.dark-card__desc {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0;
}

.dark-card__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.dark-card:hover .dark-card__accent-line {
  opacity: 1;
}

/* --------------------------------
   10. ÁREAS DE ATUAÇÃO (CARDS 3D ESCUROS DA REFERÊNCIA)
   -------------------------------- */
.section--dark-areas {
  position: relative;
  background-color: #070B12;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(196, 152, 90, 0.07) 0%, rgba(7, 11, 18, 0) 60%),
    linear-gradient(180deg, #0A0E17 0%, #060910 100%);
  color: #FFFFFF;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.areas__bg-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(30, 48, 80, 0.35) 0%, rgba(7, 11, 18, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.areas__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.areas__subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: #D4B07A;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.areas__main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E6C594;
  background: linear-gradient(135deg, #FFF0D4 0%, #C4985A 50%, #A07A3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.areas__header .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 660px;
}

/* Filtros por Categoria */
.areas__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.areas__filter-btn {
  padding: 0.6rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94A3B8;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.areas__filter-btn:hover {
  color: #FFFFFF;
  background-color: rgba(196, 152, 90, 0.1);
  border-color: rgba(196, 152, 90, 0.3);
}

.areas__filter-btn--active {
  color: #0A0E17;
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(196, 152, 90, 0.3);
}

.areas__filter-btn--active:hover {
  background-color: var(--brand-secondary-light);
  color: #0A0E17;
}

/* Grid de Cards 3D */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

/* Card 3D Estilo Referência */
.service-card {
  position: relative;
  background: linear-gradient(160deg, #141B28 0%, #0E131E 60%, #090D15 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4),
              0 1px 2px rgba(255, 255, 255, 0.04) inset;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 350ms ease,
              opacity 300ms ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(196, 152, 90, 0.45);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.65),
              0 0 30px rgba(196, 152, 90, 0.12),
              0 1px 3px rgba(196, 152, 90, 0.2) inset;
}

/* Ícone 3D com Acabamento Dourado Metálico */
.service-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4985A;
  background: linear-gradient(145deg, rgba(196, 152, 90, 0.18) 0%, rgba(138, 100, 40, 0.05) 100%);
  border: 1px solid rgba(196, 152, 90, 0.25);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3),
              0 0 15px rgba(196, 152, 90, 0.1);
  transition: transform var(--transition-fast),
              background var(--transition-fast),
              box-shadow var(--transition-fast);
}

.service-card:hover .service-card__icon-wrap {
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(145deg, rgba(196, 152, 90, 0.3) 0%, rgba(138, 100, 40, 0.15) 100%);
  border-color: var(--brand-secondary);
  box-shadow: 0 6px 18px rgba(196, 152, 90, 0.25);
  color: #F8E7C8;
}

.service-card__icon-wrap svg {
  width: 24px;
  height: 24px;
}

/* Categoria / Tag */
.service-card__category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

/* Título do Serviço */
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* Descrição do Serviço */
.service-card__desc {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 2rem;
  flex: 1;
}

/* Link de Ação (MAIS DETALHES >) */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4B07A;
  text-decoration: none;
  margin-top: auto;
  transition: color var(--transition-fast),
              gap var(--transition-fast);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link {
  color: #FFFFFF;
  gap: 0.75rem;
}

.service-card:hover .service-card__link svg {
  transform: translateX(3px);
  color: var(--brand-secondary);
}

/* Borda com Glow Animado */
.service-card__border-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-secondary) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-card__border-glow {
  opacity: 1;
}

/* Bloco CTA Integrado de Áreas */
.areas__cta-block {
  margin-top: 4.5rem;
  padding: 2.5rem 2.5rem;
  background: linear-gradient(145deg, rgba(20, 27, 40, 0.9) 0%, rgba(12, 17, 26, 0.95) 100%);
  border: 1px solid rgba(196, 152, 90, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.areas__cta-text {
  max-width: 620px;
}

.areas__cta-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.areas__cta-sub {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------
   11. COMO FUNCIONA (CARDS 3D ESCUROS COM FLUXO)
   -------------------------------- */
.section--dark-steps {
  position: relative;
  background-color: #080C14;
  background-image: linear-gradient(180deg, #060910 0%, #0B101D 50%, #070B12 100%);
  color: #FFFFFF;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.steps__bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(196, 152, 90, 0.08) 0%, rgba(8, 12, 20, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.steps__header {
  margin-bottom: 3.5rem;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.steps__title {
  color: #FFFFFF;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.steps__cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

/* Card 3D de cada Etapa */
.step-card {
  position: relative;
  background: linear-gradient(160deg, #141B28 0%, #0E131E 60%, #090D15 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4),
              0 1px 2px rgba(255, 255, 255, 0.04) inset;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 350ms ease;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(196, 152, 90, 0.45);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.65),
              0 0 25px rgba(196, 152, 90, 0.12),
              0 1px 3px rgba(196, 152, 90, 0.2) inset;
}

/* Topo do Card com Número e Ícone */
.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.step-card__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #C4985A;
  background: linear-gradient(135deg, #FFF0D4 0%, #C4985A 50%, #A07A3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.step-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4985A;
  background: linear-gradient(145deg, rgba(196, 152, 90, 0.18) 0%, rgba(138, 100, 40, 0.05) 100%);
  border: 1px solid rgba(196, 152, 90, 0.25);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast);
}

.step-card:hover .step-card__icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(145deg, rgba(196, 152, 90, 0.3) 0%, rgba(138, 100, 40, 0.15) 100%);
  border-color: var(--brand-secondary);
  color: #F8E7C8;
}

.step-card__icon svg {
  width: 22px;
  height: 22px;
}

/* Tag de Fase */
.step-card__tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

/* Título do Passo */
.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

/* Descrição do Passo */
.step-card__desc {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Borda Glow Inferior */
.step-card__border-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-secondary) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.step-card:hover .step-card__border-glow {
  opacity: 1;
}

/* --------------------------------
   12. SOBRE (IMAGEM OFICIAL PANORÂMICA NO FUNDO EM 100VH)
   -------------------------------- */
.section--about-panorama {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #070A11;
  background-image: url('../images/sobre-fundo-oficial.jpg');
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding-top: calc(var(--section-padding) * 1.2);
  padding-bottom: calc(var(--section-padding) * 1.2);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-panorama__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    #070A11 0%, 
    rgba(7, 10, 17, 0.96) 38%, 
    rgba(7, 10, 17, 0.85) 52%, 
    rgba(7, 10, 17, 0.4) 70%, 
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-panorama__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-panorama__content {
  max-width: 580px;
}

.about-panorama__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.about-panorama__subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brand-secondary);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.about-panorama__bio {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-panorama__bio p + p {
  margin-top: 1rem;
}

.about-panorama__bio strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Badges / Pilares */
.about-panorama__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 152, 90, 0.25);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #E2E8F0;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-pill svg {
  width: 16px;
  height: 16px;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

.about-panorama__cta {
  display: flex;
  align-items: center;
}

/* --------------------------------
   13. PLANTÃO CRIMINAL (FUNDO ESCURO CONTÍNUO INTEGRADO)
   -------------------------------- */
.section--emergency-banner {
  position: relative;
  min-height: auto;
  background-color: #070B13;
  background-image: linear-gradient(180deg, 
    #070A11 0%, 
    #090E18 50%, 
    #070A12 100%
  );
  color: #FFFFFF;
  padding-top: calc(var(--section-padding) * 0.9);
  padding-bottom: calc(var(--section-padding) * 0.9);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.emergency__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(27, 42, 74, 0.25) 0%, rgba(7, 11, 19, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.emergency__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.emergency__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.emergency__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #E6C594;
  background: linear-gradient(135deg, #FFF0D4 0%, #D4A86A 50%, #A07A3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  text-align: center;
}

.emergency__text {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.emergency__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Botão Pill Dourado */
.btn--pill-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #070B12;
  background: linear-gradient(135deg, #E5C388 0%, #C4985A 100%);
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(196, 152, 90, 0.35);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn--pill-gold:hover {
  background: linear-gradient(135deg, #F8E7C8 0%, #D4A86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 152, 90, 0.5);
  color: #070B12;
}

.btn--pill-gold .btn__icon {
  width: 20px;
  height: 20px;
}

/* Badge de Telefone Direto */
.emergency__phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.15rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #E2E8F0;
  backdrop-filter: blur(8px);
}

.emergency__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-dot 2s infinite ease-in-out;
  flex-shrink: 0;
}

.emergency__phone-badge a {
  color: var(--brand-secondary-light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.emergency__phone-badge a:hover {
  text-decoration: underline;
}

/* --------------------------------
   14. FAQ (PERGUNTAS FREQUENTES — PÁGINA CHEIA 100VH)
   -------------------------------- */
.section--dark-faq {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: #070A12;
  background-image: url('../images/faq-fundo-oficial.jpg');
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding-top: calc(var(--section-padding) * 1.2);
  padding-bottom: calc(var(--section-padding) * 1.2);
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.faq__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(7, 10, 18, 0.94) 0%, 
    rgba(9, 14, 25, 0.88) 50%, 
    rgba(7, 10, 18, 0.96) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.faq__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #E6C594;
  background: linear-gradient(135deg, #FFF0D4 0%, #D4A86A 50%, #A07A3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.faq__header .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Lista de Cards do FAQ */
.faq__list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: linear-gradient(160deg, rgba(20, 27, 40, 0.85) 0%, rgba(11, 16, 26, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item:hover {
  border-color: rgba(196, 152, 90, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.faq__item--open {
  border-color: rgba(196, 152, 90, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55),
              0 0 25px rgba(196, 152, 90, 0.12);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
  min-height: 54px;
}

.faq__question:hover {
  color: var(--brand-secondary-light);
}

.faq__question:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: -2px;
}

.faq__question-text {
  flex: 1;
  line-height: 1.4;
}

/* Ícone com Círculo Animado */
.faq__icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(196, 152, 90, 0.1);
  border: 1px solid rgba(196, 152, 90, 0.25);
  border-radius: 50%;
  color: var(--brand-secondary);
  flex-shrink: 0;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.faq__icon {
  width: 16px;
  height: 16px;
}

.faq__item--open .faq__icon-wrap {
  transform: rotate(45deg);
  background-color: var(--brand-secondary);
  color: #070A12;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 12px rgba(196, 152, 90, 0.4);
}

/* Resposta com Transição Suave */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 380ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 300ms ease;
}

.faq__item--open .faq__answer {
  max-height: 280px;
  opacity: 1;
}

.faq__answer-inner {
  padding: 0.25rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.faq__answer-inner p {
  font-size: 0.9375rem;
  color: #CBD5E1;
  line-height: 1.8;
  margin: 0;
}

/* Bloco CTA no Fechamento do FAQ */
.faq__cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.faq__cta-text {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 1.25rem;
}

/* --------------------------------
   15. CONTATO & LOCALIZAÇÃO (PÁGINA CHEIA 100VH — FUNDO CONTÍNUO)
   -------------------------------- */
.section--dark-contact {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: #070A12;
  background-image: url('../images/faq-fundo-oficial.jpg');
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-top: calc(var(--section-padding) * 1.2);
  padding-bottom: calc(var(--section-padding) * 1.2);
  color: #FFFFFF;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(7, 10, 18, 0.95) 0%, 
    rgba(9, 14, 25, 0.9) 50%, 
    rgba(7, 10, 18, 0.97) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.contact__glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(196, 152, 90, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact__header {
  margin-bottom: 2.25rem;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #E6C594;
  background: linear-gradient(135deg, #FFF0D4 0%, #D4A86A 50%, #A07A3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.contact__intro {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.75;
  max-width: 580px;
}

/* Cards de Informações com Ícones 3D (Restaurados) */
.contact__cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(160deg, rgba(20, 27, 40, 0.85) 0%, rgba(11, 16, 26, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
  border-color: rgba(196, 152, 90, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45),
              0 0 15px rgba(196, 152, 90, 0.1);
}

.contact-card__icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__3d-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 10px rgba(196, 152, 90, 0.25));
}

.contact-card__body {
  flex: 1;
}

.contact-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-secondary);
  margin-bottom: 0.25rem;
}

.contact-card__label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.contact-card__val {
  font-size: 0.9375rem;
  color: #E2E8F0;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.contact-card__link {
  color: var(--brand-secondary-light);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-card__link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.contact-card__sub {
  font-size: 0.8125rem;
  color: #64748B;
}

/* Moldura do Google Maps */
.contact__map-frame {
  width: 100%;
  height: 270px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------
   16. FORMULÁRIO DARK PERSONALIZADO (CARD RESTAURADO)
   -------------------------------- */
.form-card {
  background: linear-gradient(160deg, #131926 0%, #0B101A 100%);
  border: 1px solid rgba(196, 152, 90, 0.25);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(196, 152, 90, 0.06);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.form-card:hover {
  border-color: rgba(196, 152, 90, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(196, 152, 90, 0.12);
}

.form-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-secondary);
  background: rgba(196, 152, 90, 0.1);
  border: 1px solid rgba(196, 152, 90, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.form-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.form-card__desc {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form__label--required::after {
  content: ' *';
  color: var(--brand-secondary);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: 0.9375rem;
  background-color: rgba(7, 11, 19, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #FFFFFF;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background-color var(--transition-fast);
  min-height: 48px;
  font-family: var(--font-body);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(196, 152, 90, 0.2);
  background-color: rgba(7, 11, 19, 0.95);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #64748B;
  opacity: 0.8;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C4985A' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  padding-right: 2.75rem;
}

.form__select option {
  background-color: #0B101A;
  color: #FFFFFF;
}

.form__textarea {
  min-height: 95px;
  resize: vertical;
}

.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-secondary);
  cursor: pointer;
}

.form__checkbox-label {
  font-size: 0.8125rem;
  color: #94A3B8;
  line-height: 1.5;
  cursor: pointer;
}

.form__submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.form__error {
  font-size: 0.8125rem;
  color: #F87171;
  margin-top: 0.375rem;
  display: none;
}

.form__group--error .form__input,
.form__group--error .form__select,
.form__group--error .form__textarea {
  border-color: #F87171;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.2);
}

.form__group--error .form__error {
  display: block;
}

/* --------------------------------
   17. FOOTER
   -------------------------------- */
.footer {
  background-color: var(--surface-dark);
  color: var(--text-on-dark-secondary);
  padding-top: 3.5rem;
  padding-bottom: 0;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color-dark);
}

.footer__brand {
  max-width: 360px;
}

.footer__logo-img,
.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.footer__brand-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-on-dark-secondary);
}

.footer__nav-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-heading);
  margin-bottom: 1rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  transition: color var(--transition-fast);
}

.footer__nav-link:hover,
.footer__nav-link:focus-visible {
  color: var(--brand-secondary);
}

.footer__contact-value {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer__contact-value a {
  color: var(--brand-secondary-light);
  transition: color var(--transition-fast);
}

.footer__contact-value a:hover {
  color: var(--brand-secondary);
}

.footer__disclaimer {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-color-dark);
}

.footer__disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-on-dark-secondary);
  max-width: 800px;
}

.footer__bottom {
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--text-on-dark-secondary);
  text-align: center;
}

/* --------------------------------
   18. WHATSAPP FLOATING BUTTON
   -------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-secondary);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--surface-dark);
}

/* --------------------------------
   19. MOBILE BOTTOM BAR
   -------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background-color: var(--brand-primary);
  border-top: 1px solid var(--border-color-dark);
  padding: 0.625rem var(--container-padding);
}

.mobile-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-secondary);
  text-align: center;
  transition: color var(--transition-fast);
}

.mobile-bar__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.mobile-bar__link:hover {
  color: var(--brand-secondary-light);
}

/* --------------------------------
   20. ANIMATIONS (CSS fallback)
   -------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

/* When JS is not available, show all content */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* --------------------------------
   21. UTILITIES
   -------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------
   22. POLÍTICA DE PRIVACIDADE
   -------------------------------- */
.privacy {
  padding-top: calc(80px + var(--section-padding));
  padding-bottom: var(--section-padding);
  min-height: 100dvh;
}

.privacy__header {
  margin-bottom: 2.5rem;
}

.privacy__content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.privacy__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.privacy__content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy__content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 0.5rem;
  position: relative;
}

.privacy__content li::before {
  content: '—';
  position: absolute;
  left: -1.25rem;
  color: var(--brand-secondary);
}

/* ================================
   23. RESPONSIVE DESIGN
   ================================ */

/* 768px — Tablets */
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }

  .header__menu-toggle {
    display: none;
  }

  .mobile-menu,
  .mobile-menu__overlay {
    display: none;
  }

  /* Hero */
  .hero__container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }

  .hero__person-img {
    max-height: 540px;
  }

  /* 3 Dark Cards em Grid de 3 colunas */
  .context__cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Grid de Serviços 3D em 2 colunas no Tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* 4 Cards de Como Funciona em 2 colunas no Tablet */
  .steps__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* About em 2 Colunas */
  .about__container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

/* 1024px — Laptops */
@media (min-width: 1024px) {
  .header__nav-list {
    gap: 2.25rem;
  }

  /* Hero no Desktop */
  .hero--panorama {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero__container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    min-height: calc(100dvh - 80px);
  }

  .hero__title {
    font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  }

  /* Grid de Serviços 3D em 3 colunas no Desktop */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  /* 4 Cards de Como Funciona em 4 colunas no Desktop */
  .steps__cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* About em 2 Colunas no Desktop */
  .about__container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .about__lawyer-img {
    max-height: 580px;
  }

  /* Contact no Desktop */
  .contact__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }

  .contact__map-frame {
    height: 300px;
  }
}

/* 1440px — Desktop */
@media (min-width: 1440px) {
  :root {
    --container-max: 1280px;
  }

  .hero__person-img {
    max-height: 660px;
  }

  .services-grid {
    gap: 2rem;
  }
}

/* 1920px — Large screens */
@media (min-width: 1920px) {
  :root {
    --container-max: 1400px;
  }

  body {
    font-size: 1.0625rem;
  }
}

/* ================================
   23. RESPONSIVE DESIGN (MOBILE FIRST REFINADO)
   ================================ */

/* Mobile-specific (below 768px) */
@media (max-width: 767px) {
  /* Container e Espaçamentos Gerais */
  :root {
    --section-padding: 3.5rem;
    --container-padding: 1.15rem;
  }

  body {
    font-size: 0.9375rem;
    overflow-x: hidden;
  }

  /* Header Mobile */
  .header {
    height: 68px;
  }

  .header__brand-name {
    font-size: 1rem;
  }

  .header__brand-tag {
    font-size: 0.6875rem;
  }

  .header__logo-img {
    width: 38px;
    height: 38px;
  }

  /* Header no Mobile */
  .header {
    padding: 0.65rem 0;
  }

  .header__brand-group {
    gap: 0.6rem;
  }

  .header__logo-img {
    height: 32px;
  }

  .header__brand-name {
    font-size: 0.8125rem;
  }

  .header__brand-tag {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .header__menu-toggle {
    width: 40px;
    height: 40px;
  }

  /* Hero no Mobile (Imagem Vertical Portrait Mobile First) */
  .hero--panorama {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    background-image: url('../images/hero-mobile.png');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #070B13;
    min-height: auto;
  }

  .hero__overlay {
    background: linear-gradient(180deg, 
      rgba(7, 11, 19, 0) 0%, 
      rgba(7, 11, 19, 0) 220px, 
      rgba(7, 11, 19, 0.4) 300px, 
      rgba(7, 11, 19, 0.92) 380px, 
      #070B13 440px, 
      #070B13 100%
    );
  }

  .hero__container {
    gap: 1.5rem;
    padding-top: 0.5rem;
  }

  .hero__content {
    margin-top: clamp(280px, 75vw, 380px);
    max-width: 100%;
  }

  .hero__badge-author {
    margin-bottom: 1.25rem;
    padding: 0.3rem 0.75rem 0.3rem 0.35rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 6.8vw, 2.35rem);
    line-height: 1.18;
    margin-bottom: 1rem;
  }

  .hero__text {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero__status-badge {
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
  }

  .hero__card-col {
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
  }

  .hero__floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    width: 100%;
    padding: 1rem 1.15rem;
    margin: 0;
  }

  /* 3 Cards de Contextualização no Mobile */
  .context__cards-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .dark-card {
    padding: 1.6rem 1.35rem;
    border-radius: 14px;
  }

  .dark-card__title {
    font-size: 1.2rem;
  }

  /* Filtros de Áreas de Atuação em Carrossel com Scroll Horizontal */
  .areas__filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0.25rem 0.75rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-bottom: 2rem;
  }

  .areas__filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.55rem 1.15rem;
    font-size: 0.8125rem;
  }

  /* Grid de Serviços 3D no Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.75rem 1.4rem;
    min-height: auto;
    border-radius: 14px;
  }

  .areas__cta-block {
    flex-direction: column;
    text-align: center;
    padding: 1.85rem 1.35rem;
    gap: 1.25rem;
    border-radius: 14px;
  }

  .areas__cta-block .btn {
    width: 100%;
  }

  /* 4 Cards de Como Funciona no Mobile */
  .steps__cards-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .step-card {
    padding: 1.6rem 1.35rem;
    border-radius: 14px;
  }

  /* Seção Sobre no Mobile (Imagem Vertical com Beca Mobile First) */
  .section--about-panorama {
    background-image: url('../images/about-mobile.png');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #070A11;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }

  .about-panorama__overlay {
    background: linear-gradient(180deg, 
      rgba(7, 10, 17, 0) 0%, 
      rgba(7, 10, 17, 0) 200px, 
      rgba(7, 10, 17, 0.45) 290px, 
      rgba(7, 10, 17, 0.92) 360px, 
      #070A11 420px, 
      #070A11 100%
    );
  }

  .about-panorama__content {
    margin-top: clamp(270px, 72vw, 360px);
    max-width: 100%;
  }

  .about-pills {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .about-pill {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  .about-panorama__cta .btn {
    width: 100%;
  }

  /* Plantão Criminal no Mobile */
  .section--emergency-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .emergency__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn--pill-gold {
    width: 100%;
    padding: 0.95rem 1.5rem;
  }

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

  /* FAQ no Mobile */
  .section--dark-faq {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .faq__header {
    margin-bottom: 2.25rem;
  }

  .faq__question {
    padding: 1.15rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq__answer-inner {
    padding: 0.25rem 1.25rem 1.25rem;
  }

  .faq__cta-wrap {
    margin-top: 2.5rem;
  }

  .faq__cta-wrap .btn {
    width: 100%;
  }

  /* Formulário de Contato & Mapa no Mobile */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .contact-card {
    padding: 0 0 1rem 0;
    gap: 1rem;
  }

  .contact-card__icon-wrap {
    width: 40px;
    height: 40px;
  }

  .contact-card__3d-icon {
    width: 40px;
    height: 40px;
  }

  .contact__map-frame {
    height: 240px;
    border-radius: 12px;
  }

  .form-card {
    padding: 0;
  }

  .form__input,
  .form__select {
    min-height: 48px;
    font-size: 16px; /* Evita auto-zoom no Safari iOS */
  }

  .form__textarea {
    font-size: 16px;
  }

  /* Footer no Mobile */
  .footer {
    padding-top: 3.5rem;
    padding-bottom: 5.5rem; /* Espaço para a barra fixa inferior */
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  /* Barra Fixa Inferior Mobile Refinada */
  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 850;
    background: rgba(7, 11, 19, 0.94);
    border-top: 1px solid rgba(196, 152, 90, 0.3);
    padding: 0.65rem 1.15rem;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  }

  .mobile-bar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #070B12;
    background: linear-gradient(135deg, #E5C388 0%, #C4985A 100%);
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(196, 152, 90, 0.35);
  }

  .mobile-bar__link svg {
    width: 18px;
    height: 18px;
    fill: #070B12;
  }

  /* Botão Flutuante do WhatsApp no Mobile */
  .whatsapp-float {
    bottom: calc(4.85rem + env(safe-area-inset-bottom, 0px));
    right: 1.15rem;
    width: 52px;
    height: 52px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

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

/* Small mobile (360px) */
@media (max-width: 389px) {
  .hero__title {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

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

  html {
    scroll-behavior: auto;
  }

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

/* --------------------------------
   25. PRINT
   -------------------------------- */
@media print {
  .header,
  .whatsapp-float,
  .mobile-bar,
  .emergency,
  .form,
  .contact__map {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  .section--dark,
  .section--darker {
    background: #fff;
    color: #000;
  }

  .section--dark h2,
  .section--dark h3,
  .section--darker h2,
  .section--darker h3 {
    color: #000;
  }
}
