:root {
  --primary-color: #0d1b3e;
  --secondary-color: #0b1530;
  --accent-blue: #185a9d;
  --accent-cyan: #00d2ff;
  --accent-yellow: #ffc107;
  --accent-pink: #e02460;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #ffffff;
  --bg-alt: #f8fafd;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(13, 27, 62, 0.15);
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* NAVBAR */
.header-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #080f24;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: #ff3366;
}

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

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 6px 0;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00d2ff;
  border-radius: 2px;
}

.btn-app-download {
  background: linear-gradient(135deg, #e02460, #d91b5c);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(224, 36, 96, 0.4);
}

.btn-app-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 36, 96, 0.6);
}

/* HAMBURGER TOGGLE BUTTON */
.btn-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s;
  z-index: 1001;
}

.btn-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* MOBILE MENU DRAWER OVERLAY */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: #080f24;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-close-drawer {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-close-drawer:hover {
  color: #ffffff;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background-color: rgba(0, 210, 255, 0.1);
  border-left: 3px solid #00d2ff;
}

.btn-mobile-download {
  margin-top: 20px;
  background: linear-gradient(135deg, #e02460, #d91b5c);
  color: #ffffff !important;
  font-weight: 800;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(224, 36, 96, 0.4);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* VIDEO BANNER HERO */
.video-banner-section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.video-banner-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.65;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 36, 0.6) 0%, rgba(8, 15, 36, 0.85) 100%);
  z-index: 1;
}

.video-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.video-badge i {
  color: #00d2ff;
}

.video-banner-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.video-banner-content h1 span {
  background: linear-gradient(90deg, #00d2ff, #7f5af0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-banner-content p {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 28px;
}

.video-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: linear-gradient(135deg, #00d2ff, #0072ff);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.35);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* SECTION COMO GANHAR DINHEIRO */
.earn-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}

.earn-header {
  text-align: center;
  margin-bottom: 40px;
}

.earn-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #2b3990;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #0c2363;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(12, 35, 99, 0.25);
  transition: transform 0.2s ease;
}

.announcement-pill:hover {
  transform: scale(1.02);
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #f1b817;
  color: #0c2363;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}

.pill-arrow {
  color: #8fa0dd;
  font-size: 0.85rem;
}

.earn-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f8faff;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e8eef8;
  transition: all 0.25s ease;
}

.step-item:hover {
  transform: translateX(6px);
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 27, 62, 0.08);
  border-color: #cbdcf8;
}

.step-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: #0f2e82;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-number {
  width: 28px;
  height: 28px;
  background-color: #d11252;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step-text {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.4;
}

.step-text strong {
  font-weight: 800;
  color: #0b1a48;
}

/* VEHICLE AND INVITE CODE */
.vehicle-showcase-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-image-container {
  width: 100%;
  max-width: 520px;
  position: relative;
  text-align: center;
}

.car-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
  animation: floatCar 6s ease-in-out infinite;
}

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

.invite-code-card {
  margin-top: 35px;
  background: linear-gradient(135deg, #0e204d, #08122d);
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(11, 26, 72, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  width: 100%;
  max-width: 440px;
}

.invite-title {
  color: #93a8d8;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.invite-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.invite-code {
  color: #ffd200;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(255, 210, 0, 0.3);
}

.btn-copy-code {
  background: #1742a7;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-code:hover {
  background: #1e52cf;
  transform: translateY(-2px);
}

.btn-copy-code.copied {
  background: #10b981;
}

/* SECTION INFORMACOES INSTITUCIONAIS (IMAGEM 1 + TAXINEXO-CARRO) */
.features-section {
  padding: 90px 0;
  background-color: #f8fafc;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.section-tag {
  color: #0284c7;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.features-main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1a48;
  margin-bottom: 50px;
}

.features-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.features-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 30px;
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  background-color: #1e293b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.features-image-container {
  text-align: center;
  position: relative;
}

.features-image-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transition: transform 0.3s ease;
}

.features-image-container img:hover {
  transform: translateY(-5px);
}

/* SECTION BAIXE O APP */
.download-section {
  background: linear-gradient(135deg, #071539 0%, #030b20 100%);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.download-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.download-text-side h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.download-text-side h2 span {
  color: #ffd200;
}

.download-text-side p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 180px;
}

.btn-store.google-play {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn-store.google-play:hover {
  background-color: #111827;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-store.app-store {
  background: linear-gradient(135deg, #007aff, #0056b3);
  color: #ffffff;
}

.btn-store.app-store:hover {
  background: linear-gradient(135deg, #0084ff, #0060c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.store-icon {
  font-size: 1.9rem;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-sub {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-main {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.download-phone-side {
  text-align: center;
  position: relative;
}

.phone-img {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.6));
  animation: floatPhone 6s ease-in-out infinite alternate;
}

@keyframes floatPhone {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* FOOTER CALLOUT & FOOTER */
.footer-cta-bar {
  background-color: #0a1430;
  padding: 45px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo-circle {
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-cta-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-cta-text p {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffd200;
  text-transform: uppercase;
}

.footer-cta-text p span {
  color: #ffffff;
}

.footer-trust-badges {
  display: flex;
  gap: 36px;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  text-align: center;
}

.trust-icon {
  font-size: 1.5rem;
  color: #38bdf8;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 600;
}

/* COPYRIGHT BAR */
.site-footer {
  background-color: #060d21;
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

.site-footer p {
  margin: 0;
}

/* TOAST NOTIFICATION */
.toast-copied {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #10b981;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 9999;
}

.toast-copied.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .earn-grid, .features-grid-wrapper, .download-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .steps-list {
    text-align: left;
  }

  .video-banner-content h1 {
    font-size: 2.2rem;
  }

  .features-items {
    text-align: left;
  }

  .footer-cta-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-brand-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .features-items {
    grid-template-columns: 1fr;
  }

  .footer-trust-badges {
    flex-direction: column;
    gap: 20px;
  }

  .video-banner-section {
    height: 400px;
  }

  .video-banner-content h1 {
    font-size: 1.8rem;
  }
}

/* =========================================================
   PÁGINA COMO FUNCIONA ESPECÍFICOS
   ========================================================= */
.page-hero-header {
  background: linear-gradient(180deg, #07122e 0%, #0c1e4a 100%);
  padding: 60px 20px 45px;
  text-align: center;
  color: #ffffff;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-title span {
  color: #ffd200;
}

.page-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  font-weight: 500;
}

.como-funciona-section {
  background: #f8fafc;
  padding: 60px 0 80px;
}

.media-center-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Video Player Container */
.video-player-card {
  position: relative;
  background: #000000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 9;
}

.video-player-card video,
.video-player-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  display: block;
}

/* Info Box / Sobre a Taxinexo */
.info-card-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 45px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.06);
  border: 1px solid #e9eef6;
}

.info-card-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b1a48;
  margin-bottom: 20px;
}

.info-lead-text {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.info-steps-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.workflow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.workflow-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wf-badge {
  width: 32px;
  height: 32px;
  background: #d81b60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(216, 27, 96, 0.3);
}

.wf-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.5;
}

/* Bottom CTA Banner */
.ready-cta-section {
  background: #08122d;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ready-cta-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.ready-cta-title span {
  color: #ffd200;
}

.btn-cta-cadastrar {
  background: linear-gradient(135deg, #e02460, #d81b60);
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(224, 36, 96, 0.45);
  transition: all 0.25s ease;
}

.btn-cta-cadastrar:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(224, 36, 96, 0.65);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.1rem;
  }
  .info-card-box {
    padding: 25px 20px;
  }
  .ready-cta-title {
    font-size: 1.7rem;
  }
  .btn-cta-cadastrar {
    width: 100%;
    padding: 14px 20px;
  }
}

/* =========================================================
   PÁGINA COMO GANHAR ESPECÍFICOS
   ========================================================= */
.ganhar-hero-banner {
  position: relative;
  background: url('../images/como_funciona.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px 70px;
  color: #ffffff;
  overflow: hidden;
}

.ganhar-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 60, 0.88) 0%, rgba(5, 14, 40, 0.95) 100%);
  z-index: 1;
}

.ganhar-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.ganhar-main-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ganhar-main-title span {
  color: #ffd200;
}

.ganhar-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Oportunidade Card Destaque - Design Premium de Conversão */
.destaque-card-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 24px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.destaque-card-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ff007a, #ffd200);
}

.destaque-car-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.destaque-car-img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
}

.destaque-car-tag {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.destaque-content {
  flex-grow: 1;
}

.destaque-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.destaque-badge {
  background: linear-gradient(135deg, #0c2363, #1e3a8a);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destaque-badge-hot {
  background: linear-gradient(135deg, #ff3366, #e02460);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.destaque-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0b1a48;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.destaque-title span {
  color: #e02460;
  background: linear-gradient(90deg, #e02460, #ff007a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destaque-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.destaque-text strong {
  color: #0f172a;
}

.destaque-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-destaque-action {
  background: linear-gradient(135deg, #00d2ff, #0072ff);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 114, 255, 0.4);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.btn-destaque-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.6);
}

.destaque-guarantee {
  font-size: 0.8rem;
  color: #059669;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* SECTIONS HEADINGS */
.section-heading-center {
  text-align: center;
  margin-bottom: 35px;
}

.section-heading-center h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-heading-center h2 span {
  color: #e02460;
}

.section-heading-center p {
  color: #64748b;
  font-size: 1rem;
}

/* GANHOS ALUGANDO SECTION */
.ganhos-alugando-section {
  padding: 70px 0;
  background-color: #f8fafc;
}

.table-card-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  max-width: 1050px;
  margin: 0 auto;
}

/* TABS DE CIDADES */
.city-tabs-bar {
  display: flex;
  background-color: #eef2f7;
  padding: 6px;
  border-radius: 50px;
  gap: 8px;
  margin-bottom: 30px;
  width: fit-content;
  flex-wrap: wrap;
}

.city-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.25s ease;
}

.city-tab-btn:hover {
  color: #0f172a;
}

.city-tab-btn.active {
  background: linear-gradient(135deg, #e02460, #ec4899);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(224, 36, 96, 0.35);
}

/* CRONOMETRO 24H UNIFICADO */
.countdown-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8faff;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 14px 22px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.countdown-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d1b3e;
  color: #ffffff;
  min-width: 44px;
  height: 44px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.time-box span {
  font-size: 0.55rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.countdown-subtext {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

/* CITY INFO HEADER */
.city-details-header {
  margin-bottom: 20px;
}

.city-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.city-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0d1b3e;
  text-transform: uppercase;
}

.badge-tag-novo {
  background-color: #e02460;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.city-subtitle {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.city-alert-box {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
  font-size: 0.88rem;
  padding: 14px 18px;
  border-radius: 10px;
  line-height: 1.5;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.options-pill-tag {
  background-color: #facc15;
  color: #78350f;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* TABELAS MODERNAS */
.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

.custom-table thead th {
  background-color: #0b1a48;
  color: #ffffff;
  padding: 16px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-table tbody tr {
  background-color: #ffffff;
  transition: background-color 0.2s;
}

.custom-table tbody tr:nth-child(even) {
  background-color: #f8faff;
}

.custom-table tbody tr:hover {
  background-color: #edf4ff;
}

.custom-table tbody td {
  padding: 15px 14px;
  font-size: 0.92rem;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
}

.custom-table tbody td.col-blue {
  color: #2563eb;
  font-weight: 700;
}

.custom-table tbody td.col-pink {
  color: #e02460;
  font-weight: 700;
}

.pill-categoria {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}

.badge-new-item {
  background-color: #e02460;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}

/* 2. GANHOS POR INDICAÇÃO - DEGRADÊ SUAVE & CARDS POLIDOS */
.indicacao-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f1f6fd 0%, #e8f0fe 50%, #f8fafc 100%);
  position: relative;
}

.indicacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.indicacao-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid #dbeafe;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.indicacao-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.indicacao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.12);
  border-color: #93c5fd;
}

.indicacao-card:hover::after {
  opacity: 1;
}

.indicacao-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.indicacao-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.indicacao-desc {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}

.indicacao-desc strong {
  color: #1e3a8a;
  font-weight: 800;
}

.indicacao-reward-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.reward-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: #e02460;
  letter-spacing: -0.5px;
}

.reward-balls-badge {
  background: linear-gradient(135deg, #fef08a, #fde047);
  color: #713f12;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(234, 179, 8, 0.2);
}

/* DICAS DE RETORNO POR CONTRATO */
.retorno-section {
  padding: 70px 0;
  background-color: #f8fafc;
}

.retorno-card-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  max-width: 1050px;
  margin: 0 auto;
}

.retorno-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.tag-dicas-top {
  background-color: #1e3a8a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.retorno-heading-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0b1a48;
  text-transform: uppercase;
  margin-top: 6px;
}

.retorno-heading-title span {
  color: #e02460;
}

.retorno-pill-count {
  background-color: #fef08a;
  color: #854d0e;
  padding: 8px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1.2;
}

.retorno-pill-count span {
  display: block;
  font-size: 1.3rem;
}

.retorno-subtitle {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 25px;
}

/* CAR TABS BAR */
.car-tabs-scroll {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  margin-bottom: 30px;
}

.car-tab-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e3a8a;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.car-tab-btn:hover {
  background: #e2e8f0;
}

.car-tab-btn.active {
  background: linear-gradient(135deg, #e02460, #ec4899);
  color: #ffffff;
  border-color: #e02460;
  box-shadow: 0 4px 14px rgba(224, 36, 96, 0.35);
}

/* 3. RETORNO SUMMARY CARD - DEGRADÊ MODERNO E TAG DESTAQUE */
.retorno-detail-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 30px;
  align-items: stretch;
}

.retorno-summary-card {
  background: linear-gradient(145deg, #0a1f54 0%, #06112e 50%, #030818 100%);
  border-radius: 22px;
  padding: 28px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(6, 17, 46, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.retorno-summary-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.summary-top-tag {
  background: linear-gradient(135deg, #00d2ff, #0072ff);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.35);
}

.summary-inv-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: 1px;
}

.summary-inv-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffd200;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(255, 210, 0, 0.3);
  letter-spacing: -0.5px;
}

.summary-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.summary-stat-row span:first-child {
  color: #cbd5e1;
}

.summary-stat-row span:last-child {
  font-weight: 800;
  color: #ffffff;
}

.retorno-content-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.retorno-main-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0b1a48;
  margin-bottom: 16px;
}

.retorno-main-title span {
  color: #e02460;
}

.retorno-desc-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.retorno-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.timeline-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}

.timeline-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.timeline-box:nth-child(1)::before {
  background: #3b82f6;
}
.timeline-box:nth-child(2)::before {
  background: #10b981;
}
.timeline-box:nth-child(3)::before {
  background: #e02460;
}

.timeline-box-title {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 6px;
}

.timeline-box-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.4;
}

.recarga-alert-box {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .indicacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .retorno-detail-grid {
    grid-template-columns: 1fr;
  }
  .retorno-timeline-grid {
    grid-template-columns: 1fr;
  }
  .destaque-card-hero {
    flex-direction: column;
    text-align: center;
  }
  .destaque-content {
    text-align: center;
  }
  .destaque-badges-row, .destaque-cta-row {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .indicacao-grid {
    grid-template-columns: 1fr;
  }
  .ganhar-main-title {
    font-size: 2rem;
  }
  .destaque-car-img {
    width: 180px;
  }
}

/* =========================================================
   PÁGINA CONVITE ESPECÍFICOS
   ========================================================= */
.convite-hero-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  padding: 60px 20px 50px;
  border-bottom: 1px solid #e2e8f0;
}

.convite-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.convite-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-tag-atualizado {
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.convite-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0b1a48;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.convite-hero-title span {
  color: #e02460;
}

.convite-hero-lead {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.convite-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.code-pill-mini {
  background: linear-gradient(135deg, #091a44, #050d24);
  padding: 8px 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(9, 26, 68, 0.2);
}

.code-pill-mini .lbl {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.code-pill-mini .val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffd200;
  letter-spacing: 1px;
}

.btn-usar-codigo {
  background: linear-gradient(135deg, #e02460, #d81b60);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(224, 36, 96, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-usar-codigo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 36, 96, 0.6);
}

.convite-car-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.convite-car-card img {
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
  height: auto;
  box-shadow: 0 15px 35px rgba(13, 27, 62, 0.08);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* CONVITE BODY TWO COLUMNS */
.convite-body-section {
  padding: 60px 0 80px;
  background-color: #f8fafc;
}

.convite-layout-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 35px;
  max-width: 1050px;
  margin: 0 auto;
  align-items: start;
}

/* SIDEBAR STICKY */
.sidebar-sticky-box {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 6px 20px rgba(13, 27, 62, 0.04);
  border: 1px solid #e2e8f0;
}

.sidebar-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1e3a8a;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.sidebar-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  display: block;
  transition: all 0.2s ease;
}

.sidebar-nav-links a:hover,
.sidebar-nav-links a.active {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 700;
}

/* MAIN CONTENT CARD */
.convite-main-article {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-header h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #0b1a48;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-header h2 span {
  color: #e02460;
}

.article-text {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-text strong {
  color: #0f172a;
}

/* BIG CALLOUT INVITE CARD */
.big-invite-card {
  background: linear-gradient(135deg, #091a44 0%, #06112e 100%);
  border-radius: 18px;
  padding: 28px 32px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(9, 26, 68, 0.25);
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.big-card-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.big-code-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd200;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 210, 0, 0.3);
}

.btn-cadastrar-com-codigo {
  background: linear-gradient(135deg, #e02460, #d81b60);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  align-self: flex-start;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(224, 36, 96, 0.4);
}

.btn-cadastrar-com-codigo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 36, 96, 0.6);
}

/* SECTIONS HEADINGS INSIDE ARTICLE */
.article-section-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0b1a48;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* COMO SE CADASTRAR PASSOS */
.cadastro-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cad-step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f8fafc;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.cad-num-badge {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #e02460, #d81b60);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.cad-step-text {
  font-size: 0.94rem;
  color: #334155;
  font-weight: 500;
}

.cad-step-text strong {
  color: #0f172a;
}

/* FAQ QUESTIONS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.2s ease;
}

.faq-item-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-item-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.faq-item-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}

.faq-item-card p strong {
  color: #0f172a;
}

/* CONCLUSÃO & AVISO */
.aviso-afiliado-box {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 20px;
}

/* BOTTOM FOOTER CTA */
.convite-bottom-cta {
  background: #08122d;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.convite-bottom-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.convite-bottom-title span {
  color: #ffd200;
}

.convite-bottom-sub {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 25px;
}

/* RESPONSIVE CONVITE */
@media (max-width: 992px) {
  .convite-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .convite-hero-text {
    align-items: center;
  }
  .convite-action-group {
    justify-content: center;
  }
  .convite-layout-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-sticky-box {
    position: static;
  }
  .convite-main-article {
    padding: 30px 20px;
  }
}




