/* ==========================================================================
   CASTELLO BRANCO — Landing Page Styles
   Mobile-first · Modular sections · CSS custom properties
   ==========================================================================

   Table of contents:
   1.  Custom Properties
   2.  Reset & Base
   3.  Layout Utilities
   4.  Navigation
   5.  Hero
   6.  Divider
   7.  Solution / Murder Board
   8.  Social Proof
   9.  Testimonial Slider
   10. Support Block (O Globo & Institutional)
   11. Video Slider
   12. FAQ
   13. Footer
   14. WhatsApp Float
   15. Lightbox Modal
   16. Custom Cursor
   17. Animations & Reveal
   18. Responsive (min-width breakpoints)
   19. Reduced Motion
   ========================================================================== */

/* ==========================================================================
   1. Custom Properties
   ========================================================================== */

:root {
  /* Colors */
  --clr-bg: #fcf9f8;
  --clr-surface: #ffffff;
  --clr-ink: #1c1b1b;
  --clr-ink-muted: #59413f;
  --clr-primary: #76000a;
  --clr-primary-mid: #981e1e;
  --clr-gold: #c4963c;
  --clr-dark: #0a0a0a;
  --clr-dark-card: #000000;
  --clr-dark-card-bg: #1a1a1a;

  /* Typography */
  --font-serif: "Fraunces", serif;
  --font-sans: "Outfit", sans-serif;
  --font-display: "Special Elite", cursive;
  --font-script: "Dancing Script", cursive;

  /* Spacing scale */
  --space-xs: 0.5rem;
  /* 8px  */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2.5rem;
  /* 40px */
  --space-xl: 4rem;
  /* 64px */
  --space-section: 5rem;
  /* 80px */

  /* Layout */
  --container-max: 1200px;
  --gutter: 1.5rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--clr-primary-mid);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-ink);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page {
  flex: 1 0 auto;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.u-mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .u-mobile-only {
    display: block;
  }
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 1.25rem;
  background: transparent;
  pointer-events: none;
}

.nav__logo-link {
  display: inline-block;
  pointer-events: auto;
}

.nav__logo {
  height: 100px;
  width: auto;
}

/* ==========================================================================
   5. Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 7rem 3rem;
  overflow: hidden;
  background: #000;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.6;
  filter: grayscale(40%) brightness(0.7);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 40%,
      #000 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--gutter);
}

.hero__glow {
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle,
      rgba(196, 150, 60, 0.22) 0%,
      rgba(152, 30, 30, 0.05) 45%,
      transparent 80%);
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  animation: flame-flicker 4s infinite alternate ease-in-out;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fade-up 0.8s ease 0.4s forwards;
}

.hero__title-highlight {
  color: var(--clr-gold);
  font-style: italic;
  font-weight: 800;
}

.hero__subtitle {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: fade-up 0.8s ease 0.6s forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(196, 150, 60, 0.1);
  border: 1px solid rgba(196, 150, 60, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fade-up 0.8s ease 0.7s forwards;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.8s forwards;
}

/* ==========================================================================
   Buttons (shared)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.125rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, translate 0.3s ease;
}

.btn--primary {
  background: var(--clr-primary-mid);
  color: #fff;
  box-shadow: 0 8px 24px rgba(152, 30, 30, 0.25);
}

.btn--primary:hover {
  background: var(--clr-primary);
  box-shadow: 0 12px 32px rgba(152, 30, 30, 0.35);
  translate: 0 -2px;
}

/* ==========================================================================
   6. Divider
   ========================================================================== */

.divider {
  border: none;
  height: 4px;
  margin: 0;
}

.divider--gold {
  background: var(--clr-gold);
  box-shadow: 0 0 15px var(--clr-gold);
}

/* ==========================================================================
   7. Solution / Murder Board
   ========================================================================== */

.solution {
  padding-block: var(--space-section);
  background: var(--clr-surface);
  overflow: hidden;
}

.solution__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.solution__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.solution__quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--clr-ink-muted);
  margin-bottom: 2.5rem;
}

/* Legal seal */

.legal-seal {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #f6f3f2;
  border-left: 4px solid var(--clr-primary);
}

.legal-seal__icon {
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.legal-seal__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  white-space: normal;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-seal__text strong {
  font-size: 0.790rem;
  letter-spacing: 0.1em;
  color: var(--clr-ink);
}

.legal-seal__notice {
  font-size: 0.790rem;
  font-style: normal;
  font-weight: 700;
  color: var(--clr-primary);
  display: block;
}

.legal-seal__notice--warning {
  font-size: 0.7105rem;
}

@media (max-width: 767px) {
  .legal-seal {
    padding: 1rem;
    gap: 1rem;
  }
  .legal-seal__text strong {
    font-size: 0.7rem;
  }
  .legal-seal__notice {
    font-size: 0.7rem;
  }
  .legal-seal__notice--warning {
    font-size: 0.65rem;
  }
}

/* Board wrapper — stacked on mobile, fixed-height board on desktop */

.board-wrapper {
  position: relative;
}

.board {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-block: 1.5rem;
}

.board__strings {
  display: none;
}

/* Evidence cards */

.evidence-card {
  position: relative;
  background: #fdfdfd;
  padding: 1.75rem;
  width: 100%;
  max-width: 320px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: translate 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.4s ease;
}

.evidence-card:hover {
  translate: 0 -10px;
  box-shadow: 0 20px 50px rgba(196, 150, 60, 0.2), 0 0 20px rgba(196, 150, 60, 0.1);
  border-color: var(--clr-gold);
}

.evidence-card--dark {
  background: var(--clr-dark-card);
  border: 1px solid #333;
}

.evidence-card--dark .evidence-card__title {
  color: #fff;
}

.evidence-card--dark .evidence-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.evidence-card--final {
  width: 100%;
  max-width: 320px;
  border: 2px solid var(--clr-gold);
}

.evidence-card--final:hover {
  translate: 0 -5px;
  box-shadow: 0 15px 45px rgba(152, 30, 30, 0.25), 0 0 20px rgba(152, 30, 30, 0.1);
  border-color: var(--clr-primary-mid);
}

.evidence-card__number {
  position: absolute;
  top: -2.8125rem;
  left: -0.625rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--clr-primary-mid);
  opacity: 0.8;
  rotate: -12deg;
  pointer-events: none;
}

.evidence-card__pin {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  translate: -50% 0;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), inset 0 2px 2px rgba(255, 255, 255, 0.4);
  z-index: 5;
}

.evidence-card__pin--gold {
  background: var(--clr-gold);
  box-shadow: 0 0 10px var(--clr-gold);
}

.evidence-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-ink);
  margin-bottom: 0.75rem;
}

.evidence-card__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--clr-ink-muted);
}

.evidence-card__stamp {
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clr-primary-mid);
  border: 2px solid var(--clr-primary-mid);
  padding: 0.125rem 0.625rem;
  rotate: -15deg;
  opacity: 0.8;
  user-select: none;
}

/* ==========================================================================
   8. Social Proof
   ========================================================================== */

.proof {
  padding-block: var(--space-section);
  background: var(--clr-dark);
  color: #fff;
}

.proof__header {
  text-align: center;
  margin-bottom: 4rem;
}

.proof__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.google-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
}

.google-badge__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.google-badge__stars {
  font-size: 1.25rem;
  color: #fbbc05;
  letter-spacing: 3px;
}

/* Authority bar */

.authority-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.authority-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.authority-bar__value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.authority-bar__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.authority-bar__sep {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   9. Testimonial Slider
   ========================================================================== */

.testimonial-slider {
  overflow: hidden;
  position: relative;
  padding-block: 0.75rem;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

.testimonial-slider__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonial-scroll 60s linear infinite;
}

.testimonial-slider__track.is-paused {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--clr-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--clr-gold);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover,
.testimonial-card.is-active {
  border-color: var(--clr-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 2rem;
  quotes: none;
  text-align: center;
}

.testimonial-card__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-style: normal;
}

/* ==========================================================================
   10. Support Block (O Globo & Institutional)
   ========================================================================== */

.support-block {
  margin-top: var(--space-xl);
  padding: 4rem var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.support-block::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(196, 150, 60, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.support-block--spaced {
  margin-top: 5rem;
}

.support-block__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.support-block__line {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.support-block__title {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-gold);
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
}

@media (max-width: 767px) {
  /* Removed redundant centering for support-block */
}

.support-block__globo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.625rem;
}

.support-block__logo {
  height: 64px;
  width: auto;
}

.support-block__globo-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.support-block__globo-accent {
  color: var(--clr-gold);
}

/* Recommendation letters grid */

.rec-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.rec-letter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
}

.rec-letter__img-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(196, 150, 60, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
  transition: translate 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}

.rec-letter__img-wrap:hover,
.rec-letter__img-wrap:focus-visible {
  translate: 0 -4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  border-color: var(--clr-gold);
  outline: none;
}

.rec-letter__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  filter: sepia(0.08) contrast(1.05);
  transition: filter 0.35s ease;
}

.rec-letter__img--cover {
  object-fit: cover;
}

.rec-letter__img-wrap:hover .rec-letter__img {
  filter: sepia(0) contrast(1.08) brightness(1.03);
}

.rec-letter__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.rec-letter__img-wrap:hover .rec-letter__overlay {
  background: rgba(0, 0, 0, 0.18);
}

.rec-letter__zoom-icon {
  font-size: 2rem;
  opacity: 0;
  scale: 0.7;
  transition: opacity 0.3s ease, scale 0.3s ease;
}

.rec-letter__img-wrap:hover .rec-letter__zoom-icon {
  opacity: 1;
  scale: 1;
}

.rec-letter__caption {
  text-align: center;
}

.rec-letter__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(196, 150, 60, 0.45);
  padding-bottom: 0.125rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.rec-letter__name:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* ==========================================================================
   11. Video Slider
   ========================================================================== */

.video-section {
  margin-top: 5rem;
}

.video-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding-inline: 3rem;
  max-width: 712px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .video-slider-wrapper {
    padding-inline: 1.5rem;
  }
}

.video-slider {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0.625rem 0 2.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.video-slider::-webkit-scrollbar {
  display: none;
}

.video-reel-container {
  flex: 0 0 100%;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
}

.video-reel {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--clr-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #000;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
}

@media (max-width: 767px) {
  .video-reel {
    border-left-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Fix Safari/iOS/Chrome native play button alignment specifically for Video 2 */
video[src*="Video 2.mp4"]::-webkit-media-controls-start-playback-button,
video[src*="Video 2.mp4"]::-webkit-media-controls-overlay-play-button {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Slider buttons */

.slider-btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(196, 150, 60, 0.15);
  border: 1px solid rgba(196, 150, 60, 0.3);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.slider-btn:hover {
  background: var(--clr-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(196, 150, 60, 0.4);
}

.slider-btn--prev {
  left: 0;
}

.slider-btn--next {
  right: 0;
}

/* ==========================================================================
   12. FAQ
   ========================================================================== */

.faq {
  padding-block: var(--space-section);
  background: var(--clr-surface);
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq__icon {
  color: var(--clr-gold);
  opacity: 0.6;
}

.faq__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--clr-ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq__list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq__item[open] {
  border-color: rgba(196, 150, 60, 0.4);
}

.faq__question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--clr-ink);
  transition: color 0.3s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

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

@media (max-width: 767px) {
  .faq__question:hover {
    color: var(--clr-ink); /* Remove o sticky hover do mobile */
  }
  .faq__item[open] .faq__question {
    color: var(--clr-gold); /* Fica dourado apenas enquanto estiver aberto */
  }
}

/* Plus/minus icon */

.faq__icon-plus {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
  transition: rotate 0.4s var(--ease-out);
}

.faq__icon-plus::before,
.faq__icon-plus::after {
  content: "";
  position: absolute;
  background: var(--clr-gold);
  transition: opacity 0.3s ease;
}

.faq__icon-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  translate: 0 -50%;
}

.faq__icon-plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  translate: -50% 0;
}

.faq__item[open] .faq__icon-plus {
  rotate: 45deg;
}

.faq__answer {
  padding: 0 1.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  animation: faq-fade-in 0.4s ease forwards;
}

.faq__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

.footer {
  background: var(--clr-primary-mid);
  width: 100%;
  margin-top: auto;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2.5rem;
  text-align: center;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__copy {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   14. WhatsApp Float
   ========================================================================== */

.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  display: block;
}

.wa-float__glow {
  position: absolute;
  inset: 0;
  background: #25d366;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.4;
  transition: filter 0.3s ease;
  display: block;
}

.wa-float:hover .wa-float__glow {
  filter: blur(24px);
}

.wa-float__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: scale 0.3s ease;
}

.wa-float:hover .wa-float__btn {
  scale: 1.1;
}

.wa-float__btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   15. Lightbox Modal
   ========================================================================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox__controls {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.lightbox__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s ease, scale 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox__btn:hover {
  background: var(--clr-gold);
  color: #000;
  scale: 1.1;
  box-shadow: 0 0 20px rgba(196, 150, 60, 0.4);
  border-color: var(--clr-gold);
}

.lightbox__btn--close:hover {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(152, 30, 30, 0.4);
  border-color: var(--clr-primary);
}

.lightbox__zoom-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 1.25rem;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-origin: center center;
  transition: transform 0.3s var(--ease-out);
}

/* ==========================================================================
   16. Custom Cursor
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
}

.cursor {
  display: none;
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1px solid var(--clr-primary-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  left: -100px;
  top: -100px;
  translate: -50% -50%;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.cursor::before,
.cursor::after {
  content: "";
  position: absolute;
  background: var(--clr-primary-mid);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: background-color 0.3s ease;
}

.cursor::before {
  width: 32px;
  height: 1px;
}

.cursor::after {
  width: 1px;
  height: 32px;
}

.cursor__dot {
  width: 4px;
  height: 4px;
  background: var(--clr-primary-mid);
  border-radius: 50%;
  z-index: 2;
}

.cursor.is-active {
  border-color: var(--clr-gold);
}

.cursor.is-active::before,
.cursor.is-active::after {
  background: var(--clr-gold);
}

.cursor.is-active .cursor__dot {
  background: var(--clr-gold);
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: flex;
  }
}

@media (max-width: 1024px),
(hover: none) {
  * {
    cursor: auto !important;
  }

  .cursor {
    display: none !important;
  }
}

/* ==========================================================================
   17. Animations & Reveal
   ========================================================================== */

@keyframes flame-flicker {
  0% {
    opacity: 0.6;
    scale: 1;
  }

  30% {
    opacity: 0.9;
    scale: 1.05;
  }

  60% {
    opacity: 0.5;
    scale: 0.95;
  }

  100% {
    opacity: 0.8;
    scale: 1.02;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    translate: 0 30px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes testimonial-scroll {
  from {
    translate: 0 0;
  }

  to {
    translate: -50% 0;
  }
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    translate: 0 -10px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

/* Scroll-triggered reveal */

.reveal {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.reveal--delay-1 {
  transition-delay: 0.15s;
}

.reveal--delay-2 {
  transition-delay: 0.3s;
}

/* ==========================================================================
   18. Responsive — min-width breakpoints (mobile-first)
   ========================================================================== */

/* ── Small tablets ── */
@media (min-width: 640px) {
  .rec-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .support-block__globo-row {
    flex-direction: row;
    gap: 0.75rem;
  }

  .support-block__logo {
    height: 88px;
  }
}

/* ── Tablets ── */
@media (min-width: 768px) {
  .nav {
    padding: 2.5rem 4rem;
  }

  .nav__logo {
    height: 210px;
  }

  .hero {
    padding-block: 7rem 3.125rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .authority-bar {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }

  .authority-bar__sep {
    width: 1px;
    height: 2.5rem;
  }

  .testimonial-card {
    width: 340px;
  }

  .video-reel-container {
    flex: 0 0 190px;
  }

  .video-slider {
    gap: 2rem;
  }

  .wa-float {
    bottom: 2rem;
    right: 2rem;
  }

  .wa-float__btn {
    width: 60px;
    height: 60px;
  }

  .wa-float__btn svg {
    width: 28px;
    height: 28px;
  }

  .lightbox__zoom-area {
    padding: 2.5rem;
  }
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  .solution__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.75rem;
    align-items: center;
  }

  .solution__text {
    padding-right: 2.5rem;
  }

  .solution__heading {
    font-size: 1.6875rem;
  }

  /* Activate the "murder board" layout */
  .board {
    height: 600px;
    display: block;
    padding: 0;
  }

  .board__strings {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .board__strings line {
    stroke: #981e1e;
    stroke-width: 1.5;
    stroke-dasharray: 4;
    opacity: 0.6;
  }

  .evidence-card {
    position: absolute;
    width: 260px;
    max-width: none;
  }

  .evidence-card--1 {
    top: 40px;
    left: 0;
    rotate: -4deg;
  }

  .evidence-card--2 {
    top: 60px;
    right: 0;
    rotate: 3deg;
  }

  .evidence-card--3 {
    bottom: 40px;
    left: 50%;
    translate: -50% 0;
    rotate: -1deg;
    width: 320px;
  }

  .evidence-card--3:hover {
    translate: -50% -5px;
  }

  .evidence-card__stamp {
    font-size: 2rem;
    top: auto;
    bottom: 1.25rem;
    right: -25%;
    rotate: 15deg;
  }

  .video-reel-container {
    flex: 0 0 300px;
  }

  .video-slider {
    gap: 2rem;
  }

  .legal-seal__text {
    white-space: nowrap;
  }
}

/* ==========================================================================
   19. Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__title,
  .hero__subtitle,
  .hero__badge,
  .hero__actions {
    opacity: 1;
    animation: none;
  }

  .hero__glow {
    animation: none;
  }

  .testimonial-slider__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
}