/* ========================================
   TON MAX - LANDING PAGE
   CSS Principal
   ======================================== */

/* ========== 1. CSS RESET E VARIÁVEIS ========== */
:root {
  /* Cores Principais */
  --primary-green: #00C65E;
  --dark-green: #004D25;
  --secondary-green: #003118;
  --accent-red: #E63946;
  --accent-blue: #1B58B7;
  --whatsapp-green: #25D366;

  /* Cores de Texto */
  --text-dark: #333333;
  --text-gray: #666666;
  --text-light: #FFFFFF;

  /* Cores de Fundo */
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-dark: #1A1A1A;

  /* Tipografia */
  --font-family: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  --spacing-section: 4rem;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50px;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Spacing */
section {
  padding: var(--spacing-xxl) 0;
}

/* ========== 2. TIPOGRAFIA ========== */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.section-title-light {
  color: var(--text-light);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-gray);
  text-align: center;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== 3. BOTÕES ========== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  text-align: center;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #00b055;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-red);
  border: 2px solid var(--accent-red);
}

.btn-secondary:hover {
  background: var(--accent-red);
  color: var(--text-light);
}

.btn-blue {
  background: var(--accent-blue);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-blue:hover {
  background: #154a9a;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* ========== 4. HEADER / NAVEGAÇÃO ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0.75rem 0;
}

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

.logo a {
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  letter-spacing: -1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

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

.nav-menu li a {
  font-weight: var(--font-weight-semibold);
  color: var(--text-dark);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  font-size: 0.9375rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-green);
}

/* Divider */
.header-divider {
  width: 1px;
  height: 50px;
  background: #e5e7eb;
}

/* Header Taxas */
.header-taxas {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.header-taxas-label {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  color: #6b7280;
  text-align: center;
  letter-spacing: 0.5px;
}

.header-taxas-grid {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
}

.header-taxa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.header-taxa-valor {
  font-size: 1.125rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  line-height: 1;
}

.header-taxa-valor.destaque {
  color: var(--primary-green);
}

.header-taxa-tipo {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: var(--font-weight-medium);
}

/* Button Header */
.btn-header {
  background: var(--primary-green);
  color: var(--bg-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 198, 94, 0.3);
}

.btn-header:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 198, 94, 0.4);
}

/* Menu Mobile Toggle (Hidden by default) */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -110%;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  background: #f8f9fa;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

/* Menu ativo - controlado por JavaScript */
.nav-mobile.active {
  right: 0;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

/* Fallback para checkbox (caso JS não carregue) */
.menu-toggle:checked ~ .nav-mobile {
  right: 0;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

/* Overlay quando menu está aberto */
.nav-mobile.active::before,
.menu-toggle:checked ~ .nav-mobile::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

.logo-mobile {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.logo-ton {
  font-size: 1.625rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

.logo-parceiro {
  font-size: 0.6875rem;
  color: #757575;
  line-height: 1.2;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.menu-close {
  cursor: pointer;
  font-size: 1.75rem;
  color: #424242;
  padding: 0.25rem;
  transition: all 0.2s ease;
}

.menu-close:hover {
  color: var(--primary-green);
  transform: rotate(90deg);
}

.nav-menu-mobile {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.625rem;
}

.nav-menu-mobile li {
  border-bottom: none;
}

.nav-menu-mobile li a {
  display: block;
  padding: 1.125rem 1.25rem;
  color: #2c2c2c;
  font-weight: var(--font-weight-semibold);
  background: #e8f5e9;
  transition: all 0.25s ease;
  border-radius: 10px;
  font-size: 1rem;
  position: relative;
}

.nav-menu-mobile li a:hover {
  background: #c8e6c9;
  color: var(--primary-green);
  transform: translateX(-2px);
}

.nav-menu-mobile li a:active {
  background: #a5d6a7;
  transform: scale(0.98);
}

/* Header Taxas Mobile */
.header-taxas-mobile {
  margin: 1rem;
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-taxas-label-mobile {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  color: #00C65E;
  text-align: center;
  margin-bottom: 0.375rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.header-taxas-titulo-mobile {
  font-size: 1.125rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.25rem;
}

.header-taxas-grid-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.header-taxa-row-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-taxa-row-mobile:last-child {
  border-bottom: none;
}

.header-taxa-valor-mobile {
  font-size: 1.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  line-height: 1;
}

.header-taxa-valor-mobile.destaque {
  color: var(--primary-green);
}

.header-taxa-tipo-mobile {
  font-size: 0.9375rem;
  color: #424242;
  font-weight: var(--font-weight-semibold);
}

.btn-mobile-full {
  width: 100%;
  background: var(--primary-green);
  color: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: var(--font-weight-bold);
  font-size: 1.0625rem;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 198, 94, 0.25);
}

.btn-mobile-full:hover {
  background: var(--dark-green);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 198, 94, 0.3);
}

/* ========== 5. HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--secondary-green) 100%);
  color: var(--text-light);
  padding-top: calc(var(--spacing-xxl) + 80px);
  padding-bottom: var(--spacing-xxl);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
}

.badge-promo {
  background: var(--accent-red);
  color: var(--text-light);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  line-height: 1.4;
}

.hero-benefits {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.hero-benefits i {
  color: var(--primary-green);
  font-size: 1.5rem;
  filter: brightness(1.2);
}

.hero-image {
  animation: fadeInRight 1s ease;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Hero Rates Cards */
.hero-rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.rate-card {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
}



.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.rate-card h3 {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.rate-type {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.rate-details {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Nota de taxas promocionais */
.hero-rates-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin-top: 1rem;
  font-style: italic;
}

.hero-rates-disclaimer i {
  color: #666;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* ========== 6. PRODUTOS SECTION ========== */
.produtos {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
}

.product-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9f4 100%);
  border: 3px solid var(--primary-green);
  border-radius: 30px;
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(0, 198, 94, 0.15);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 198, 94, 0.25);
  transform: translateY(-10px);
  border-color: var(--dark-green);
}

/* Card destacado - Mais Vendida */
.product-card-featured {
  border: 4px solid #FFD700 !important;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3) !important;
  position: relative;
}

.product-card-featured:hover {
  border-color: #FFA500 !important;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4) !important;
}

/* Badge "Mais Vendida" */
.badge-bestseller-label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--text-light);
  padding: 0.625rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-extrabold);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  border: 3px solid white;
  z-index: 15;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Badges circulares no topo */
.product-badges {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  z-index: 10;
}

.badge-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 3px solid white;
}

.badge-circle:hover {
  transform: scale(1.1) rotate(5deg);
}

.badge-cpf-cnpj {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  width: 85px !important;
  height: 85px !important;
}

.badge-text-cpf {
  font-size: 0.75rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
  padding: 0 0.25rem;
}

.badge-installments {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.badge-feature {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.badge-number {
  font-size: 1.25rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  line-height: 1;
}

.badge-circle i {
  font-size: 1.625rem;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  line-height: 1;
}

.product-image {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  text-align: center;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-name {
  font-size: 1.75rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  text-align: center;
  line-height: 1.2;
}

/* Seção de preços */
.product-pricing {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.product-price-old {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.product-price-installment {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.product-price-installment .installments {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

.product-price-installment .price-value {
  font-size: 2.75rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  line-height: 1;
  letter-spacing: -1px;
}

.product-price-installment sup {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
}

.product-price-cash {
  font-size: 0.9375rem;
  color: var(--text-gray);
  font-weight: var(--font-weight-semibold);
}

/* Cupom de desconto */
.product-discount {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  text-align: center;
  font-weight: var(--font-weight-extrabold);
  font-size: 0.9375rem;
  border: 2px solid white;
  box-shadow: var(--shadow-md);
  animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Botão do produto */
.btn-product {
  width: 100%;
  padding: 1.125rem 1.5rem;
  font-size: 1rem;
  font-weight: var(--font-weight-extrabold);
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--secondary-green) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(0, 77, 37, 0.4);
  white-space: normal;
  line-height: 1.3;
}

.btn-product:hover {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--dark-green) 100%);
  box-shadow: 0 8px 25px rgba(0, 77, 37, 0.5);
  transform: translateY(-3px);
}

/* Lista de features */
.product-features {
  margin: 0;
  flex-grow: 1;
  border-top: 2px solid rgba(0, 198, 94, 0.2);
  padding-top: var(--spacing-md);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

.product-features i {
  color: var(--primary-green);
  font-size: 1.125rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Badges antigos (manter para compatibilidade) */
.product-badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-light);
  z-index: 10;
}

.badge-bestseller {
  background: var(--primary-green);
}

.badge-launch {
  background: var(--accent-blue);
}

.badge-battery {
  background: #FF8C00;
}

.product-card .btn-secondary {
  width: 100%;
}

/* ========== 7. BANDEIRAS SECTION ========== */
.bandeiras {
  background: var(--bg-light);
}

.bandeiras-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) 0;
}

.bandeiras-grid img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
}

.bandeiras-button-container {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.btn-bandeiras {
  background: transparent;
  color: var(--primary-green);
  padding: 0.875rem 2rem;
  border: 2px solid var(--primary-green);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-bandeiras:hover {
  background: var(--primary-green);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 198, 94, 0.25);
}

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

/* Modal de Bandeiras */
.modal-bandeiras {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-bandeiras.active {
  display: block;
}

.modal-bandeiras-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-bandeiras-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -45%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.modal-bandeiras-header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  border-bottom: 2px solid #f0f0f0;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-bandeiras-title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.modal-bandeiras-title i {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.modal-bandeiras-close {
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.modal-bandeiras-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.modal-bandeiras-body {
  padding: 2rem;
}

.bandeiras-category {
  margin-bottom: 2.5rem;
}

.bandeiras-category:last-of-type {
  margin-bottom: 1.5rem;
}

.bandeiras-category-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.bandeiras-category-title i {
  color: var(--primary-green);
  font-size: 1.125rem;
}

.bandeiras-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.625rem;
}

.bandeiras-list-voucher {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.625rem;
}

.bandeira-item,
.bandeira-item-voucher {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.bandeira-item:hover,
.bandeira-item-voucher:hover {
  background: #f0f0f0;
  border-color: var(--primary-green);
  transform: translateX(2px);
}

.bandeira-item-voucher {
  background: #f0f9f4;
  border-color: #d0e8d8;
}

.bandeira-item-voucher:hover {
  background: #e6f5ec;
}

.bandeira-item.bandeira-voucher {
  font-weight: var(--font-weight-semibold);
}

.bandeira-number {
  color: var(--primary-green);
  font-weight: var(--font-weight-extrabold);
  min-width: 28px;
  flex-shrink: 0;
}

.modal-bandeiras-note {
  text-align: center;
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.bandeira-logo {
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.bandeira-logo:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.bandeira-logo img {
  max-width: 90%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
}

/* ========================================
   MODAL DE TAXAS COMPLETAS
======================================== */

.modal-taxas {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-taxas.active {
  display: block;
}

.modal-taxas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-taxas-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

.modal-taxas-header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  border-bottom: 2px solid #f0f0f0;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-taxas-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-taxas-title i {
  color: var(--primary-green);
  font-size: 1.75rem;
}

.modal-taxas-close {
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.modal-taxas-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.modal-taxas-body {
  padding: 2rem;
}

/* Seções de taxas */
.taxas-section {
  margin-bottom: 2.5rem;
}

.taxas-section-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-green);
}

.taxas-section-title i {
  color: var(--primary-green);
}

/* Tabela de taxas */
.taxas-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.taxas-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.taxas-table thead {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: white;
}

.taxas-table th {
  padding: 1rem;
  text-align: left;
  font-weight: var(--font-weight-semibold);
  font-size: 0.95rem;
}

.taxas-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.taxas-table tbody tr:hover {
  background: #f8f9fa;
}

.taxas-table tbody tr:last-child {
  border-bottom: none;
}

.taxas-table td {
  padding: 1rem;
  font-size: 0.95rem;
}

.taxas-table td i {
  margin-right: 0.5rem;
  color: var(--primary-green);
}

.taxa-row-destaque {
  background: #f0fdf4;
}

.taxa-valor-promo {
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  font-size: 1.1rem;
}

.taxa-valor-regular {
  font-weight: var(--font-weight-semibold);
  color: #6c757d;
  font-size: 1.05rem;
}

/* Tabelas detalhadas com múltiplas colunas */
.taxas-table-wide {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) #f0f0f0;
}

.taxas-table-wide::-webkit-scrollbar {
  height: 8px;
}

.taxas-table-wide::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.taxas-table-wide::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.taxas-table-wide::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

.taxas-table-detailed {
  min-width: 900px;
  font-size: 0.875rem;
}

.taxas-table-detailed th {
  padding: 0.75rem 0.5rem;
  text-align: center;
  white-space: nowrap;
}

.taxas-table-detailed td {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Headers específicos */
.th-modalidade {
  text-align: left !important;
  min-width: 140px;
  position: sticky;
  left: 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  z-index: 2;
}

.th-promocional {
  background: rgba(255, 255, 255, 0.15);
  min-width: 100px;
}

.th-volume-group {
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.th-sub {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: var(--font-weight-normal);
  padding: 0.5rem 0.4rem;
}

/* Células de dados */
.td-modalidade {
  text-align: left !important;
  font-weight: var(--font-weight-semibold);
  position: sticky;
  left: 0;
  background: white;
  z-index: 1;
}

.taxa-row-destaque .td-modalidade {
  background: #f0fdf4;
}

.taxas-table-detailed tbody tr:hover .td-modalidade {
  background: #f8f9fa;
}

.taxas-table-detailed .taxa-valor-promo {
  background: rgba(0, 198, 94, 0.1);
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Notas do modal */
.modal-taxas-notes {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-green);
}

.modal-taxas-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.modal-taxas-note:last-child {
  margin-bottom: 0;
}

.modal-taxas-note i {
  color: var(--primary-green);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.modal-taxas-note strong {
  color: var(--primary-green);
}

/* ========== 8. VANTAGENS SECTION ========== */
.vantagens {
  background: var(--bg-white);
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.vantagem-item {
  text-align: center;
  padding: var(--spacing-md);
}

.vantagem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-green), #00a04f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.vantagem-item:hover .vantagem-icon {
  transform: scale(1.1) rotate(5deg);
}

.vantagem-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.vantagem-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.vantagem-description {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ========== 9. COMPARATIVO SECTION ========== */
.comparativo {
  background: var(--bg-white);
}

.comparativo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.comparativo-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.comparativo-others {
  opacity: 0.8;
}

.comparativo-others:hover {
  opacity: 0.9;
}

.comparativo-ton {
  border: 3px solid var(--primary-green);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.comparativo-ton::before {
  content: "Melhor Escolha";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-md);
}

.comparativo-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.comparativo-content {
  margin-bottom: var(--spacing-md);
}

.comparativo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--bg-light);
}

.comparativo-item:last-child {
  border-bottom: none;
}

.comparativo-label {
  font-weight: var(--font-weight-semibold);
  color: var(--text-gray);
}

.comparativo-value {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

.comparativo-highlight {
  color: var(--primary-green);
}

.comparativo-ton .btn-primary {
  width: 100%;
}

/* ========== TOGGLE SWITCH DE TAXAS ========== */

/* Wrapper do toggle */
.taxas-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Esconder o checkbox real */
.taxas-toggle-input {
  display: none;
}

/* Label do toggle */
.taxas-toggle-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

/* Textos do toggle */
.taxas-toggle-text {
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.taxas-toggle-promo {
  color: var(--primary-green);
}

.taxas-toggle-padrao {
  color: #6c757d;
}

/* Quando checked, inverte as cores */
.taxas-toggle-input:checked ~ .taxas-toggle-wrapper .taxas-toggle-promo {
  color: #6c757d;
}

.taxas-toggle-input:checked ~ .taxas-toggle-wrapper .taxas-toggle-padrao {
  color: var(--primary-green);
}

/* Switch visual */
.taxas-toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #e0e0e0;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.taxas-toggle-switch::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Estado checked do switch */
.taxas-toggle-input:checked ~ .taxas-toggle-wrapper .taxas-toggle-switch {
  background: var(--primary-green);
}

.taxas-toggle-input:checked ~ .taxas-toggle-wrapper .taxas-toggle-switch::before {
  transform: translateX(30px);
}

/* ========== CONTEÚDO DAS TAXAS COM TOGGLE ========== */

.comparativo-values {
  position: relative;
}

/* Garantir que valores das taxas fiquem na mesma linha */
.comparativo-value {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Esconder taxas padrão por padrão */
.taxa-padrao {
  display: none;
}

/* Mostrar taxas promo por padrão */
.taxa-promo {
  display: inline-flex;
}

/* Quando checked, inverter */
.taxas-toggle-input:checked ~ .comparativo-content .taxa-promo {
  display: none;
}

.taxas-toggle-input:checked ~ .comparativo-content .taxa-padrao {
  display: inline-flex;
}

/* Badge de comparação */
.taxa-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-green);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  text-align: center;
  border: 1px solid rgba(0, 198, 94, 0.3);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 198, 94, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.taxa-badge:hover {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: var(--primary-green);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 198, 94, 0.2);
}

/* Ícone do badge */
.taxa-badge::before {
  content: "✓";
  margin-right: 0.25rem;
  font-weight: bold;
}

/* Footer da seção de comparativo */
.comparativo-footer {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.btn-ver-taxas-completas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-ver-taxas-completas:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========== 10. FUNCIONALIDADES SECTION ========== */
.funcionalidades {
  background: var(--bg-white);
  padding: var(--spacing-section) 0;
}

.text-highlight {
  color: var(--primary-green);
}

.funcionalidades-new-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Hero (Grande e Escuro) */
.funcionalidade-hero-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  grid-column: span 2;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.funcionalidade-hero-content {
  flex: 1;
  z-index: 2;
}

.funcionalidade-hero-title {
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--bg-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.funcionalidade-hero-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 480px;
}

.funcionalidade-hero-image {
  flex: 0 0 auto;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.funcionalidade-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(0, 198, 94, 0.4));
}

/* Cards Mini (Grid de 4) */
.funcionalidade-mini-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.funcionalidade-mini-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 198, 94, 0.18);
}

.funcionalidade-mini-icon {
  
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funcionalidade-mini-icon img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.funcionalidade-mini-title {
  font-size: 1.1875rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.funcionalidade-mini-description {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

/* ========== 11. DEPOIMENTOS / CARROSSEL ========== */
.depoimentos {
  background: var(--bg-light);
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: var(--spacing-md) 0;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 var(--spacing-sm);
}

.depoimento-card {
  background: var(--bg-white);
  border: 1px solid var(--bg-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.depoimento-foto {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-green);
}

.depoimento-nome {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.depoimento-cargo {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.depoimento-rating {
  margin-bottom: var(--spacing-md);
}

.depoimento-rating i {
  color: #FFD700;
  margin-right: 0.25rem;
}

.depoimento-texto {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-gray);
  font-style: italic;
}

/* Controles do Carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-green);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  z-index: 10;
}

.carousel-btn:hover {
  background: #00b055;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-btn i {
  font-size: 1.25rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--primary-green);
  transition: var(--transition-fast);
  cursor: pointer;
}

.carousel-dot.active,
.carousel-dot:hover {
  background: var(--primary-green);
  transform: scale(1.2);
}

/* ========== 12. DIFERENCIAIS SECTION ========== */
.diferenciais {
  background: var(--bg-white);
  padding: var(--spacing-section) 0;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diferencial-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.diferencial-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 198, 94, 0.15);
}

.diferencial-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.diferencial-icon i {
  font-size: 1.5rem;
  color: var(--bg-white);
}

.diferencial-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.diferencial-description {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

/* ========== 13. CUPOM / CTA SECTION ========== */
.cupom-section {
  background: linear-gradient(135deg, #00C65E 0%, #00A651 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cupom-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
}

.cupom-card {
  background: linear-gradient(135deg, #FFFEF7 0%, #FFF8E1 100%);
  border-radius: 24px;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cupom-title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-extrabold);
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cupom-title i {
  color: #f59e0b;
  font-size: 2rem;
}

.cupom-subtitle {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.cupom-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cupom-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #2c2c2c;
  font-weight: var(--font-weight-semibold);
}

.cupom-badge i {
  color: var(--primary-green);
  font-size: 1.25rem;
}

.cupom-code-box {
  background: #ffffff;
  border: 2px dashed var(--primary-green);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.cupom-code-label {
  font-size: 0.875rem;
  color: #757575;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.cupom-code {
  font-size: 2.25rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
}

.btn-copiar {
  background: var(--primary-green);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 198, 94, 0.3);
}

.btn-copiar:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 198, 94, 0.4);
}

.btn-copiar:active {
  transform: scale(0.95);
}

.btn-copiar.copiado {
  background: #4caf50;
}

.btn-ver-ofertas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-green);
  padding: 0.875rem 2rem;
  border: 2px solid var(--primary-green);
  border-radius: 12px;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-ver-ofertas:hover {
  background: var(--primary-green);
  color: white;
  transform: translateX(5px);
}

.btn-ver-ofertas i {
  transition: transform 0.3s ease;
}

.btn-ver-ofertas:hover i {
  transform: translateX(5px);
}

/* ========== 14. FAQ SECTION ========== */
.faq {
  background: #f9fafb;
  padding: var(--spacing-section) 0;
}

.faq-wrapper {
  display: flex;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-sidebar {
  flex: 0 0 auto;
  width: 100%;
  max-width: 450px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.faq-main-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-main-subtitle {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.faq-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.faq-item {
  background: var(--bg-white);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-item[open] {
  border-color: var(--primary-green);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-dark);
  transition: all 0.2s ease;
}

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

.faq-question:hover {
  color: var(--primary-green);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.btn-voltar-topo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--bg-white);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.btn-voltar-topo:hover {
  background: #f9fafb;
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-voltar-topo i {
  font-size: 1.125rem;
}

/* ========== 14. SOBRE SECTION ========== */
.sobre {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--secondary-green) 100%);
  color: var(--text-light);
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.sobre-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.sobre-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.sobre-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* ========== 13. FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-green);
  margin-bottom: var(--spacing-md);
}

.footer-social-title {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-fast);
  color: var(--text-light);
}

.footer-social a:hover {
  background: var(--primary-green);
  transform: scale(1.1);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: var(--spacing-xs);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
  color: var(--text-light);
}

.footer-contact i {
  color: var(--primary-green);
}

.footer-security {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-light);
}

.security-badge i {
  color: var(--primary-green);
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--primary-green);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #00b055;
}

/* ========== 14. PÁGINA DE POLÍTICA ========== */
.politica-page {
  background: #f8f9fa;
  padding: calc(var(--spacing-section) + 70px) 0 var(--spacing-section);
  min-height: 100vh;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-gray);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary-green);
}

.politica-hero {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.politica-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.politica-icon i {
  font-size: 2.5rem;
  color: var(--primary-green);
}

.politica-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.politica-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.politica-date {
  font-size: 0.9375rem;
  color: var(--text-gray);
  margin-top: 1rem;
  font-weight: var(--font-weight-normal);
}

/* Cards de Benefícios */
.politica-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.politica-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.politica-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.politica-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00b055 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.politica-card-icon i {
  font-size: 1.75rem;
  color: white;
}

.politica-card-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.politica-card-text {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Seções de Conteúdo */
.politica-section {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.politica-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.politica-section-header i {
  font-size: 1.75rem;
  color: var(--primary-green);
}

.politica-section-header h2 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin: 0;
}

.politica-intro {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.politica-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.politica-highlight {
  font-size: 1.0625rem;
  color: var(--text-dark);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: #f0f9f4;
  border-left: 4px solid var(--primary-green);
  border-radius: 8px;
}

.politica-highlight strong {
  color: var(--primary-green);
}

.politica-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.politica-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.politica-list li i {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Caixas de Informação */
.politica-info-box {
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.politica-info-box h4 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.75rem;
}

.politica-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.politica-info-box li {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.politica-info-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.info-primary {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.info-primary h4 {
  color: #1976d2;
}

.info-primary li {
  color: #1565c0;
}

.info-primary li::before {
  color: #2196f3;
}

.info-warning {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
}

.info-warning li {
  color: #e65100;
}

.info-warning li::before {
  color: #ff9800;
}

/* Contato */
.politica-contact {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.politica-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.politica-contact-col h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.politica-contact-col p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.politica-contact-col p i {
  color: var(--primary-green);
  margin-right: 0.5rem;
  width: 20px;
  display: inline-block;
}

/* Cookie Types Cards */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cookie-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.cookie-type-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cookie-type-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-essencial {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  border-left-color: #4caf50;
}

.cookie-essencial h4 {
  color: #2e7d32;
}

.cookie-desempenho {
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f7fc 100%);
  border-left-color: #2196f3;
}

.cookie-desempenho h4 {
  color: #1565c0;
}

.cookie-funcionalidade {
  background: linear-gradient(135deg, #fff3e0 0%, #fef8f1 100%);
  border-left-color: #ff9800;
}

.cookie-funcionalidade h4 {
  color: #e65100;
}

.cookie-publicidade {
  background: linear-gradient(135deg, #f3e5f5 0%, #faf4fb 100%);
  border-left-color: #9c27b0;
}

.cookie-publicidade h4 {
  color: #6a1b9a;
}

.cookie-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Termos de Serviço */
.termos-intro-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.termos-intro-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.termos-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a651 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  border-radius: 12px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.politica-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.politica-section-header h2 {
  margin: 0;
  font-size: 1.625rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

/* ========== 15. WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
  display: none !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: var(--transition-normal);
  animation: pulse 2s infinite;
  opacity: 0;
}

.whatsapp-float.visible {
  opacity: 1;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-size: 0.875rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.3);
  }
}

/* ========== 15. ANIMAÇÕES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Classe utilitária para animações on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== 17. TON BLACK - SEÇÕES EXCLUSIVAS ========== */

/* Seção Taxas Fixas */
.taxas-fixas-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d1f15 0%, #153d25 50%, #1a5c35 100%);
}

.taxas-fixas-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.taxas-fixas-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00C65E 0%, #4ade80 100%);
  color: #0d1f15;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.taxas-fixas-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.taxas-fixas-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.taxas-fixas-subtitle strong {
  color: #4ade80;
}

.taxas-fixas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.taxa-fixa-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.taxa-fixa-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 198, 94, 0.4);
}

.taxa-fixa-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #00C65E 0%, #4ade80 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taxa-fixa-icon i {
  font-size: 1.5rem;
  color: #0d1f15;
}

.taxa-fixa-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.taxa-fixa-item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.taxas-comparativo-black {
  background: rgba(0, 198, 94, 0.08);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 198, 94, 0.25);
}

.taxas-comparativo-black h3 {
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.taxas-comparativo-black h3 i {
  color: #4ade80;
}

.taxas-comparativo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.taxa-comparativo-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.taxa-valor-grande {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  margin-bottom: 0.25rem;
}

.taxa-tipo {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.taxa-detalhe {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Layout Grid Single para um único produto */
.produtos-grid-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

/* Card do produto Black */
.product-card-black {
  border: 2px solid rgba(0, 198, 94, 0.3);
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}

.product-card-black .badge-bestseller-label {
  background: linear-gradient(135deg, #0d1f15 0%, #1a5c35 100%);
}

.product-discount-black {
  background: linear-gradient(135deg, #0d1f15 0%, #1a5c35 100%) !important;
  color: #4ade80 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Card PIX Destaque */
.pix-destaque-card {
  background: linear-gradient(135deg, #0d1f15 0%, #1a5c35 100%);
  border-radius: 24px;
  padding: 2rem;
  color: #fff;
  height: fit-content;
}

.pix-destaque-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-destaque-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #00C65E 0%, #4ade80 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-destaque-icon i {
  font-size: 2rem;
  color: #0d1f15;
}

.pix-destaque-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4ade80;
  margin: 0;
}

.pix-destaque-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pix-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pix-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 198, 94, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-feature-icon i {
  font-size: 1.25rem;
  color: #4ade80;
}

.pix-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pix-feature-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.pix-destaque-footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pix-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-badge i {
  color: #4ade80;
}

/* CTA Black Section */
.cta-black-section .cupom-card {
  background: linear-gradient(135deg, #0d1f15 0%, #153d25 50%, #1a5c35 100%);
  border: 1px solid rgba(0, 198, 94, 0.25);
}

.cta-black-section .cupom-title {
  color: #4ade80;
}

.cta-black-section .cupom-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cta-black-section .cupom-badge {
  background: rgba(0, 198, 94, 0.15);
  color: #fff;
}

.cta-black-section .cupom-badge i {
  color: #4ade80;
}

.cta-black-taxas {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-black-taxa {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
}

.cta-taxa-valor {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #4ade80;
}

.cta-taxa-tipo {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-black-section .btn-ver-ofertas {
  background: linear-gradient(135deg, #00C65E 0%, #4ade80 100%);
  color: #0d1f15;
}

.cta-black-section .btn-ver-ofertas:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 198, 94, 0.4);
}
