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

:root {
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --primary-blue-light: #3b82f6;
  --primary-glow: rgba(37, 99, 235, 0.16);
  --accent-cyan: #0284c7;
  --accent-blue: #2563eb;
  --slate-dark: #0f172a;
  --slate-gray: #475569;
  --light-gray: #64748b;
  --text-white: #0f172a;
  --text-muted: #475569;
  --border-subtle: rgba(226, 232, 240, 0.85);
  --border-blue: rgba(37, 99, 235, 0.35);
  --green-success: #059669;
  --green-glow: rgba(5, 150, 105, 0.2);
  --shadow-main: 0 20px 50px rgba(15, 23, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--slate-dark);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.05), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(2, 132, 199, 0.05), transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(59, 130, 246, 0.04), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand-logo-wrapper:hover {
  border-color: transparent;
  box-shadow: none;
}

.site-logo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: filter 0.3s ease;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--slate-dark);
}

.brand-name span {
  color: var(--primary-blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  max-width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-blue {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-blue::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-blue:hover::before {
  left: 100%;
}

.btn-blue:hover {
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
  border-color: #2563eb;
}

.btn-dark {
  color: #0f172a !important;
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-dark:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

.btn-green {
  color: #ffffff !important;
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.25);
  border-color: rgba(5, 150, 105, 0.4);
}

.btn-green:hover {
  box-shadow: 0 14px 35px rgba(5, 150, 105, 0.35);
}

/* Hero Section - Dark Pattern com Video Background */
.hero {
  position: relative;
  padding: 85px 0 100px;
  background: linear-gradient(135deg, #070b14 0%, #0f172a 60%, #1e293b 100%);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Video Container com Máscara Circular Degradê */
.hero-video-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mask-image: radial-gradient(circle at 62% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 32%, rgba(0, 0, 0, 0) 68%);
  -webkit-mask-image: radial-gradient(circle at 62% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 32%, rgba(0, 0, 0, 0) 68%);
}

.hero-video-element {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
}

.hero-video-element.active {
  opacity: 1;
}

/* Máscara Degradê Circular Adicional para Transição Ultra Suave */
.hero-video-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 62% 50%, transparent 10%, rgba(7, 11, 20, 0.35) 40%, #070b14 70%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 640px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
}

.hero h1 strong {
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin-top: 24px;
  max-width: 640px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
}

.hero-text b {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-actions .btn-dark {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Sections General & Alternating Layouts */
.section {
  padding: 90px 0;
  position: relative;
}

/* Seção Alternada - Tom Slate Suave */
.section-alt {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Seção Tinted - Gradiente Azul Gelo Suave */
.section-tint {
  background: linear-gradient(180deg, #edf5ff 0%, #f8fafc 100%);
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
}

/* Seção Dark Accent - Destaque de Alto Contraste Slate Escuro estilo Claude */
.section-dark-accent {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
}

.section-dark-accent .section-head h2,
.section-dark-accent .kicker {
  color: #ffffff !important;
}

.section-dark-accent .section-head p {
  color: #94a3b8;
}

.section-dark-accent .authority {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.section-dark-accent .authority h2 {
  color: #ffffff;
}

.section-dark-accent .authority h2 span {
  background: linear-gradient(135deg, #ffffff 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-dark-accent .authority p {
  color: #cbd5e1;
}

/* Componentes dentro da Seção Dark Accent */
.section-dark-accent .simulator-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.section-dark-accent .sim-label {
  color: #ffffff;
}

.section-dark-accent .sim-label strong {
  color: #38bdf8;
}

.section-dark-accent .sim-slider {
  background: #334155;
  accent-color: #38bdf8;
}

.section-dark-accent .sim-marks {
  color: #94a3b8;
}

.section-dark-accent .sim-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark-accent .sim-box.highlight {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
}

.section-dark-accent .sim-box-title {
  color: #94a3b8;
}

.section-dark-accent .sim-box-value {
  color: #ffffff;
}

.section-dark-accent .sim-box-value.cyan {
  color: #38bdf8;
}

.section-dark-accent .sim-box-sub {
  color: #94a3b8;
}

.section-dark-accent .sim-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section-dark-accent .sim-footer p {
  color: #94a3b8;
}

/* Depoimentos em Dark Accent */
.section-dark-accent .testimonial-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-dark-accent .testimonial-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.15);
}

.section-dark-accent .stars {
  color: #fbbf24;
}

.section-dark-accent .testimonial-card p {
  color: #cbd5e1;
}

.section-dark-accent .reviewer .avatar {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

.section-dark-accent .reviewer strong {
  color: #ffffff;
}

.section-dark-accent .reviewer span {
  color: #94a3b8;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.kicker {
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--slate-dark);
}

.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

/* Benefits Grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  min-height: 220px;
  padding: 26px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.benefit:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1);
  background: #ffffff;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: var(--primary-blue);
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.benefit h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--slate-dark);
}

.benefit p {
  color: var(--slate-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Compare Section & Pricing */
.compare-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1140px;
  margin: 30px auto 0;
  gap: 28px;
  align-items: stretch;
  padding-top: 16px;
}

.plan {
  position: relative;
  padding: 34px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.plan.vip {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.08);
  overflow: visible !important;
}

.plan.vip:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.plan h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--slate-dark);
  background: linear-gradient(135deg, #0f172a 40%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-desc {
  color: var(--slate-gray);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.item.good .icon-check {
  color: var(--green-success);
}

.item.bad {
  opacity: 0.65;
}

.item.bad .icon-cross {
  color: var(--light-gray);
}

.payment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.price-box {
  padding: 22px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-box:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.price-label {
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  margin-top: 6px;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--slate-dark);
}

.price small {
  color: var(--light-gray);
  font-size: 14px;
  font-weight: 600;
}

.vip-warning {
  margin-top: 10px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-size: 12px;
  line-height: 1.45;
}

.vip-warning strong {
  color: var(--primary-blue);
}

.pix-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 14px;
}

.pix-box strong {
  display: block;
  color: var(--slate-dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.pix-box span {
  display: block;
  color: var(--slate-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* Authority Banner */
.authority {
  padding: 56px 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.authority h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--slate-dark);
}

.authority h2 span {
  background: linear-gradient(135deg, #0f172a 30%, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.authority p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--slate-gray);
  font-size: 17px;
  line-height: 1.65;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  padding: 28px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.step:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1);
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: var(--primary-blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--slate-dark);
}

.step p {
  color: var(--slate-gray);
  line-height: 1.6;
  font-size: 14px;
}

/* FAQ Accordion */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq details {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.faq details[open] {
  background: #ffffff;
  border-color: #bfdbfe;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--slate-dark);
}

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

.faq summary .faq-icon {
  color: var(--primary-blue);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq details[open] summary .faq-icon {
  transform: rotate(180deg);
}

.faq p {
  padding: 0 24px 24px;
  color: var(--slate-gray);
  line-height: 1.65;
  font-size: 15px;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  color: var(--slate-gray);
  text-align: center;
  font-size: 14px;
  background: #f8fafc;
}

/* Responsiveness */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

@media (max-width: 680px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-name {
    font-size: 16px;
  }

  .site-logo {
    max-height: 36px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .payment-actions {
    grid-template-columns: 1fr;
  }

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

  .authority {
    padding: 34px 20px;
    text-align: left;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }
}

/* ===== TELA DE ENTRADA & MODAL DE CARREGAMENTO ===== */
body.modal-open {
  overflow: hidden !important;
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #070b14;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Fullscreen Split Banner Layout */
.fullscreen-split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.full-split-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

/* Lado Gratuito */
.side-free {
  background: linear-gradient(180deg, #071610 0%, #05261b 50%, #031710 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.side-free::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  opacity: 0.35;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.side-free:hover {
  background: linear-gradient(180deg, #092118 0%, #073828 50%, #042117 100%);
}

.side-free:hover::before {
  opacity: 0.75;
}

/* Lado Premium VIP */
.side-vip {
  background: linear-gradient(180deg, #091325 0%, #0c2042 50%, #08152a 100%);
}

.side-vip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  opacity: 0.35;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.side-vip:hover {
  background: linear-gradient(180deg, #0c1c38 0%, #112d5e 50%, #0b1a33 100%);
}

.side-vip:hover::before {
  opacity: 0.75;
}

/* Título e Badge Superior */
.side-top {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
}

.side-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 20px;
}

.badge-free {
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.badge-vip {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

.side-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Ícones SVG Minimalistas Centralizados */
.side-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}

.icon-wrapper {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.icon-free {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: #34d399;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

.icon-vip {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}

.full-split-side:hover .icon-wrapper {
  transform: scale(1.08);
}

.full-split-side:hover .icon-free {
  color: #10b981;
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.25);
}

.full-split-side:hover .icon-vip {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 60px rgba(251, 191, 36, 0.25);
}

.minimal-icon {
  width: 64px;
  height: 64px;
  transition: all 0.3s ease;
}

/* Parte debaixo com a mensagem no hover */
.side-bottom {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-hover-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 12px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.full-split-side:hover .side-hover-cta {
  opacity: 1;
  transform: translateY(0);
}

.full-split-side:hover .cta-arrow {
  transform: translateX(4px);
}

/* Loading Modal State */
.loading-modal {
  max-width: 480px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-modal.hidden {
  display: none !important;
}

.spinner {
  width: 58px;
  height: 58px;
  border: 4px solid #e2e8f0;
  border-top-color: var(--primary-blue);
  border-right-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

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

.loading-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--slate-dark);
}

.loading-modal p {
  color: var(--slate-gray);
  font-size: 14px;
  margin-bottom: 24px;
}

.progress-bar-wrap {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #f1f5f9;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563eb, #0284c7);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
  animation: progressFill 3s linear forwards;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fullscreen-split-banner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .side-free {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .full-split-side {
    padding: 30px 20px;
  }

  .side-top {
    margin-top: 10px;
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .minimal-icon {
    width: 42px;
    height: 42px;
  }

  .side-hover-cta {
    opacity: 1;
    transform: translateY(0);
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 544px) {
  .loading-modal {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

/* ===== NOVO HEADER & NAVEGAÇÃO ===== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-gray);
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-size: 12px;
  color: #047857;
  font-weight: 500;
}

.status-badge strong {
  color: #059669;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-success);
  box-shadow: 0 0 10px var(--green-success);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-sm {
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  border-radius: 4px !important;
}

/* ===== HERO STATS BAR ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #38bdf8;
}

.stat-item span {
  font-size: 12px;
  color: #94a3b8;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== VITRINE DE OFERTAS (SHOWCASE) ===== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.vehicle-card {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.vehicle-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  background: #0f172a;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.vehicle-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.tag-sold {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.tag-vip {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.tag-reserved {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #d97706;
}

.vehicle-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.vehicle-title-row h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-dark);
}

.vehicle-year {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 600;
  white-space: nowrap;
}

.vehicle-specs {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--slate-gray);
  margin-bottom: 18px;
}

.vehicle-price-box {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--slate-gray);
  margin-bottom: 6px;
}

.vip-highlight {
  font-size: 15px;
  color: var(--slate-dark);
}

.vip-highlight strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-blue);
}

.margin-badge {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* ===== SIMULADOR INTERATIVO ===== */
.simulator-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.sim-controls {
  margin-bottom: 30px;
}

.sim-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--slate-dark);
  margin-bottom: 14px;
}

.sim-label strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--primary-blue);
}

.sim-slider {
  width: 100%;
  height: 10px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
  accent-color: var(--primary-blue);
}

.sim-marks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate-gray);
  margin-top: 8px;
}

.sim-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.sim-box {
  padding: 20px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-box.highlight {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.sim-box-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-gray);
  margin-bottom: 8px;
}

.sim-box-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--slate-dark);
  margin-bottom: 4px;
}

.sim-box-value.cyan { color: var(--primary-blue); }
.sim-box-value.purple { color: #0284c7; }

.sim-box-sub {
  font-size: 11px;
  color: var(--slate-gray);
}

.sim-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.sim-footer p {
  font-size: 13px;
  color: var(--slate-gray);
}

/* ===== PROVA SOCIAL (DEPOIMENTOS) ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1);
}

.stars {
  color: #d97706;
  font-size: 14px;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--slate-gray);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 22px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer .avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  display: grid;
  place-items: center;
  color: var(--primary-blue);
  font-size: 18px;
}

.reviewer strong {
  display: block;
  font-size: 14px;
  color: var(--slate-dark);
}

.reviewer span {
  font-size: 12px;
  color: var(--slate-gray);
}

/* ===== ELEMENTOS ADICIONAIS PLANOS ===== */
.plan-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #2563eb, #0284c7);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  white-space: nowrap;
  z-index: 10;
}

.feature-anual {
  position: relative;
  border-color: #a7f3d0 !important;
  overflow: visible !important;
}

.badge-saving {
  position: absolute;
  top: -12px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--green-success);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.trust-icons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  font-size: 12px;
  color: var(--slate-gray);
  flex-wrap: wrap;
}

.trust-icons-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-icons-row i {
  color: var(--primary-blue);
}

/* ===== RODAPÉ INSTITUCIONAL ===== */
.footer {
  padding: 60px 0 30px;
  background: #0f172a;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand-col .brand {
  margin-bottom: 16px;
}

.footer .brand-name {
  color: #ffffff;
}

.footer .brand-logo-wrapper {
  background: transparent;
  border: none;
}

.footer .site-logo,
.section-dark-accent .site-logo,
.bg-blue .site-logo,
.logo-white {
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #38bdf8;
}

.footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #cbd5e1;
}

.footer-trust-list span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-cyan { color: #38bdf8; }
.text-green { color: #10b981; }
.text-purple { color: #38bdf8; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  text-align: center;
  color: #64748b;
}

.footer-subtext {
  font-size: 12px;
  color: #64748b;
  margin-top: 6px;
}

/* RESPONSIVIDADE ADICIONAL */
@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .sim-results-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .status-badge {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .simulator-card {
    padding: 24px 18px;
  }
}

/* ===== HIGH-TECH SPOTLIGHT, 3D TILT & PARALLAX ENGINE ===== */

/* Parallax Fundo sutil */
.parallax-bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at var(--scroll-x, 50%) var(--scroll-y, 20%), rgba(37, 99, 235, 0.04), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(2, 132, 199, 0.03), transparent 50%);
  transition: transform 0.1s ease-out;
}

/* Spotlight Card - Iluminação Seguidora de Cursor */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(37, 99, 235, 0.06),
    rgba(2, 132, 199, 0.03) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

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

/* Tilt 3D Matrix & Clean Geometries */
.vehicle-card[data-tilt],
.opportunity-card[data-tilt],
.plan[data-tilt] {
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  position: relative;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.vehicle-card[data-tilt]:hover {
  border-color: #bfdbfe !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

/* Elevação 3D dos componentes internos */
.vehicle-card[data-tilt] .vehicle-img-wrap {
  transform: translateZ(30px);
  border-radius: 8px;
  margin: 10px;
  background: #f8fafc;
}

.vehicle-card[data-tilt] .vehicle-img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-card[data-tilt]:hover .vehicle-img {
  transform: translateZ(40px) scale(1.08) translateY(-4px);
}

.vehicle-card[data-tilt] .vehicle-body {
  transform: translateZ(20px);
}

.vehicle-card[data-tilt] .margin-badge {
  transform: translateZ(25px);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
}

/* Botoes Magnéticos & Shimmer Effect */
.btn-blue, .btn-green, .btn-dark {
  border-radius: 8px !important;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-blue::after, .btn-green::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(30deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-blue:hover::after, .btn-green:hover::after {
  left: 140%;
}

/* FAQ Accordion High-Tech */
.faq details {
  border-radius: 8px !important;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  position: relative;
}

.faq details::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.faq details[open]::before {
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
}

.faq details[open] {
  border-color: #bfdbfe;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.faq summary {
  padding: 20px 24px;
}

.faq summary:hover {
  color: var(--primary-blue);
}

/* ===== SEÇÃO DE VÍDEO YOUTUBE (DOBRA CUSTOMIZADA) ===== */
.section-video {
  background: linear-gradient(180deg, #f8fafc 0%, #0f172a 100%);
  position: relative;
  padding: 80px 0;
}

.section-video .section-head h2 {
  color: #ffffff;
}

.section-video .section-head p {
  color: #94a3b8;
}

.video-card-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 30px rgba(37, 99, 235, 0.15);
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Proporção 16:9 */
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.video-player-wrapper iframe,
.video-player-wrapper #yt-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Camada transparente que bloqueia qualquer clique externo no iframe (impedindo redirecionamento para o YouTube) */
.video-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  background: transparent;
}

/* Botão de Play central sobre o vídeo */
.video-play-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 11;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 4px;
}

.video-player-wrapper:hover .video-play-center-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(37, 99, 235, 1);
  box-shadow: 0 0 45px rgba(37, 99, 235, 0.85);
}

.video-card-container.playing .video-play-center-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

/* Barra de Controles Personalizada */
.video-controls-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.yt-time-display {
  font-family: 'Montserrat', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

/* Barra de progresso visual (estritamente não clicável) */
.yt-progress-container {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  pointer-events: none !important; /* Desativa interação para impedir avanço */
}

.yt-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  border-radius: 999px;
  transition: width 0.25s linear;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.btn-icon-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
}

.btn-icon-control:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: #3b82f6;
  color: #ffffff;
}

@media (max-width: 640px) {
  .video-controls-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .yt-progress-container {
    width: 100%;
    order: 3;
    flex: none;
  }
}

@media (max-width: 980px) {
  .hero-video-bg {
    width: 100%;
    opacity: 0.45;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 80%);
  }
  .hero-video-mask {
    background: radial-gradient(circle at 50% 50%, transparent 10%, rgba(7, 11, 20, 0.5) 50%, #070b14 85%);
  }
}




