/* ============================================================
   FAXINANDO — Dark Premium + Glassmorphism + Cinematográfico
   CSS Design System | Vanilla CSS
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   1. CSS RESET & BASE
   ───────────────────────────────────────────────────────────── */

:root {
  --primary: #147bbd;
  --primary-dark: #0e5a8a;
  --primary-light: #1a8fd4;
  --teal: #30afa8;
  --teal-dark: #268f89;
  --teal-light: #3cc5bd;

  /* DARK THEME */
  --bg-dark: #0a0e17;
  --bg-dark-2: #0f1520;
  --bg-dark-3: #151c2b;
  --bg-card: rgba(15, 21, 32, 0.7);
  --bg-glass: rgba(20, 28, 45, 0.6);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(48, 175, 168, 0.3);

  /* Texto */
  --text-primary: #e8edf5;
  --text-secondary: #8892a4;
  --text-muted: #5a6478;
  --text-bright: #ffffff;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #147bbd 0%, #30afa8 100%);
  --gradient-glow: linear-gradient(135deg, rgba(20,123,189,0.15) 0%, rgba(48,175,168,0.15) 100%);
  --gradient-hero: linear-gradient(160deg, rgba(10,14,23,0.95) 0%, rgba(15,21,32,0.85) 50%, rgba(10,14,23,0.92) 100%);
  --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(20,123,189,0.08) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 20%, rgba(48,175,168,0.08) 0%, transparent 50%);
  --gradient-text: linear-gradient(135deg, #4dd9d2 0%, #147bbd 50%, #30afa8 100%);

  /* Sombras */
  --shadow-glow-sm: 0 0 20px rgba(48,175,168,0.15);
  --shadow-glow-md: 0 0 40px rgba(48,175,168,0.2);
  --shadow-glow-lg: 0 4px 60px rgba(20,123,189,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-float: 0 20px 60px rgba(0,0,0,0.4);

  /* Outras */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

::selection {
  background: rgba(48, 175, 168, 0.3);
  color: var(--text-bright);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-dark-3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}


/* ─────────────────────────────────────────────────────────────
   2. CURSOR PERSONALIZADO
   ───────────────────────────────────────────────────────────── */

.cursor-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
  display: none;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(48, 175, 168, 0.3);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: 0.3s ease;
  display: none;
}

@media (min-width: 1024px) {
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}


/* ─────────────────────────────────────────────────────────────
   3. UTILIDADES
   ───────────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section--alt {
  background: var(--bg-dark-2);
  background-image: var(--gradient-mesh);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-block;
  padding-bottom: 1rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.text-center .section-label::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}


/* ─────────────────────────────────────────────────────────────
   4. KEYFRAMES ANIMATIONS
   ───────────────────────────────────────────────────────────── */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 175, 168, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(48, 175, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(48, 175, 168, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes scrollDot {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 28px;
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes morphBlob {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%;
  }
  75% {
    border-radius: 60% 30% 60% 40% / 70% 50% 40% 60%;
  }
}

@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slideFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* ─────────────────────────────────────────────────────────────
   5. SCROLL REVEAL CLASSES
   ───────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


/* ─────────────────────────────────────────────────────────────
   6. PAGE LOADER
   ───────────────────────────────────────────────────────────── */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark-3);
  border-top-color: var(--teal);
  animation: spin 0.8s linear infinite;
}


/* ─────────────────────────────────────────────────────────────
   7. HEADER / NAVBAR
   ───────────────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 14, 23, 0.45);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.header.scrolled {
  top: 1rem;
  background: rgba(10, 14, 23, 0.85);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 192px;
  transition: transform var(--transition-spring), opacity var(--transition-fast);
}

.header__logo:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 4rem;
}

.header__links {
  display: flex;
  gap: 2rem;
}

.header__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.header__link:hover {
  color: var(--text-bright);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(48, 175, 168, 0.25);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.header__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(48, 175, 168, 0.4);
}

/* Menu Toggle (Hamburger) */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.header__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* ─────────────────────────────────────────────────────────────
   8. HERO SECTION
   ───────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(10,14,23,0.95) 0%, rgba(15,21,32,0.85) 50%, rgba(10,14,23,0.92) 100%),
    radial-gradient(ellipse at 80% 80%, rgba(48,175,168,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(20,123,189,0.15) 0%, transparent 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(48, 175, 168, 0.2);
  animation: float 6s ease-in-out infinite;
}

.hero__particle:nth-child(1) { top: 15%; left: 10%; animation-duration: 5s; animation-delay: 0s; }
.hero__particle:nth-child(2) { top: 30%; left: 85%; animation-duration: 7s; animation-delay: 0.5s; width: 6px; height: 6px; }
.hero__particle:nth-child(3) { top: 60%; left: 25%; animation-duration: 6s; animation-delay: 1s; }
.hero__particle:nth-child(4) { top: 75%; left: 70%; animation-duration: 8s; animation-delay: 1.5s; width: 5px; height: 5px; }
.hero__particle:nth-child(5) { top: 20%; left: 50%; animation-duration: 5.5s; animation-delay: 2s; }
.hero__particle:nth-child(6) { top: 85%; left: 40%; animation-duration: 7.5s; animation-delay: 0.8s; width: 3px; height: 3px; }
.hero__particle:nth-child(7) { top: 45%; left: 90%; animation-duration: 6.5s; animation-delay: 1.2s; }
.hero__particle:nth-child(8) { top: 10%; left: 65%; animation-duration: 5.8s; animation-delay: 0.3s; width: 5px; height: 5px; }

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 4rem 2rem;
  margin-top: 3.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(48, 175, 168, 0.1);
  border: 1px solid rgba(48, 175, 168, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 8px 24px;
  font-size: 0.85rem;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInUp 0.9s ease both;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero__title span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline;
}

.hero__title span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(30px);
  opacity: 0.4;
  z-index: -1;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
}

.hero__scroll-indicator {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  animation: scrollDot 2s ease-in-out infinite;
}


/* ─────────────────────────────────────────────────────────────
   9. BUTTONS
   ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 25px rgba(20, 123, 189, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(20, 123, 189, 0.5);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}


/* ─────────────────────────────────────────────────────────────
   10. STATS BAR
   ───────────────────────────────────────────────────────────── */

.stats {
  background: var(--bg-dark-2);
  padding: 4rem 0;
  position: relative;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(48,175,168,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  padding: 1.5rem;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.06);
}

.stats__number {
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stats__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────
   11. ABOUT SECTION
   ───────────────────────────────────────────────────────────── */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-glass);
}

.about__image img,
.about__image video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__image:hover img,
.about__image:hover video {
  transform: scale(1.04);
}

.about__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
  filter: blur(2px);
}

.about__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.about__feature {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.about__feature:hover {
  background: var(--bg-glass);
  border-color: var(--border-glass);
}

.about__feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid var(--border-glass);
}

.about__feature-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.15rem;
}

.about__feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────
   12. STEPS / COMO FUNCIONA
   ───────────────────────────────────────────────────────────── */

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.15;
  z-index: 0;
}

.steps__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.steps__item:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.steps__number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.steps__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-sm);
  z-index: 2;
}

.steps__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.steps__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.steps__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────────────
   13. SERVICES SECTION
   ───────────────────────────────────────────────────────────── */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.services__card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(48,175,168,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.services__card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-md);
}

.services__card:hover::before {
  opacity: 1;
}

.services__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services__card:hover .services__image img {
  transform: scale(1.08);
}

.services__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: all var(--transition-spring);
}

.services__card:hover .services__badge {
  transform: scale(1.15) rotate(8deg);
}

.services__content {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
}

.services__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.6rem;
}

.services__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.services__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  transition: all var(--transition-base);
}

.services__link:hover {
  gap: 0.8rem;
  color: var(--teal-light);
}

.services__link svg,
.services__link i {
  transition: transform var(--transition-base);
}

.services__link:hover svg,
.services__link:hover i {
  transform: translateX(4px);
}


/* ─────────────────────────────────────────────────────────────
   14. GALLERY
   ───────────────────────────────────────────────────────────── */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border-glass);
}

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

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

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,14,23,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
}

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

.gallery__item-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.gallery__item:hover .gallery__item-label {
  transform: translateY(0);
  opacity: 1;
}


/* ─────────────────────────────────────────────────────────────
   15. PARALLAX SECTION
   ───────────────────────────────────────────────────────────── */

.parallax-section {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,23,0.92) 0%, rgba(20,123,189,0.7) 100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.parallax-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.parallax-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}


/* ─────────────────────────────────────────────────────────────
   16. BENEFITS
   ───────────────────────────────────────────────────────────── */

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.benefits__item {
  padding: 2.2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.benefits__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits__item:hover::before {
  transform: scaleX(1);
}

.benefits__item:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.benefits__icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid var(--border-glass);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.benefits__item:hover .benefits__icon {
  background: var(--gradient-primary);
  border-color: transparent;
}

.benefits__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.benefits__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ─────────────────────────────────────────────────────────────
   17. TESTIMONIALS
   ───────────────────────────────────────────────────────────── */

.testimonials__slider {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

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

.testimonials__card {
  min-width: 380px;
  max-width: 400px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-glass);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.testimonials__card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.testimonials__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonials__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonials__text::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials__meta h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-bright);
}

.testimonials__meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ─────────────────────────────────────────────────────────────
   18. FAQ
   ───────────────────────────────────────────────────────────── */

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

.faq__item {
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 2px;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: color var(--transition-base);
}

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

.faq__arrow {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.faq__item.open .faq__arrow {
  background: var(--gradient-primary);
  transform: rotate(180deg);
  border-color: transparent;
}

.faq__arrow svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  transition: color var(--transition-base);
}

.faq__item.open .faq__arrow svg {
  color: #fff;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq__item.open .faq__answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}


/* ─────────────────────────────────────────────────────────────
   18b. QUANDO CONTRATAR SECTION
   ───────────────────────────────────────────────────────────── */
#depoimentos,
#quando-contratar {
  background: 
    linear-gradient(135deg, rgba(10, 14, 23, 0.94) 0%, rgba(15, 21, 32, 0.9) 100%),
    url('../img/faxinando-24-07-20-27.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   19. CTA / CONTATO SECTION
   ───────────────────────────────────────────────────────────── */

.section--dark {
  background: var(--gradient-primary);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section {
  background: transparent;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

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

.cta-section__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20, 123, 189, 0.88) 0%, rgba(48, 175, 168, 0.82) 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(1px);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(1px);
  pointer-events: none;
}

.cta-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .section-label::after {
  background: rgba(255, 255, 255, 0.3);
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .section-subtitle,
.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}


/* ─────────────────────────────────────────────────────────────
   20. FORM
   ───────────────────────────────────────────────────────────── */

.form {
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form__input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(48, 175, 168, 0.15);
}

textarea.form__input {
  min-height: 140px;
  resize: vertical;
}

select.form__input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form__input option {
  color: var(--bg-dark);
  background: #fff;
}


/* ─────────────────────────────────────────────────────────────
   21. FOOTER
   ───────────────────────────────────────────────────────────── */

.footer {
  background: var(--bg-dark);
  color: var(--text-secondary);
  padding: 5rem 0 0;
  border-top: 1px solid var(--border-glass);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 1.2rem;
}

.footer__logo img {
  height: 42px;
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  padding-left: 0;
}

.footer__links a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.footer__contact-items {
  display: grid;
  gap: 0.8rem;
}

.footer__contact-items li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer__contact-items li svg,
.footer__contact-items li i {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-dark-3);
  border: 1px solid var(--border-glass);
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.footer__social-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}

.footer__bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--teal);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--teal-light);
}


/* ─────────────────────────────────────────────────────────────
   22. WHATSAPP FLUTUANTE
   ───────────────────────────────────────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  fill: #fff;
  width: 32px;
  height: 32px;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--bg-dark);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}


/* ─────────────────────────────────────────────────────────────
   23. SCROLL TO TOP
   ───────────────────────────────────────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-base);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--gradient-primary);
  border-color: transparent;
}

.scroll-top svg {
  fill: var(--text-secondary);
  width: 22px;
  height: 22px;
  transition: fill var(--transition-fast);
}

.scroll-top:hover svg {
  fill: #fff;
}


/* ─────────────────────────────────────────────────────────────
   24. RESPONSIVIDADE
   ───────────────────────────────────────────────────────────── */

/* Tablet / Landscape ─────────────────────── */
@media (max-width: 1024px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-dark-2);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: stretch;
  }

  .header__nav.open {
    right: 0;
  }

  .header__links {
    flex-direction: column;
    gap: 0;
  }

  .header__link {
    font-size: 1.1rem;
    padding: 1rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-glass);
    display: block;
  }

  .header__link::after {
    display: none;
  }

  .header__cta {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    text-align: center;
  }

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

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

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

  .steps__grid::before {
    display: none;
  }

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

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

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

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

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

  .section-title {
    font-size: 2rem;
  }
}

/* Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__badge {
    font-size: 0.78rem;
  }

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

  .stats__item:not(:last-child)::after {
    display: none;
  }

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

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

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

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

  .testimonials__card {
    min-width: 300px;
  }

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

  .about__image img {
    height: 350px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .parallax-section,
  #depoimentos,
  #quando-contratar {
    background-attachment: scroll;
  }

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

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 5rem 0;
  }

  .stats__number {
    font-size: 2.5rem;
  }
}

/* Small Mobile ────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .btn--lg {
    padding: 14px 30px;
    font-size: 0.92rem;
  }

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

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

  .footer__bottom p {
    font-size: 0.72rem;
  }

  .hero__content {
    padding: 3rem 1rem;
  }

  .faq__question {
    font-size: 0.95rem;
  }

  .testimonials__card {
    min-width: 280px;
    padding: 1.5rem;
  }
}


/* ─────────────────────────────────────────────────────────────
   25. BLOG PAGE STYLES
   ───────────────────────────────────────────────────────────── */

.blog-hero {
  background: var(--bg-dark-2);
  background-image: var(--gradient-mesh);
  padding: calc(var(--header-height) + 5rem) 0 4rem;
  text-align: center;
  position: relative;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-bright);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.blog-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.blog__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

/* Blog Cards */
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 1.5rem 1.8rem;
}

.blog-card__category {
  display: inline-block;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glass);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.blog-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.6rem;
  transition: color var(--transition-fast);
  line-height: 1.35;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title:hover,
.blog-card__title a:hover {
  color: var(--teal);
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.blog-card__link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.blog-card__link:hover {
  color: var(--teal-light);
}

.blog-card__full-content {
  display: none;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.sidebar-widget {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid var(--border-glass);
  margin-bottom: 1.5rem;
}

.sidebar-widget__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.sidebar-widget__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.sidebar-widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-widget ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  display: block;
  padding: 0.4rem 0;
}

.sidebar-widget ul li a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.sidebar-widget .form__input {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass);
  color: var(--text-primary);
}

.sidebar-widget .form__input::placeholder {
  color: var(--text-muted);
}

.sidebar-widget .form__input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(48, 175, 168, 0.1);
}

/* Blog Modal */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.blog-modal.active {
  display: flex;
}

.blog-modal__content {
  background: var(--bg-dark-2);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  border-radius: 24px;
  overflow-y: auto;
  border: 1px solid var(--border-glass);
  padding: 3rem;
  box-shadow: var(--shadow-float);
  animation: scaleIn 0.4s ease;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-dark-3) transparent;
}

.blog-modal__content::-webkit-scrollbar {
  width: 6px;
}

.blog-modal__content::-webkit-scrollbar-track {
  background: transparent;
}

.blog-modal__content::-webkit-scrollbar-thumb {
  background: var(--bg-dark-3);
  border-radius: 3px;
}

.blog-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2;
  font-size: 1.2rem;
}

.blog-modal__close:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* Blog modal content typography */
.blog-modal__content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-modal__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

.blog-modal__content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.blog-modal__content ul,
.blog-modal__content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.blog-modal__content ul li,
.blog-modal__content ol li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.blog-modal__content ol li {
  list-style: decimal;
}

.blog-modal__content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.blog-modal__content blockquote {
  border-left: 3px solid var(--teal);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Blog responsive */
@media (max-width: 1024px) {
  .blog__layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-modal__content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .blog-card__image {
    height: 180px;
  }

  .header__logo img {
    height: 144px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
  }

  .blog-modal__content {
    padding: 1.5rem;
    max-height: 95vh;
  }

  .blog-modal {
    padding: 1rem;
  }
}


/* ─────────────────────────────────────────────────────────────
   OVERLAY NAV (para bloquear cliques quando menu aberto)
   ───────────────────────────────────────────────────────────── */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ─────────────────────────────────────────────────────────────
   EXTRAS & POLISH
   ───────────────────────────────────────────────────────────── */

/* Quando o cursor passa sobre links e botões interativos */
a:hover,
button:hover {
  cursor: pointer;
}

/* Evitar FOUC (Flash of unstyled content) */
.no-js .reveal,
.no-js .reveal-left,
.no-js .reveal-right,
.no-js .reveal-scale {
  opacity: 1;
  transform: none;
}

/* Print styles */
@media print {
  .header,
  .whatsapp-float,
  .scroll-top,
  .page-loader,
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

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

  .section {
    padding: 2rem 0;
  }
}
