/* ======================================================== */
/* BAIXA TUDO - SITE OFICIAL & CENTRAL DE DOWNLOADS        */
/* PALETA: PRETO PROFUNDO, LARANJA VIVO (#FF6600), BRANCO   */
/* DEGRADÊS MODERNOS, GLOWS, DESIGN PROFISSIONAL HIGH-END   */
/* ======================================================== */

:root {
  --bg-deep: #050505;
  --bg-surface: #0E0E0E;
  --bg-card: #131313;
  --bg-card-hover: #191919;
  --bg-card-glass: rgba(19, 19, 19, 0.75);
  
  --orange-vibrant: #FF6600;
  --orange-bright: #FF7700;
  --orange-light: #FFA040;
  --orange-dark: #D94400;
  --orange-glow: rgba(255, 102, 0, 0.28);
  --orange-glow-subtle: rgba(255, 102, 0, 0.08);

  --gradient-orange: linear-gradient(135deg, #FF7700 0%, #FF5500 50%, #D43800 100%);
  --gradient-orange-hover: linear-gradient(135deg, #FF8822 0%, #FF6600 50%, #E64400 100%);
  --gradient-text-orange: linear-gradient(180deg, #FFFFFF 45%, #FFA25B 100%);
  --gradient-card-top: linear-gradient(180deg, rgba(255, 102, 0, 0.12) 0%, rgba(19, 19, 19, 0) 100%);
  --gradient-border-orange: linear-gradient(135deg, rgba(255, 102, 0, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%);

  --border-subtle: #222222;
  --border-medium: #333333;
  --border-orange: rgba(255, 102, 0, 0.4);
  --border-orange-solid: #FF6600;

  --text-white: #FFFFFF;
  --text-dimmed: #CFCFCF;
  --text-muted: #888888;

  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% -5%, rgba(255, 102, 0, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(255, 85, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(255, 102, 0, 0.04) 0%, transparent 50%);
  background-repeat: no-repeat;
}

/* Todos os textos estritamente brancos */
h1, h2, h3, h4, h5, h6, strong, b, a, p, span, label, input, button {
  color: #FFFFFF !important;
}

/* Títulos com degradê profissional branco-laranja */
.gradient-text {
  background: var(--gradient-text-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======================================================== */
/* NAVBAR SUPERIOR COM BLUR E GLOW                          */
/* ======================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1C1C1C 0%, #111111 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF !important;
  opacity: 0.85;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  opacity: 1;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ======================================================== */
/* BOTÕES COM DEGRADÊ LARANJA VIVO                          */
/* ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
  background: var(--gradient-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 102, 0, 0.45);
}

.btn-outline {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(35, 35, 35, 0.8);
  border-color: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.15);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.btn-pulse-orange {
  position: relative;
  overflow: hidden;
}

.btn-pulse-orange::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

/* ======================================================== */
/* HERO SECTION COM SPOTLIGHT LARANJA                       */
/* ======================================================== */
.hero {
  padding: 90px 0 70px 0;
  text-align: center;
  position: relative;
}

.security-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: 24px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.12);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #FF6600;
  border-radius: 50%;
  box-shadow: 0 0 10px #FF6600;
  animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 102, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-dimmed) !important;
  max-width: 740px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  max-width: 740px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  background: var(--gradient-text-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 11.5px;
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ======================================================== */
/* SEÇÃO: DOWNLOADS (CARDS COM DEGRADÊ & GLOW)              */
/* ======================================================== */
.section {
  padding: 85px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid var(--border-orange);
  color: #FFFFFF !important;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-dimmed) !important;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.download-card {
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.04) 0%, rgba(18, 18, 18, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-vibrant);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.18);
}

.card-badge-featured {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--gradient-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #222222 0%, #141414 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.15);
}

.card-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-description {
  font-size: 13.5px;
  color: var(--text-dimmed) !important;
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-specs {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-dimmed) !important;
}

.card-specs li svg {
  flex-shrink: 0;
}

/* ======================================================== */
/* SEÇÃO: MOBILE SIMPLIFICADA (DESTAQUE ESPECIAL)            */
/* ======================================================== */
.mobile-highlight-section {
  background: linear-gradient(180deg, #0A0A0A 0%, #110B07 50%, #0A0A0A 100%);
  border-top: 1px solid var(--border-orange);
  border-bottom: 1px solid var(--border-orange);
  position: relative;
}

.mobile-fast-box {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(18, 18, 18, 0.9) 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  box-shadow: 0 10px 40px rgba(255, 102, 0, 0.12);
}

.mobile-fast-info {
  max-width: 620px;
}

.mobile-fast-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.mobile-fast-desc {
  font-size: 14px;
  color: var(--text-dimmed) !important;
  line-height: 1.55;
}

.mobile-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.mobile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-card:hover {
  border-color: var(--orange-bright);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}

.mobile-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gradient-orange);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 16px;
}

.mobile-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mobile-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.mobile-step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-dimmed) !important;
  line-height: 1.45;
}

.mobile-step-num {
  width: 22px;
  height: 22px;
  background: #222222;
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ======================================================== */
/* SEÇÃO: TUTORIAL PASSO A PASSO ILUSTRADO                  */
/* ======================================================== */
.tutorial-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step-card {
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.03) 0%, rgba(19, 19, 19, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  transition: all 0.25s ease;
}

.step-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-3px);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--gradient-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-text {
  font-size: 13px;
  color: var(--text-dimmed) !important;
  line-height: 1.5;
}

.step-code-box {
  background: #080808;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: Consolas, monospace;
  font-size: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.08);
}

.btn-copy-code {
  background: var(--gradient-orange);
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 4px;
  transition: transform 0.15s ease;
}

.btn-copy-code:hover {
  transform: scale(1.05);
}

/* ======================================================== */
/* SEÇÃO: RECURSOS DA FERRAMENTA                            */
/* ======================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: all 0.25s ease;
}

.feature-item:hover {
  border-color: var(--orange-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.12);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #222222 0%, #151515 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.15);
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 13px;
  color: var(--text-dimmed) !important;
  line-height: 1.5;
}

/* ======================================================== */
/* SEÇÃO: TABELA DE PLANOS & PREÇOS                         */
/* ======================================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.plan-card-site {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card-site:hover {
  transform: translateY(-5px);
  border-color: var(--border-orange);
}

.plan-card-site.popular {
  border: 1px solid var(--orange-vibrant);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.08) 0%, rgba(20, 20, 20, 0.95) 100%);
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.2);
}

.plan-badge-site {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: #242424;
  border: 1px solid var(--border-medium);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.plan-card-site.popular .plan-badge-site {
  background: var(--gradient-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-name-site {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-price-site {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.plan-price-site small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted) !important;
}

.plan-features-site {
  list-style: none;
  font-size: 12.5px;
  color: var(--text-dimmed) !important;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-features-site li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ======================================================== */
/* SEÇÃO: CENTRAL DE SEGURANÇA MÁXIMA & STATUS              */
/* ======================================================== */
.security-card-large {
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.06) 0%, rgba(16, 16, 16, 0.95) 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 10px 45px rgba(255, 102, 0, 0.12);
}

.security-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.security-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.security-shield-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #222222 0%, #151515 100%);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.security-main-title {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 4px;
}

.security-subtext {
  font-size: 13px;
  color: var(--text-dimmed) !important;
}

.security-pill-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
}

.security-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.security-pillar-box {
  background: #151515;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.2s ease;
}

.security-pillar-box:hover {
  border-color: var(--border-orange);
}

.security-pillar-box strong {
  font-size: 14.5px;
  display: block;
  margin-bottom: 6px;
}

.security-pillar-box p {
  font-size: 12px;
  color: var(--text-dimmed) !important;
  line-height: 1.45;
}

/* ======================================================== */
/* FAQ INTERATIVO                                           */
/* ======================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--border-orange);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.25s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 13.5px;
  color: var(--text-dimmed) !important;
  line-height: 1.6;
}

/* ======================================================== */
/* SEÇÃO DEDICADA: CENTRAL MOBILE (ANDROID & IPHONE)        */
/* PALETA: PRETO, LARANJA VIVO (#FF6600), BRANCO            */
/* ======================================================== */
.mobile-highlight-section {
  background: radial-gradient(circle at 50% -20%, rgba(255, 102, 0, 0.15) 0%, rgba(14, 14, 14, 0.98) 70%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: 0 12px 50px rgba(255, 102, 0, 0.12);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.mobile-fast-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 102, 0, 0.08);
  border: 1px dashed var(--orange-bright);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  margin-bottom: 38px;
  gap: 20px;
}

.mobile-fast-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-fast-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, #222222 0%, #151515 100%);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.25);
}

.mobile-fast-title {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.mobile-fast-desc {
  font-size: 13px;
  color: var(--text-dimmed) !important;
}

.mobile-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.mobile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-orange);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.16);
}

.mobile-card.featured {
  border: 1px solid var(--orange-vibrant);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.1) 0%, rgba(19, 19, 19, 0.98) 100%);
  box-shadow: 0 10px 40px rgba(255, 102, 0, 0.22);
}

.mobile-tag-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: #242424;
  border: 1px solid var(--border-medium);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.mobile-card.featured .mobile-tag-badge {
  background: var(--gradient-orange);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.35);
}

.mobile-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.mobile-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #191919;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.mobile-card-intro {
  font-size: 13px;
  color: var(--text-dimmed) !important;
  margin-bottom: 20px;
  line-height: 1.5;
}

.mobile-step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.mobile-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mobile-step-num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #FFFFFF !important;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.45);
  margin-top: 1px;
}

.mobile-step-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: #FFFFFF !important;
}

.mobile-step-desc strong {
  color: #FFFFFF !important;
  font-weight: 700;
}

.mobile-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* ======================================================== */
/* FOOTER                                                   */
/* ======================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 55px 0 30px 0;
  background: #060606;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted) !important;
  border-top: 1px solid #141414;
  padding-top: 24px;
}

/* ======================================================== */
/* RESPONSIVIDADE (MOBILE & TABLET)                         */
/* ======================================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .nav-menu {
    display: none;
  }
  .hero-stats {
    gap: 20px;
  }
  .security-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-fast-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
