/* ==========================================================================
   DESBRAVADORES DSA - DESIGN SYSTEM OFICIAL
   Landing Page, Política de Privacidade e Suporte Técnico
   Domínio: desbravadores.devoptimizer.com.br
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Cores Oficiais e Temáticas Desbravadores */
  --color-primary: #0057B8;
  --color-primary-dark: #003366;
  --color-primary-light: #2575fc;
  --color-gold: #F5A623;
  --color-gold-hover: #D48806;
  --color-gold-light: #FFE066;
  --color-red: #E31E24;
  --color-red-glow: rgba(227, 30, 36, 0.35);

  /* Tema Escuro (Padrão Sofisticado) */
  --bg-main: #060e1a;
  --bg-surface: #0c1829;
  --bg-surface-elevated: #132238;
  --bg-glass: rgba(12, 24, 41, 0.75);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glass-hover: rgba(245, 166, 35, 0.35);
  
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-light: #64748b;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(0, 87, 184, 0.3);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-normal: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-glass: rgba(0, 51, 102, 0.1);
  --border-glass-hover: rgba(245, 166, 35, 0.6);
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 51, 102, 0.07);
  --shadow-lg: 0 20px 30px rgba(0, 51, 102, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  min-height: 100vh;
}

/* Fundo Dinâmico com Orbes e Gradientes */
.bg-glow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow-orb-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 87, 184, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.bg-glow-orb-2 {
  position: absolute;
  top: 35%;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(90px);
}

.bg-glow-orb-3 {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(100px);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Badges e Pílulas */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 166, 35, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.badge-blue {
  background: rgba(0, 87, 184, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(0, 87, 184, 0.35);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

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

@keyframes pulseAnimation {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-normal);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(0, 87, 184, 0.4));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-5deg) scale(1.06);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-sub {
  font-size: 0.725rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

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

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

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

.theme-toggle-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.theme-toggle-btn:hover {
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #e08e00 100%);
  color: #060e1a;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffb338 0%, #f5a623 100%);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 87, 184, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(0, 87, 184, 0.5);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-glass:hover {
  border-color: var(--color-gold);
  background: var(--bg-surface);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5rem 0 6rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fff7db 0%, var(--color-gold) 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.hero-badge-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Mockup do App / Celular */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: #020617;
  border-radius: 46px;
  border: 10px solid #1e293b;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 87, 184, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background: #1e293b;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #091a33 0%, #060e1a 100%);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: #ffffff;
  overflow-y: hidden;
}

.mockup-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-compass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.mockup-compass-circle {
  width: 100px;
  height: 100px;
  margin: 0.5rem auto;
  border-radius: 50%;
  border: 2px dashed rgba(245, 166, 35, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(0, 87, 184, 0.2) 0%, transparent 80%);
}

.compass-needle {
  width: 4px;
  height: 70px;
  background: linear-gradient(180deg, #ff3b30 50%, #ffffff 50%);
  border-radius: 2px;
  transform: rotate(35deg);
  animation: compassWiggle 4s infinite ease-in-out;
}

@keyframes compassWiggle {
  0%, 100% { transform: rotate(35deg); }
  50% { transform: rotate(45deg); }
}

.mockup-ai-card {
  background: rgba(0, 87, 184, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mockup-ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0057B8, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mockup-grid-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mockup-icon-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.6rem;
  text-align: center;
  font-size: 0.7rem;
}

.mockup-icon-box span {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.floating-pill {
  position: absolute;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-pill-1 {
  top: 15%;
  left: -40px;
}

.floating-pill-2 {
  bottom: 20%;
  right: -35px;
  animation-delay: -2s;
}

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

/* ==========================================================================
   SEÇÃO DE RECURSOS / FEATURES
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(0, 87, 184, 0.12);
  border: 1px solid rgba(0, 87, 184, 0.25);
  color: #60a5fa;
}

.icon-gold {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.25);
  color: var(--color-gold);
}

.icon-red {
  background: rgba(227, 30, 36, 0.12);
  border-color: rgba(227, 30, 36, 0.25);
  color: #f87171;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* ==========================================================================
   DOWNLOAD / CTA BANNER
   ========================================================================== */
.cta-box {
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(6, 14, 26, 0.95) 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 87, 184, 0.25);
}

.cta-box-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.cta-text {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: rgba(245, 166, 35, 0.4);
  background: var(--bg-surface-elevated);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   PÁGINAS INTERNAS: POLÍTICA DE PRIVACIDADE E SUPORTE
   ========================================================================== */
.legal-page-header {
  padding: 4rem 0 3rem 0;
  background: radial-gradient(circle at center, rgba(0, 87, 184, 0.12) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

.legal-content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 3.5rem 0 6rem 0;
}

.sidebar-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: fit-content;
}

.sidebar-nav-title {
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
}

.sidebar-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 2px solid transparent;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--text-main);
  background: var(--bg-surface-elevated);
  border-left-color: var(--color-gold);
}

.legal-article {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.legal-article h2 {
  font-size: 1.65rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article h3 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-article p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-article ul, .legal-article ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-article li {
  margin-bottom: 0.6rem;
}

.alert-box {
  background: rgba(0, 87, 184, 0.1);
  border-left: 4px solid var(--color-primary-light);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
}

.alert-box-warning {
  background: rgba(245, 166, 35, 0.12);
  border-left-color: var(--color-gold);
}

.alert-box-title {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Formulário de Suporte */
.support-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: var(--bg-surface-elevated);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.channel-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-normal);
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
}

.channel-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem auto;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #030712;
  border-top: 1px solid var(--border-glass);
  padding: 4.5rem 0 2rem 0;
  color: #94a3b8;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Feedback toast */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--color-gold);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(150%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-badges-row {
    justify-content: center;
  }

  .legal-content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    gap: 1.25rem;
  }

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

  .legal-article {
    padding: 1.75rem;
  }

  .floating-pill {
    display: none;
  }
}

/* ==========================================================================
   CLASSES UTILITÁRIAS E ESPECÍFICAS (SUBSTITUIÇÃO DE INLINE STYLES)
   ========================================================================== */

/* Mockup App Screen */
.mockup-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-app-name {
  font-weight: 700;
  font-size: 0.85rem;
}

.mockup-online-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
}

.mockup-compass-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-compass-value {
  font-weight: 800;
  font-size: 1.1rem;
  color: #F5A623;
  margin-top: 2px;
}

.mockup-compass-aligned {
  font-size: 0.7rem;
  color: #34d399;
  font-weight: 600;
}

.mockup-ai-text-wrapper {
  font-size: 0.75rem;
  line-height: 1.4;
}

.mockup-ai-author {
  font-weight: 700;
  color: #60a5fa;
}

.mockup-ai-quote {
  color: #cbd5e1;
}

.pill-icon {
  font-size: 1.2rem;
}

/* CTA & Highlights */
.cta-badge-spacing {
  margin-bottom: 1.5rem;
}

.cta-package-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.code-package-name {
  color: #FFE066;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.link-highlight-gold {
  color: var(--color-gold);
  text-decoration: underline;
}

.link-highlight-gold-bold {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: underline;
}

.code-blue {
  color: #60a5fa;
}

.code-gold {
  color: var(--color-gold);
}

/* Footer Helper Classes */
.footer-logo-title {
  font-size: 1.1rem;
}

.footer-email-intro {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.badge-email-footer {
  text-transform: none;
  font-size: 0.85rem;
  word-break: break-all;
}

.footer-domain-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom-borderless {
  border: none;
  padding-top: 0;
}

.footer-links-row {
  display: flex;
  gap: 1.5rem;
}

.footer-nav-link {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Legal Header & Content */
.legal-header-badge {
  margin-bottom: 1rem;
}

.legal-header-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.legal-header-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.legal-header-date {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.legal-content-container {
  padding-top: 3.5rem;
  padding-bottom: 6rem;
}

.legal-article-max {
  max-width: 900px;
  margin: 0 auto;
}

.dpo-contact-card {
  background: var(--bg-surface-elevated);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.dpo-contact-row {
  margin-bottom: 0.5rem;
}

.dpo-contact-row-last {
  margin-bottom: 0;
}

.terms-contact-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Support Page Classes */
.support-container {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.channel-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.channel-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.form-header-spacing {
  margin-bottom: 2rem;
}

.form-badge-spacing {
  margin-bottom: 0.75rem;
}

.form-header-title {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Data Deletion Specifics */
.card-data-deletion {
  border-color: rgba(227, 30, 36, 0.4);
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(227, 30, 36, 0.04) 100%);
}

.badge-deletion {
  background: rgba(227, 30, 36, 0.15);
  color: #f87171;
  border: 1px solid rgba(227, 30, 36, 0.3);
  margin-bottom: 0.75rem;
}

.card-deletion-title {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card-deletion-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.alert-deletion {
  margin-bottom: 2rem;
}

.checkbox-confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-confirm-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-confirm-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.btn-danger-confirm {
  background: #e31e24;
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
}

.faq-help-section {
  margin-top: 4rem;
}

.faq-help-header {
  margin-bottom: 2.5rem;
}

.faq-help-title {
  font-size: 2rem;
}

