/* ==========================================================================
   FLY DIGITAL (flydigital.site) - ELECTRIC MINT FINTECH STYLESHEET
   ========================================================================== */

:root {
  --bg-dark: #070B14;
  --bg-darker: #04060B;
  --bg-card: #0D1322;
  --bg-card-2: #121A2F;
  --bg-card-hover: #17223C;
  --bg-input: #080D18;
  
  /* Electric Mint & Cyber Cyan Fintech Palette */
  --primary: #00F59B;
  --primary-glow: rgba(0, 245, 155, 0.45);
  --primary-hover: #00D685;
  
  --cyan: #00E5FF;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  
  --emerald: #05D588;
  --emerald-glow: rgba(5, 213, 136, 0.3);
  
  --amber: #FBBF24;
  --red: #F87171;
  
  --text: #FFFFFF;
  --text-title: #F8FAFC;
  --text-muted: #94A3B8;
  --text-sub: #64748B;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.16);
  --border-glow: rgba(0, 245, 155, 0.35);
  --border-focus: rgba(0, 245, 155, 0.7);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-card: 0 20px 45px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(0, 245, 155, 0.2);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(0, 245, 155, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.95) 0%, rgba(4, 6, 11, 0.98) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #00F59B 60%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-mint {
  background: linear-gradient(135deg, #00F59B 0%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem;
  background: rgba(0, 245, 155, 0.1);
  border: 1px solid rgba(0, 245, 155, 0.3);
  border-radius: var(--radius-full);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.6rem;
}

.section-badge svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.section-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-title);
  margin-bottom: 1.6rem;
  letter-spacing: -0.5px;
}

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

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 2.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00F59B 0%, #00E5FF 100%);
  color: #03120A;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 245, 155, 0.6);
  background: linear-gradient(135deg, #05FFAB 0%, #2BEBFF 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.btn-outline-mint {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(0, 245, 155, 0.4);
}

.btn-outline-mint:hover {
  background: rgba(0, 245, 155, 0.1);
  border-color: var(--primary);
}

.btn-sm {
  padding: 0.9rem 1.8rem;
  font-size: 1.4rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.8rem 3.6rem;
  font-size: 1.8rem;
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 11, 20, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
}

.header-logo img {
  height: 4.2rem;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.8rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.btn-client-area {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.btn-client-area:hover {
  background: rgba(0, 245, 155, 0.15);
  border-color: rgba(0, 245, 155, 0.4);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0.8rem;
}

.mobile-toggle svg {
  width: 2.8rem;
  height: 2.8rem;
}

/* Mobile Navigation Drawer */
.mobile-nav {
  position: fixed;
  top: 8rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 6, 11, 0.98);
  backdrop-filter: blur(25px);
  padding: 3.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-link {
  font-size: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   HERO SECTION & SIMULATOR
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 15rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}

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

.hero-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: rgba(0, 245, 155, 0.08);
  border: 1px solid rgba(0, 245, 155, 0.25);
  border-radius: var(--radius-full);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-tag svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 3.4rem;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 4rem;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: #E2E8F0;
}

.bullet-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius-full);
  background: rgba(0, 245, 155, 0.15);
  border: 1px solid rgba(0, 245, 155, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.bullet-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* --------------------------------------------------------------------------
   INTERACTIVE SIMULATOR CARD (FLY DIGITAL)
   -------------------------------------------------------------------------- */
.simulator-card {
  background: rgba(13, 19, 34, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 245, 155, 0.25);
  border-radius: var(--radius-xl);
  padding: 3.8rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.simulator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00F59B, #00E5FF, #05D588);
}

.simulator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.simulator-header h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.simulator-header p {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.slider-group {
  margin-bottom: 2.8rem;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
}

.slider-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.slider-value-badge {
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFFFFF;
  background: rgba(0, 245, 155, 0.12);
  padding: 0.4rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 245, 155, 0.3);
}

/* Range Input Custom Styling */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  cursor: grab;
  transition: transform 0.15s ease, background 0.15s ease;
}

.range-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
  background: var(--cyan);
}

.range-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  cursor: grab;
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: var(--text-sub);
  font-weight: 600;
}

/* Result Display Box */
.sim-result-box {
  background: linear-gradient(135deg, rgba(0, 245, 155, 0.12) 0%, rgba(0, 229, 255, 0.05) 100%);
  border: 1px solid rgba(0, 245, 155, 0.3);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  text-align: center;
  margin-bottom: 2.8rem;
}

.sim-result-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
}

.sim-result-value {
  display: block;
  font-size: 3.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.sim-result-disclaimer {
  display: block;
  font-size: 1.25rem;
  color: var(--text-muted);
}

.sim-cta-btn {
  width: 100%;
  padding: 1.8rem;
  font-size: 1.8rem;
}

.sim-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  font-size: 1.25rem;
  color: var(--text-sub);
}

.sim-security-note svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   SECTION: TABELAS (TABELA COMPARATIVA & TABELA DE VALORES)
   -------------------------------------------------------------------------- */
.section-tables {
  padding: 10rem 0;
  position: relative;
}

.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 6rem;
}

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 2rem 2.4rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--bg-card-2);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table thead th.col-featured {
  background: linear-gradient(180deg, rgba(0, 245, 155, 0.22) 0%, rgba(13, 19, 34, 0.8) 100%);
  border-top: 3px solid var(--primary);
  color: var(--primary);
  position: relative;
}

.col-badge {
  display: inline-block;
  background: var(--primary);
  color: #03120A;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.8rem;
  vertical-align: middle;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td.col-featured {
  background: rgba(0, 245, 155, 0.04);
  font-weight: 700;
  color: #FFFFFF;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.6rem;
}

.feature-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.status-positive {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

.status-negative {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--red);
}

.status-neutral {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
}

/* PRE-CALCULATED SIMULATION TABLE */
.sim-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 6rem;
}

.sim-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.sim-table-header h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
}

.sim-table-header p {
  color: var(--text-muted);
  font-size: 1.5rem;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th {
  padding: 1.6rem 2rem;
  background: var(--bg-card-2);
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.rates-table th:first-child {
  text-align: left;
}

.rates-table td {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 1.6rem;
  color: #E2E8F0;
}

.rates-table td:first-child {
  text-align: left;
  font-weight: 800;
  font-size: 2rem;
  color: #FFFFFF;
}

.rates-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.rates-table .cell-highlight {
  color: var(--primary);
  font-weight: 700;
}

.rates-table .btn-table-apply {
  padding: 0.8rem 1.6rem;
  font-size: 1.35rem;
}

/* FINANCIAL TRANSPARENCY & BACEN TABLE */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.transparency-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
}

.transparency-card h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.transparency-value {
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.transparency-card p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   SECTION: COMO FUNCIONA (HOW IT WORKS)
   -------------------------------------------------------------------------- */
.section-steps {
  padding: 10rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 3.2rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 155, 0.4);
  box-shadow: 0 15px 35px rgba(0, 245, 155, 0.15);
}

.step-num-badge {
  position: absolute;
  top: -1.6rem;
  left: 3.2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  color: #03120A;
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px var(--primary-glow);
}

.step-icon-wrap {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 245, 155, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 2.4rem;
  margin-top: 1rem;
}

.step-icon-wrap svg {
  width: 3.2rem;
  height: 3.2rem;
}

.step-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.step-card p {
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION: VANTAGENS & DIFERENCIAIS (BENEFITS)
   -------------------------------------------------------------------------- */
.section-benefits {
  padding: 10rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.6rem 2.8rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(0, 245, 155, 0.4);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.benefit-icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: var(--radius-md);
  background: rgba(0, 245, 155, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.benefit-icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

.benefit-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION: PROVA SOCIAL & DEPOIMENTOS (TESTIMONIALS)
   -------------------------------------------------------------------------- */
.section-testimonials {
  padding: 10rem 0;
  background: var(--bg-darker);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 0.4rem;
  color: var(--amber);
  margin-bottom: 1.8rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.6rem;
  color: #E2E8F0;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 2.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.author-avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
  color: #03120A;
}

.author-info h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

.author-info span {
  font-size: 1.3rem;
  color: var(--text-sub);
}

/* --------------------------------------------------------------------------
   SECTION: FAQ (DÚVIDAS FREQUENTES)
   -------------------------------------------------------------------------- */
.section-faq {
  padding: 10rem 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item details summary {
  padding: 2.2rem 2.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

.faq-item details summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #03120A;
}

.faq-content {
  padding: 0 2.8rem 2.4rem;
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CTA BANNER (BOTTOM)
   -------------------------------------------------------------------------- */
.section-cta-banner {
  padding: 6rem 0 10rem;
}

.cta-banner-box {
  background: linear-gradient(135deg, #09131C 0%, #060E15 100%);
  border: 1px solid rgba(0, 245, 155, 0.35);
  border-radius: var(--radius-xl);
  padding: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.cta-banner-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 245, 155, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-title {
  font-size: 4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.cta-banner-desc {
  font-size: 1.8rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3.6rem;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   FOOTER & LEGAL
   -------------------------------------------------------------------------- */
.site-footer {
  background: #030408;
  border-top: 1px solid var(--border);
  padding: 8rem 0 4rem;
  font-size: 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5.6rem;
  margin-bottom: 6rem;
}

.footer-brand img {
  height: 4rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 2.4rem;
  max-width: 360px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.footer-badge-pill svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.footer-col h5 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-legal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.8rem;
  color: var(--text-sub);
  line-height: 1.7;
  font-size: 1.25rem;
  margin-bottom: 4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-sub);
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 2rem;
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2.8rem;
  right: 2.8rem;
  width: 6rem;
  height: 6rem;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (BREAKPOINTS)
   MOBILE: SIMULATOR COMES FIRST BEFORE TEXT!
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }

  /* NO MOBILE: SIMULADOR APARECE PRIMEIRO ANTES DO TEXTO! */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .simulator-card {
    order: 1 !important; /* SIMULADOR EM 1º LUGAR NO MOBILE */
    width: 100%;
  }

  .hero-content {
    order: 2 !important; /* TEXTO EM 2º LUGAR NO MOBILE */
    text-align: center;
  }

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

  .hero-bullets {
    align-items: flex-start;
    text-align: left;
    max-width: 440px;
    margin: 0 auto 3rem;
  }

  .steps-grid,
  .benefits-grid,
  .testimonials-grid,
  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .site-header {
    height: 7rem;
  }

  .header-container {
    height: 7rem;
  }

  /* Ajuste de respiro no topo para mobile para o simulador ficar visível de imediato */
  .hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }

  .simulator-card {
    padding: 2.6rem 2rem;
    border-radius: var(--radius-lg);
  }

  .simulator-header h3 {
    font-size: 2.2rem;
  }

  .slider-value-badge {
    font-size: 2rem;
    padding: 0.3rem 1.2rem;
  }

  .sim-result-box {
    padding: 1.8rem 1.4rem;
  }

  .sim-result-value {
    font-size: 3.2rem;
  }

  .nav-menu,
  .btn-client-area {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .steps-grid,
  .benefits-grid,
  .testimonials-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
  }

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

  /* Table horizontal scroll on mobile */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table,
  .rates-table {
    min-width: 600px;
  }

  .cta-banner-box {
    padding: 4rem 2rem;
  }

  .cta-banner-title {
    font-size: 2.8rem;
  }
}
