/* ========================================================
   CVC VIAGENS - SISTEMA DE CONSULTA & RESGATE DE PONTOS
   Design System Oficial CVC - Paleta, Tipografia e Layout
   ======================================================== */

:root {
  --cvc-yellow: #FFD600;
  --cvc-yellow-light: #FFF066;
  --cvc-yellow-hover: #ECC400;
  
  --cvc-blue: #000B7B;
  --cvc-blue-hover: #00085E;
  --cvc-blue-dark: #00063D;
  --cvc-blue-light: #EBF0FF;
  
  --cvc-accent-blue: #0056B3;
  --cvc-green-wa: #25D366;
  --cvc-green-wa-hover: #1EBE5D;
  
  --cvc-text-main: #1D1D1B;
  --cvc-text-muted: #666666;
  --cvc-text-light: #8E8E93;
  
  --cvc-bg-page: #F4F5F7;
  --cvc-bg-card: #FFFFFF;
  --cvc-border: #E0E0E0;
  --cvc-border-focus: #000B7B;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 11, 123, 0.12);
  --shadow-xl: 0 16px 40px rgba(0, 11, 123, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  font-family: var(--font-family);
  color: var(--cvc-text-main);
  background-color: var(--cvc-bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ================= BARRA UTILITÁRIA SUPERIOR ================= */
.top-utility-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid #ECECEC;
  font-size: 12px;
  color: var(--cvc-text-muted);
}

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

.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.util-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #4A4A4A;
  transition: color 0.2s;
  font-weight: 500;
}

.util-link:hover {
  color: var(--cvc-blue);
}

.util-icon {
  width: 14px;
  height: 14px;
  color: var(--cvc-blue);
}

.btn-config-demo {
  background: #F1F4F9;
  border: 1px dashed #B5C6DE;
  color: var(--cvc-blue);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.btn-config-demo:hover {
  background: var(--cvc-blue);
  color: #FFF;
  border-color: var(--cvc-blue);
}

/* ================= CABEÇALHO PRINCIPAL ================= */
.main-header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

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

.cvc-brand-img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.cvc-svg-logo {
  height: 48px;
  width: auto;
}

/* Navegação por Produtos */
.nav-products {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #2F3542;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--cvc-blue);
  background-color: #F8F9FA;
}

.nav-icon {
  width: 17px;
  height: 17px;
}

/* Item Ativo (Clube de Pontos) */
.nav-item.active .nav-link {
  color: var(--cvc-blue);
  font-weight: 700;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 14px;
  right: 14px;
  height: 4px;
  background-color: var(--cvc-blue);
  border-radius: 4px 4px 0 0;
}

.btn-my-trips {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cvc-blue);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #D1D5DB;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-my-trips:hover {
  border-color: var(--cvc-blue);
  background-color: var(--cvc-blue-light);
}

/* ================= HERO SECTION COM BACKGROUND PARADISÍACO ================= */
.hero-section {
  background-color: var(--cvc-yellow);
  padding: 42px 0 65px;
  position: relative;
  overflow: hidden;
}

/* Imagem de Fundo Paradisíaca com Opacidade Baixa (Conforme Solicitado) */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero-bg-landscape.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 214, 0, 0.25) 0%, rgba(255, 214, 0, 0.65) 60%, rgba(255, 214, 0, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title-box {
  text-align: center;
  max-width: 940px;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--cvc-blue);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  box-shadow: 0 3px 8px rgba(0, 11, 123, 0.25);
}

.hero-heading {
  font-size: 32px;
  font-weight: 900;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 12px;
}

.highlight-blue {
  color: var(--cvc-blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 11, 123, 0.35);
}

.hero-subtext {
  font-size: 15.5px;
  color: #2F3542;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Pílulas dos 4 Benefícios Oficiais CVC */
.hero-benefits-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 13.5px;
  font-weight: 700;
  color: #1D1D1B;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
}

.benefit-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 11, 123, 0.15);
}

.pill-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-blue { border-color: #0066FF; }
.pill-blue .pill-icon { background: #0066FF; color: #FFFFFF; }

.pill-orange { border-color: #F59E0B; }
.pill-orange .pill-icon { background: #F59E0B; color: #FFFFFF; }

.pill-green { border-color: #10B981; }
.pill-green .pill-icon { background: #10B981; color: #FFFFFF; }

.pill-purple { border-color: #8B5CF6; }
.pill-purple .pill-icon { background: #8B5CF6; color: #FFFFFF; }

/* Grid do Hero: Banner + Card de Consulta */
.hero-main-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
}

.hero-banner-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-banner-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 11, 123, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.9);
  background: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 11, 123, 0.28);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.hero-banner-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 11, 123, 0.94);
  backdrop-filter: blur(8px);
  color: #FFD600;
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 214, 0, 0.4);
}

.star-icon {
  font-size: 15px;
  color: #FFD600;
}

.hero-form-col {
  width: 100%;
}

.consultation-card {
  width: 100%;
  background: var(--cvc-bg-card);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 11, 123, 0.18);
  padding: 28px 28px;
  position: relative;
  border: 1px solid rgba(0, 11, 123, 0.08);
}

.consultation-header-intro {
  margin-bottom: 20px;
}

.consult-tag-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--cvc-blue);
  background: var(--cvc-blue-light);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.consult-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.3;
}

.consult-card-desc {
  font-size: 13px;
  color: var(--cvc-text-muted);
  line-height: 1.45;
}

/* Abas */
.card-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.card-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none;
  border: 1px solid #D6D8DC;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active {
  background-color: var(--cvc-blue);
  color: #FFFFFF;
  border-color: var(--cvc-blue);
  box-shadow: 0 4px 10px rgba(0, 11, 123, 0.2);
}

.tab-btn:hover:not(.active) {
  border-color: var(--cvc-blue);
  color: var(--cvc-blue);
  background-color: #F8F9FA;
}

/* Formulário Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: flex-end;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-action-group {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: 13px;
  font-weight: 700;
  color: #2F3542;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-label svg {
  color: var(--cvc-blue);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-control {
  width: 100%;
  height: 52px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--cvc-text-main);
  background-color: #FAFAFC;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--cvc-blue);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 11, 123, 0.1);
}

.form-control::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.helper-text {
  font-size: 11.5px;
  color: var(--cvc-text-light);
  font-weight: 500;
}

/* Botão Consultar */
.btn-consultar {
  width: 100%;
  height: 52px;
  background-color: var(--cvc-blue);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 16px rgba(0, 11, 123, 0.25);
}

.btn-consultar:hover {
  background-color: var(--cvc-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 11, 123, 0.35);
}

.btn-consultar:active {
  transform: translateY(0);
}

.spinner-loader {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 0.8s linear infinite;
}

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

.form-footer-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #64748B;
}

.form-footer-info svg {
  color: #10B981;
}

/* ================= RESULTADOS DA CONSULTA ================= */
.results-container {
  margin-top: 24px;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #E2E8F0, transparent);
  margin-bottom: 24px;
}

.result-header {
  text-align: center;
  margin-bottom: 22px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.status-badge.success {
  background-color: #E8F8EE;
  color: #0E8A3F;
  border: 1px solid #C4ECD2;
}

.result-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--cvc-text-main);
}

.result-title span {
  color: var(--cvc-blue);
}

/* CARTÃO FIDELIDADE DIGITAL CVC */
.loyalty-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.cvc-digital-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(135deg, #000B7B 0%, #001F82 50%, #00063D 100%);
  border-radius: 20px;
  color: #FFFFFF;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 11, 123, 0.35);
  border: 1px solid rgba(255, 214, 0, 0.3);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.card-brand .brand-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--cvc-yellow);
  letter-spacing: -0.5px;
  display: block;
  line-height: 1;
}

.card-brand .brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.card-tier-badge {
  background: rgba(255, 214, 0, 0.15);
  border: 1px solid var(--cvc-yellow);
  color: var(--cvc-yellow);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.card-chip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.card-chip {
  width: 44px;
  height: 32px;
  background: linear-gradient(135deg, #ECC400 0%, #FFF066 50%, #C49B00 100%);
  border-radius: 6px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contactless-icon {
  color: rgba(255, 255, 255, 0.6);
}

.card-balance-block {
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.balance-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.counter-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--cvc-yellow);
  line-height: 1;
}

.points-label {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 12px;
}

.holder-label, .meta-label, .validity-label {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.holder-name {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.meta-val, .validity-date {
  font-weight: 700;
  color: #FFFFFF;
}

/* Métricas em Grid */
.points-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.metric-box {
  background: #F8F9FD;
  border: 1px solid #E6E9F2;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon.money { background: #E8F4FF; color: var(--cvc-blue); }
.metric-icon.clock { background: #E8F8EE; color: #0E8A3F; }
.metric-icon.gift { background: #FFF9E6; color: #B38600; }

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

.metric-title {
  font-size: 12px;
  color: var(--cvc-text-muted);
  font-weight: 600;
}

.metric-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--cvc-text-main);
  margin: 2px 0;
}

.text-success { color: #0E8A3F; }
.text-accent { color: var(--cvc-blue); }

.metric-note {
  font-size: 11px;
  color: var(--cvc-text-light);
}

/* ================= CTA DE RESGATE NO WHATSAPP ================= */
.redeem-cta-section {
  background: linear-gradient(180deg, #F9FBFC 0%, #F0F4F8 100%);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cta-message h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--cvc-text-main);
  margin-bottom: 6px;
}

.cta-message p {
  font-size: 13.5px;
  color: var(--cvc-text-muted);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

/* Botão Whatsapp Chamativo com Efeito Pulso */
.btn-whatsapp-redeem {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background-color: var(--cvc-green-wa);
  color: #FFFFFF;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  animation: waPulse 2.5s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-redeem:hover {
  background-color: var(--cvc-green-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
}

.wa-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: #FFFFFF;
  display: block;
}

.btn-inner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
  min-width: 0;
}

.btn-top-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.btn-main-label {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}

.chevron-right {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: auto;
  color: #FFFFFF;
}

.whatsapp-hint {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #64748B;
  margin-top: 16px;
  text-align: left;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-hint svg {
  color: var(--cvc-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================= SEÇÃO DE PACOTES RESGATÁVEIS ================= */
.section-packages {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.section-header-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-icon-badge {
  background-color: var(--cvc-yellow-light);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--cvc-text-main);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 14px;
  color: var(--cvc-text-muted);
  margin-top: 4px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.package-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #D1D5DB;
}

.card-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

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

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

.card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--cvc-yellow);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.card-tag.tag-blue {
  background-color: var(--cvc-blue);
  color: #FFF;
}

.card-tag.tag-yellow {
  background-color: #FFA500;
  color: #FFF;
}

.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-type {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--cvc-blue);
  margin-bottom: 6px;
}

.destination-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--cvc-text-main);
  line-height: 1.3;
  margin-bottom: 6px;
}

.package-dates {
  font-size: 12px;
  color: var(--cvc-text-muted);
  margin-bottom: 14px;
}

.price-box {
  margin-top: auto;
  border-top: 1px dashed #E5E7EB;
  padding-top: 12px;
  margin-bottom: 12px;
}

.price-from {
  font-size: 11px;
  color: var(--cvc-text-light);
  display: block;
}

.points-price {
  font-size: 20px;
  color: var(--cvc-blue);
  margin: 2px 0;
}

.points-price strong {
  font-weight: 900;
}

.points-price small {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.cash-alt {
  font-size: 11px;
  color: var(--cvc-text-muted);
  display: block;
}

.btn-card-redeem {
  width: 100%;
  padding: 10px;
  background-color: #F0F4FA;
  color: var(--cvc-blue);
  border: 1.5px solid #CCD8EB;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ================= BANNER OFICIAL FEIRÃO CVC (Imagem 2) ================= */
.feirao-cvc-banner-wrapper {
  margin-top: 36px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-feirao-link {
  display: block;
  width: 100%;
  max-width: 960px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background-color: var(--cvc-yellow);
}

.banner-feirao-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.banner-feirao-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ================= SLIDE EXCLUSIVO DE SUGESTÕES DE VIAGENS (Imagem 3) ================= */
.section-exclusive-destinations {
  padding: 50px 0 60px;
  background-color: #FFFFFF;
  border-top: 1px solid #ECEFF2;
}

.exclusive-header {
  margin-bottom: 28px;
}

.exclusive-tag {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cvc-blue);
  display: block;
  margin-bottom: 4px;
}

.exclusive-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--cvc-text-main);
  line-height: 1.25;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 4px 2px;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.exclusive-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #111;
  aspect-ratio: 4 / 3;
}

.exclusive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 11, 123, 0.15);
}

.exclusive-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.exclusive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exclusive-card:hover .exclusive-media img {
  transform: scale(1.08);
}

.exclusive-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.2s;
}

.exclusive-card:hover .exclusive-arrow {
  background: var(--cvc-blue);
}

.exclusive-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.exclusive-cat {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}

.exclusive-name {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.carousel-btn {
  position: absolute;
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  border: 1px solid #D9E1ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cvc-blue);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--cvc-blue);
  color: #FFFFFF;
  border-color: var(--cvc-blue);
}

.carousel-btn.prev {
  left: -18px;
}

.carousel-btn.next {
  right: -18px;
}

/* ================= BANNER OFICIAL APP CVC (Imagem 5) ================= */
.banner-app-cvc-official {
  padding: 30px 0;
  background-color: var(--cvc-bg-page);
  display: flex;
  justify-content: center;
}

.banner-app-official-container {
  display: flex;
  justify-content: center;
}

.banner-app-link {
  display: block;
  width: 100%;
  max-width: 960px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.banner-app-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.banner-app-cvc-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ================= FORMAS DE PAGAMENTOS E APPS NO FOOTER (Imagem 4) ================= */
.footer-payments-block-official {
  border-top: 1px solid #EDEDED;
  padding-top: 28px;
  margin-bottom: 28px;
}

.payments-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--cvc-text-main);
  margin-bottom: 16px;
}

.pay-methods-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pay-method-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pay-method-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cvc-text-muted);
}

.pay-flags-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  background: #FFFFFF;
  border: 1px solid #DCE3EE;
  border-radius: 4px;
  padding: 2px 6px;
}

.elo-badge {
  background: #000000;
  color: #FFFFFF;
  padding: 2px 8px;
  gap: 3px;
}

.elo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.elo-dot.yellow { background: #FFD600; }
.elo-dot.red { background: #FF2B44; }
.elo-dot.blue { background: #0099FF; }

.elo-text {
  font-size: 12px;
  font-weight: 900;
  margin-left: 2px;
  color: #FFFFFF;
}

.amex-badge {
  background: #0077C0;
  color: #FFFFFF;
  padding: 2px 6px;
}

.amex-text {
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.badge-pix-official {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  color: #32BCAD;
}

.badge-nupay-official {
  font-size: 13px;
  font-weight: 700;
  color: #820AD1;
}

.nu-purple {
  font-size: 16px;
  font-weight: 900;
}

.badge-nupay-official small {
  font-size: 11px;
  color: var(--cvc-text-muted);
  font-weight: 500;
}

.pay-boleto-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--cvc-text-main);
}

.pay-method-sub {
  font-size: 11px;
  color: var(--cvc-text-light);
}

.payment-disclaimer {
  font-size: 11px;
  color: #8A92A6;
  margin-top: 10px;
}

/* Botões Oficiais da Apple e Google */
.store-btn-official {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #333333;
  transition: opacity 0.2s, transform 0.2s;
}

.store-btn-official:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.store-text small {
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #D1D5DB;
}

.store-text strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

/* ================= SEÇÃO: COMO FUNCIONA O RESGATE DE PONTOS CVC ================= */
.section-benefits {
  background-color: #F8F9FB;
  padding: 64px 0 72px;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
}

.benefits-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.benefits-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--cvc-blue);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.benefits-desc {
  font-size: 15px;
  color: var(--cvc-text-muted);
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.benefit-card {
  background: #FFFFFF;
  padding: 38px 26px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 11, 123, 0.06);
  border: 1.5px solid #EAEFF5;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 11, 123, 0.12);
  border-color: #D3E0FF;
}

.benefit-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--cvc-yellow);
  color: var(--cvc-blue);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid #FFFFFF;
  z-index: 2;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--cvc-blue);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 13.5px;
  color: var(--cvc-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ================= FAIXA DO APP CVC ================= */
.banner-app-cvc {
  background-color: var(--cvc-yellow);
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-info-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-top-mind {
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--cvc-blue);
}

.app-brand-title {
  display: flex;
  flex-direction: column;
}

.app-brand-title strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--cvc-blue);
  line-height: 1.1;
}

.app-brand-title span {
  font-size: 13px;
  color: #2F3542;
  font-weight: 600;
}

.app-features-col {
  display: flex;
  gap: 20px;
}

.app-feat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cvc-blue);
}

.btn-app-aproveite {
  background-color: var(--cvc-blue);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0, 11, 123, 0.2);
}

.btn-app-aproveite:hover {
  background-color: var(--cvc-blue-hover);
  transform: translateY(-2px);
}

/* ================= RODAPÉ OFICIAL CVC ================= */
.main-footer {
  background-color: #FFFFFF;
  padding: 50px 0 30px;
  border-top: 1px solid #E5E7EB;
  margin-top: auto;
}

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

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--cvc-text-main);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: var(--cvc-text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--cvc-blue);
}

.crc-title {
  font-size: 12.5px;
  color: var(--cvc-text-muted);
}

.crc-phone {
  font-size: 15px;
  color: var(--cvc-blue);
  margin: 4px 0 8px;
}

.crc-hours {
  font-size: 12px;
  color: var(--cvc-text-light);
  line-height: 1.4;
}

.footer-help-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cvc-blue);
  text-decoration: none;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-cvc-logo-img {
  height: 42px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-cvc-logo {
  height: 44px;
  margin-bottom: 8px;
}

.footer-slogan {
  font-size: 12px;
  color: var(--cvc-text-muted);
  font-weight: 600;
}

/* Formas de Pagamento */
.footer-payments-block {
  border-top: 1px solid #F0F0F0;
  padding-top: 24px;
  margin-bottom: 30px;
}

.payments-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.payments-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pay-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pay-sub {
  font-size: 12px;
  color: var(--cvc-text-muted);
  font-weight: 600;
}

.pay-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.badge-flag, .badge-pix, .badge-nupay, .pay-boleto {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  background: #F1F4F9;
  border: 1px solid #D9E1ED;
  color: #333;
}

.badge-pix { background: #E6FBF5; color: #008566; border-color: #B5EEDD; }
.badge-nupay { background: #F6EAFC; color: #820AD1; border-color: #E2BDF7; }

.pay-subnote, .payment-disclaimer {
  font-size: 11px;
  color: var(--cvc-text-light);
  margin-top: 4px;
}

.payment-disclaimer {
  margin-top: 12px;
}

/* Rodapé Final */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F0F0F0;
  padding-top: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.app-downloads {
  display: flex;
  align-items: center;
  gap: 16px;
}

.down-label, .social-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cvc-text-main);
}

.store-buttons {
  display: flex;
  gap: 10px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: #111;
  color: #FFF;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.store-btn:hover {
  opacity: 0.85;
}

.social-links-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F1F4F9;
  color: var(--cvc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.social-circle:hover {
  background: var(--cvc-blue);
  color: #FFF;
}

.footer-legal {
  border-top: 1px solid #F5F5F5;
  padding-top: 16px;
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.5;
  text-align: center;
}

/* ================= BOTÃO FLUTUANTE WHATSAPP ================= */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--cvc-green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatWiggle 4s ease-in-out infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: var(--cvc-green-wa-hover);
}

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

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: #111827;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
}

/* ================= MODAL DE CONFIGURAÇÃO ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-dialog {
  background: #FFFFFF;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalScale 0.25s ease-out;
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  padding: 20px 24px;
  background: var(--cvc-blue);
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 17px;
  font-weight: 800;
}

.btn-close-modal {
  background: none;
  border: none;
  color: #FFF;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-description {
  font-size: 13px;
  color: var(--cvc-text-muted);
  line-height: 1.5;
}

.modal-footer {
  padding: 16px 24px;
  background: #F8F9FA;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #ECECEC;
}

.btn-cancel {
  background: #E2E8F0;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: #475569;
}

.btn-save {
  background: var(--cvc-blue);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  color: #FFFFFF;
}

.btn-save:hover {
  background: var(--cvc-blue-hover);
}

/* ================= MODAL IN-SITE: RESGATAR COM PONTOS ================= */
.modal-resgate-dialog {
  max-width: 490px;
  border-radius: 18px;
  border: 1px solid rgba(0, 11, 123, 0.12);
  box-shadow: 0 20px 50px rgba(0, 11, 123, 0.32);
  overflow: hidden;
}

.modal-header-cvc {
  background: linear-gradient(135deg, #000B7B 0%, #00188F 100%);
  padding: 20px 24px;
  border-bottom: 3.5px solid #FFD600;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-tag-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #000B7B;
  background: #FFD600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  width: fit-content;
}

.modal-header-cvc h3 {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.modal-resgate-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
}

.modal-package-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F4F7FC;
  border: 1px solid #DCE3F1;
  border-radius: 14px;
  padding: 14px 16px;
}

.modal-package-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #000B7B;
  color: #FFD600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-status-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000B7B;
  letter-spacing: 0.4px;
  display: block;
}

.package-highlight-name {
  font-size: 16px;
  font-weight: 800;
  color: #1D1D1B;
  margin-top: 2px;
}

.modal-instruction-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-notice-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}

.modal-fields-notice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px dashed #CBD5E1;
}

.field-item-pill {
  font-size: 12px;
  font-weight: 700;
  color: #000B7B;
  background: #E8EEFA;
  padding: 4px 10px;
  border-radius: 6px;
}

.modal-safe-sub {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.45;
  margin: 0;
}

.modal-points-badge-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EBF8F0;
  border: 1px solid #B8E7C8;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1B7837;
}

.modal-resgate-footer {
  padding: 16px 24px;
  background: #F8F9FA;
  border-top: 1px solid #ECECEC;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-modal-secondary {
  background: #E2E8F0;
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
}

.btn-modal-secondary:hover {
  background: #CBD5E1;
  color: #1E293B;
}

.btn-modal-primary {
  background: linear-gradient(135deg, #FFD600 0%, #FFC400 100%);
  color: #000B7B;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.45);
  transition: all 0.2s ease;
}

.btn-modal-primary:hover {
  background: linear-gradient(135deg, #FFDF20 0%, #ECC400 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 214, 0, 0.55);
}

.btn-modal-primary.btn-wa-action {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.btn-modal-primary.btn-wa-action:hover {
  background: linear-gradient(135deg, #2EE06E 0%, #19A851 100%);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
}

@media (max-width: 576px) {
  .modal-resgate-dialog {
    max-width: 100%;
    margin: 8px;
    border-radius: 16px;
  }
  .modal-header-cvc {
    padding: 16px 18px;
  }
  .modal-resgate-body {
    padding: 18px;
  }
  .modal-resgate-footer {
    padding: 14px 18px;
    flex-direction: column-reverse;
    gap: 10px;
  }
  .btn-modal-secondary,
  .btn-modal-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ================= RESPONSIVIDADE COMPLETA E REFINADA ================= */
@media (max-width: 992px) {
  .nav-products {
    display: none;
  }

  .hero-main-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-banner-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .consultation-card {
    max-width: 680px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-action-group {
    margin-top: 4px;
  }

  .points-metrics-grid {
    grid-template-columns: 1fr;
  }

  .banner-app-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .app-info-col {
    flex-direction: column;
  }

  .app-features-col {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Responsividade do Rodapé para Tablets */
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .app-downloads {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .social-links-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .footer-legal {
    text-align: left;
    padding-bottom: 75px;
  }
}

/* Otimização Estrita para Mobile e Telas Menores (320px a 560px) */
@media (max-width: 600px) {
  .container {
    padding: 0 14px;
  }

  /* Barra Utilitária */
  .top-utility-bar {
    font-size: 11px;
  }

  .utility-content {
    height: 36px;
    justify-content: space-between;
  }

  .utility-left {
    font-size: 11px;
  }

  .utility-right .util-link {
    display: none;
  }

  .btn-config-demo {
    padding: 3px 8px;
    font-size: 10px;
  }

  /* Cabeçalho */
  .header-container {
    height: 60px;
  }

  .cvc-brand-img {
    height: 38px;
    max-width: 110px;
  }

  .btn-my-trips {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }

  .btn-my-trips svg {
    width: 16px;
    height: 16px;
  }

  /* Hero Section */
  .hero-section {
    padding: 24px 0 40px;
  }

  .hero-title-box {
    margin-bottom: 22px;
    padding: 0 4px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .hero-heading {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-subtext {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .hero-benefits-pills {
    gap: 8px;
  }

  .benefit-pill {
    font-size: 12px;
    padding: 6px 12px;
    gap: 8px;
  }

  .pill-icon {
    width: 24px;
    height: 24px;
  }

  .pill-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero-banner-card {
    border-radius: 16px;
  }

  .hero-banner-floating-badge {
    font-size: 11px;
    padding: 5px 12px;
    bottom: 10px;
    left: 10px;
  }

  .consultation-header-intro {
    margin-bottom: 16px;
  }

  .consult-card-title {
    font-size: 18px;
  }

  .consult-card-desc {
    font-size: 12px;
  }

  /* Card de Consulta Encaixado */
  .consultation-card {
    padding: 18px 14px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 11, 123, 0.12);
  }

  /* Abas em Mobile - Scroll suave sem quebra feia */
  .card-tabs {
    gap: 6px;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }

  .tab-btn {
    font-size: 12px;
    padding: 7px 13px;
    gap: 6px;
  }

  .tab-btn svg {
    width: 15px;
    height: 15px;
  }

  /* Formulário */
  .input-label {
    font-size: 12.5px;
  }

  .form-control {
    height: 48px;
    font-size: 14.5px;
    padding: 0 14px;
    border-radius: 10px;
  }

  .helper-text {
    font-size: 11px;
  }

  .btn-consultar {
    height: 50px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* Cartão Fidelidade Digital Mobile */
  .cvc-digital-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .card-brand .brand-text {
    font-size: 22px;
  }

  .card-tier-badge {
    font-size: 9.5px;
    padding: 3px 8px;
    gap: 4px;
  }

  .card-tier-badge svg {
    width: 12px;
    height: 12px;
  }

  .card-chip {
    width: 38px;
    height: 28px;
  }

  .balance-label {
    font-size: 10px;
  }

  .counter-number {
    font-size: 30px;
  }

  .points-label {
    font-size: 12px;
  }

  .card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .holder-name {
    font-size: 13px;
  }

  .card-meta, .card-validity {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .card-meta .meta-label, .card-validity .validity-label {
    margin-bottom: 0;
  }

  /* Resumo Financeiro & CTA */
  .result-title {
    font-size: 18px;
  }

  .metric-box {
    padding: 13px;
  }

  .metric-icon {
    width: 36px;
    height: 36px;
  }

  .metric-val {
    font-size: 16px;
  }

  .redeem-cta-section {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .cta-message h4 {
    font-size: 16px;
  }

  .cta-message p {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  .btn-whatsapp-redeem {
    padding: 13px 16px;
    gap: 12px;
    border-radius: var(--radius-pill);
  }

  .wa-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .btn-top-label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .btn-main-label {
    font-size: 14px;
    line-height: 1.2;
  }

  .chevron-right {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* Seções Inferiores */
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 20px;
  }

  /* Seção Como Funciona o Resgate no Mobile */
  .section-benefits {
    padding: 44px 0 54px;
  }

  .benefits-header {
    text-align: center;
    margin-bottom: 38px;
    padding: 0 8px;
  }

  .benefits-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .benefits-desc {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 8px 4px 0;
  }

  .benefit-card {
    padding: 34px 20px 24px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .benefit-number {
    top: -15px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .benefit-card p {
    font-size: 13px;
    line-height: 1.55;
  }

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

  /* Slide Exclusivo no Mobile */
  .carousel-track-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .exclusive-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }

  .carousel-btn {
    display: none;
  }

  .exclusive-title {
    font-size: 21px;
  }

  /* Formas de Pagamento e Apps Mobile */
  .footer-payments-block-official {
    padding-top: 24px;
    margin-bottom: 24px;
  }

  .payments-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .pay-methods-grid {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .pay-method-item {
    width: 100%;
  }

  .pay-flags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .badge-nupay-official {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    line-height: 1.4;
  }

  .payment-disclaimer {
    font-size: 11px;
    line-height: 1.5;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
  }

  .app-downloads {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .down-label,
  .social-label {
    font-size: 13px;
    font-weight: 700;
    width: 100%;
  }

  .store-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .store-btn-official {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 10px 16px;
  }

  .social-links-box {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .social-circle {
    width: 38px;
    height: 38px;
  }

  .footer-legal {
    text-align: left;
    font-size: 11px;
    line-height: 1.6;
    padding-top: 18px;
    margin-top: 6px;
    padding-bottom: 85px; /* Espaço para o botão flutuante do WhatsApp não cobrir o texto */
    width: 100%;
  }

  .floating-whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

