/* ============================================
 * MAIN.CSS — WOW Design System
 * Carregado de forma não-bloqueante via preload
 * Elementos: glassmorphism, gradient animations,
 * 3D effects, premium shadows, micro-interações
 * ============================================ */

/* ---- Variáveis de design — sistema completo ---- */
:root {
  /* Cores primárias – escala completa (saúde & confiança) */
  --color-primary-50: #ecfdf5;
  --color-primary-100: #d1fae5;
  --color-primary-200: #a7f3d0;
  --color-primary-300: #6ee7b7;
  --color-primary-400: #34d399;
  --color-primary-500: #10b981;
  --color-primary-600: #059669;
  --color-primary-700: #047857;
  --color-primary-800: #065f46;
  --color-primary-900: #064e3b;

  /* Alias shortcuts */
  --color-primary: #059669;
  --color-primary-dark: #047857;
  --color-primary-light: #d1fae5;
  --color-navy: #0f172a;
  --color-navy-light: #1e3a5f;

  /* Neutras */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;

  /* Semânticas */
  --color-warning-bg: #fffbeb;
  --color-warning-border: #f59e0b;
  --color-warning-text: #92400e;

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  /* Espaçamento — sistema de 8px */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Sombras Premium — multicamada para profundidade real */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 8px 16px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(5, 150, 105, 0.15);
  --shadow-glow-strong: 0 0 40px rgba(5, 150, 105, 0.25), 0 0 80px rgba(5, 150, 105, 0.1);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Gradientes Premium */
  --gradient-primary: linear-gradient(135deg, #059669, #10b981);
  --gradient-primary-dark: linear-gradient(135deg, #047857, #059669);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
    radial-gradient(at 80% 0%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
    radial-gradient(at 0% 60%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
}


/* ---- CORPO DO ARTIGO ---- */

.article-body {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
}

/* Gradient mesh sutil no background do artigo */
.article-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: -1;
}

.article-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
}

/* Parágrafo de abertura destacado — glassmorphism style */
.article-body .lead {
  font-size: 1.1875rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.7;
  border-left: 4px solid transparent;
  border-image: var(--gradient-primary) 1;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary-50), transparent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Headings h2 — Poppins + subtle gradient accent */
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-2xl) 0 var(--space-lg);
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: var(--space-sm);
}

/* Gradient underline accent on h2 */
.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-lg) 0 var(--space-sm);
}


/* ---- LISTAS COM ÍCONES ESTILIZADOS ---- */

.problem-list,
.benefits-list {
  padding-left: 0;
  list-style: none;
  margin: 0 0 var(--space-xl);
}

.problem-list li,
.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.875rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

/* Hover lift nos itens da lista */
.problem-list li:hover,
.benefits-list li:hover {
  transform: translateX(4px);
}

/* Ícone X vermelho para lista de problemas — com background */
.problem-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 2px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.625rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

/* Ícone check verde para lista de benefícios — com background */
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.6875rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}


/* ---- HIGHLIGHT BOX — glassmorphism effect ---- */

.highlight-box {
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.6), rgba(236, 253, 245, 0.8));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 4px solid transparent;
  border-image: var(--gradient-primary) 1;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(5, 150, 105, 0.08);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism shimmer effect */
.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-box p {
  margin: 0;
  color: #065f46;
  font-size: 1rem;
  line-height: 1.65;
}


/* ---- CTA BOXES — Glassmorphism + Gradient border ---- */

.cta-box {
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.9), rgba(236, 253, 245, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(167, 243, 208, 0.5);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

/* Animated gradient top border */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #059669, #10b981, #34d399, #10b981, #059669);
  background-size: 200% 100%;
  animation: borderGradientShift 3s linear infinite;
}

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

  100% {
    background-position: 200% 50%;
  }
}

/* Mesh glow no canto */
.cta-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.cta-box-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cta-box-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: var(--space-md) 0 0;
}

.cta-large {
  font-size: 1.25rem;
  padding: 18px 44px;
}

/* CTA box final com destaque extra */
.cta-box-final {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(209, 250, 229, 0.9));
  border-color: rgba(110, 231, 183, 0.6);
}

.cta-box-final::before {
  height: 5px;
}

.cta-play-icon {
  font-size: 0.875em;
}


/* ---- SOCIAL PROOF BAR — glassmorphism ---- */

.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-proof-bar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.social-proof-bar .proof-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(5, 150, 105, 0.25);
}

.social-proof-bar .proof-icon svg {
  stroke: #ffffff;
}

.social-proof-bar p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-primary);
}


/* ---- TESTIMONIALS — 3D card effect ---- */

.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.testimonial {
  margin: 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid transparent;
  border-image: var(--gradient-primary) 1;
  border-image-slice: 0 0 0 4;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle quote mark watermark */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(5, 150, 105, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
  font-style: italic;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.testimonial .stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  margin-top: 6px;
  letter-spacing: 2px;
  filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

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

.testimonial-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}


/* ---- URGENCY BOX — animated border ---- */

.urgency-box {
  display: flex;
  gap: var(--space-md);
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.95), rgba(254, 243, 199, 0.8));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 230, 138, 0.6);
  border-left: 4px solid var(--color-warning-border);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-2xl) 0;
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urgency-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 158, 11, 0.1);
}

.urgency-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.urgency-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-warning-text);
}


/* ---- CREDIBILITY SECTION — 3D cards with hover ---- */

.credibility-section {
  margin: var(--space-2xl) 0;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.credibility-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Center the underline when h2 is centered */
.credibility-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.credibility-item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient accent on hover — top border glow */
.credibility-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.credibility-item:hover::before {
  opacity: 1;
}

.credibility-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.credibility-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: var(--space-md);
  transition: transform 0.35s ease;
}

.credibility-item:hover .credibility-icon {
  transform: scale(1.15);
}

.credibility-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.credibility-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}


/* ---- FINAL NUDGE ---- */

.final-nudge {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.final-nudge p {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}


/* ---- STICKY CTA (mobile) — glassmorphism ---- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding: 10px var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky-cta-button {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  position: relative;
  overflow: hidden;
}

/* Shine effect on sticky CTA */
.sticky-cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: stickyCTAShine 3s infinite;
}

@keyframes stickyCTAShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.sticky-cta-button:hover,
.sticky-cta-button:active {
  background: var(--gradient-primary-dark);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}


/* ---- FOOTER — premium dark design ---- */

.site-footer {
  background: linear-gradient(180deg, var(--color-navy) 0%, #0a1022 100%);
  color: #cbd5e1;
  padding: var(--space-2xl) 0;
  margin-top: 0;
  position: relative;
}

/* Subtle gradient top accent */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.5), transparent);
}

.footer-disclaimers {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.disclaimer-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: var(--space-md);
}

.footer-disclaimers p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0 0 var(--space-md);
}

.footer-disclaimers strong {
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(5, 150, 105, 0.3);
}

.footer-sep {
  color: #334155;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #475569;
  margin: 0;
}


/* ---- ANIMAÇÕES DE SCROLL (reveal) — enhanced ---- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger para elementos consecutivos */
.reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.reveal:nth-child(4) {
  transition-delay: 0.18s;
}

.reveal:nth-child(5) {
  transition-delay: 0.24s;
}


/* ---- RESPONSIVO ---- */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .article-body h2 {
    font-size: 1.625rem;
  }

  .cta-box {
    padding: var(--space-2xl) var(--space-2xl);
  }

  .cta-box-title {
    font-size: 1.5rem;
  }

  .cta-large {
    font-size: 1.3125rem;
  }
}

/* Desktop (768px+) */
@media (min-width: 768px) {
  .article-header {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .article-body h2 {
    font-size: 1.75rem;
  }

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

  /* Esconder sticky CTA no desktop */
  .sticky-cta {
    display: none !important;
  }
}


/* Mobile ajustes finos (<640px) */
@media (max-width: 639px) {
  .article-body .lead {
    font-size: 1.0625rem;
    padding: var(--space-sm) var(--space-md);
  }

  .article-body p {
    font-size: 1rem;
  }

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

  .cta-box {
    padding: var(--space-lg);
  }

  .cta-box-title {
    font-size: 1.1875rem;
  }

  .cta-large {
    font-size: 1.0625rem;
    padding: 16px 28px;
  }

  .urgency-box {
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
  }

  .social-proof-bar {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .testimonial {
    padding: var(--space-md);
  }

  /* Espaço extra no footer para o sticky CTA não cobrir conteúdo */
  .site-footer {
    padding-bottom: 5rem;
  }
}


/* ---- ACESSIBILIDADE ---- */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {

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

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