/**
 * Curso Certificação PMP - Estilos Principais
 * Arquivo consolidado de CSS para melhor organização e performance
 */

/* ========================================
   VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ======================================== */

:root {
  --primary: #1a1a2e;
  --secondary: #BF53FD;
  --accent: #FFD700;
  --success: #10b981;
  --danger: #ef4444;
}

* { box-sizing: border-box; }

body { 
  font-family: 'Plus Jakarta Sans', 'Mulish', 'Inter', sans-serif; 
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-premium { 
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

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

.hero-title { 
  font-size: clamp(32px, 5vw, 56px); 
  font-weight: 800; 
  color: #fff; 
  line-height: 1.2; 
}

.hero-subtitle { 
  font-size: clamp(18px, 2.5vw, 24px); 
  color: rgba(255,255,255,0.95); 
}

.atp-badge-hero { 
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.atp-badge-hero img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .atp-badge-hero img {
    max-width: 300px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */

.social-bar {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 10px 0;
  z-index: 1020;
  transform: translateY(-100%);
  transition: transform 0.3s;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.social-bar.visible { transform: translateY(0); }

@media (max-width: 768px) {
  .social-bar { top: 60px; font-size: 14px; padding: 8px 0; }
}

.social-message { display: none; }
.social-message.active { display: inline-block; animation: fadeInOut 5s; }

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  10%, 90% { opacity: 1; }
}

/* ========================================
   CARDS APRIMORADOS
   ======================================== */

.pilar-card-enhanced {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
}

.pilar-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}

.pilar-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  transition: all 0.4s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pilar-card-enhanced:hover .pilar-icon-large {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.pilar-card-enhanced h3 {
  font-size: 20px;
  color: #1a1a2e;
}

.pilar-card-enhanced ul li {
  font-size: 14px;
  line-height: 1.8;
}

/* ========================================
   JOURNEY CARDS - GLASSMORPHISM
   ======================================== */

.journey-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.journey-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(191, 83, 253, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(191, 83, 253, 0.6);
}

.journey-card-featured {
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(16, 185, 129, 0.6);
  position: relative;
  overflow: hidden;
}

.journey-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669, #10b981);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

.journey-card-featured:hover {
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
              0 0 0 2px rgba(16, 185, 129, 0.8),
              0 0 40px rgba(16, 185, 129, 0.3);
}

.journey-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), #9333EA);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(191,83,253,0.6), 0 0 40px rgba(191,83,253,0.3);
  transition: all 0.4s;
}

.journey-card:hover .journey-number {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(191,83,253,0.8), 0 0 60px rgba(191,83,253,0.5);
}

.journey-number-featured {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 24px rgba(16,185,129,0.6), 0 0 40px rgba(16,185,129,0.3);
}

.journey-card-featured:hover .journey-number {
  box-shadow: 0 12px 32px rgba(16,185,129,0.8), 0 0 60px rgba(16,185,129,0.5);
}

.journey-card h3 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.journey-card p {
  color: rgba(255, 255, 255, 0.9);
}

.journey-card strong {
  color: #ffffff;
  font-weight: 700;
}

.journey-card .badge {
  font-weight: 700;
  text-shadow: none;
}

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

.journey-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.journey-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(191, 83, 253, 0.8);
}

.journey-card-featured .journey-list li::before {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

/* Hover effects for journey CTAs */
.journey-section .btn:hover {
  transform: translateY(-2px);
}

.journey-section .btn:first-child:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.journey-section .btn:last-child:hover {
  box-shadow: 0 12px 32px rgba(191,83,253,0.6), 0 0 40px rgba(191,83,253,0.3);
}

/* ========================================
   TURMA CARDS - DARK STYLE
   ======================================== */

.turma-card-dark {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.turma-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #10b981);
  opacity: 0;
  transition: opacity 0.3s;
}

.turma-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.25), 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.turma-card-dark:hover::before {
  opacity: 1;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse-highlight {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(102,126,234,0); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(102,126,234,0.3); }
}

.chat-feedback-toast {
  position: fixed;
  bottom: 120px;
  right: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
  font-weight: 600;
  font-size: 15px;
  z-index: 9999;
  animation: slideInRight 0.4s ease-out, slideOutRight 0.4s ease-in 2.6s;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.pulse-badge {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.progress-circle {
  position: relative;
}

/* ========================================
   TABS SMARTPMP
   ======================================== */

.tabs-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.tab-btn:hover {
  color: rgba(255,255,255,0.95);
}

.tab-btn.active {
  color: #ffffff;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffffff;
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s; }

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

/* ========================================
   OFFER SECTION STYLES
   ======================================== */

.offer-card-main {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 2px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.offer-card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(59,130,246,0.3);
}

.offer-badge-premium {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(251,191,36,0.4);
  z-index: 1;
}

.offer-feature-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.offer-feature-item:hover {
  background: #f9fafb;
}

.offer-feature-item i {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-cta-box {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
}

.offer-cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

.offer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.5);
  color: white;
}

.offer-card-addon {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.4s;
  cursor: pointer;
}

.offer-card-addon:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(59,130,246,0.15);
  transform: translateY(-4px);
}

.offer-card-addon.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(147,51,234,0.05) 100%);
  box-shadow: 0 12px 40px rgba(59,130,246,0.2), 0 0 0 1px var(--primary);
}

.offer-addon-icon {
  font-size: 48px;
  line-height: 1;
}

.offer-addon-list {
  margin-top: 16px;
}

.offer-addon-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.offer-addon-list li:last-child {
  border-bottom: none;
}

.addon-checkbox {
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.addon-checkbox:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 991px) {
  .offer-card-main {
    padding: 24px;
  }
  .offer-badge-premium {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
}

/* ========================================
   CALCULATOR SECTION
   ======================================== */

.calculator-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 2px solid #e5e7eb;
  transition: all 0.4s;
}

.calculator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border-color: rgba(59,130,246,0.2);
}

.calculator-input-section {
  padding: 0;
}

.calculator-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.calculator-input::placeholder {
  color: #9ca3af;
}

/* Slider customizado */
.calculator-slider {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
  border-radius: 10px;
  outline: none;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 4px rgba(59,130,246,0.2);
  transition: all 0.3s;
}

.calculator-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.3), 0 0 0 6px rgba(59,130,246,0.3);
  transform: scale(1.1);
}

.calculator-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 4px rgba(59,130,246,0.2);
  border: none;
  transition: all 0.3s;
}

.calculator-slider-value {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 800;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}

/* Result box (glassmorphism premium) */
.calculator-result-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(102,126,234,0.4);
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calculator-result-box.show {
  opacity: 1;
  transform: scale(1);
}

.calculator-result-highlight {
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.calculator-result-highlight .display-5 {
  font-size: 2rem !important;
}

.calculator-comparison {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.calculator-comparison .h5 {
  font-size: 1.15rem !important;
}

.calculator-badge-percentage {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}

/* Placeholder */
.calculator-placeholder {
  background: #f9fafb;
  border-radius: 20px;
  border: 2px dashed #d1d5db;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA dentro da calculadora */
.calculator-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
  transition: all 0.3s;
}

.calculator-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.5);
  color: white;
}

/* ========================================
   DOMAIN CARDS
   ======================================== */

.domain-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e5e7eb;
  overflow: hidden;
  position: relative;
}

.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.domain-card:hover {
  box-shadow: 0 12px 48px rgba(59,130,246,0.15), 0 0 0 1px rgba(59,130,246,0.1);
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.2);
}

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

.domain-header {
  padding: 28px;
  cursor: pointer;
  transition: all 0.3s;
}

.domain-header:hover {
  background: #f9fafb;
}

.domain-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.domain-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
}

.domain-badge {
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.domain-subtitle {
  color: #6b7280;
  font-size: 15px;
}

.domain-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6b7280;
  transition: all 0.3s;
  flex-shrink: 0;
}

.domain-toggle:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(90deg);
}

.domain-toggle.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.smart-tag {
  background: linear-gradient(135deg, rgba(191,83,253,0.1), rgba(147,51,234,0.1));
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  border-left: 3px solid var(--secondary);
  color: #374151;
}

.smart-tag i {
  color: var(--secondary);
}

.domain-content {
  padding: 0 28px 28px;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topic-item {
  padding: 10px;
  font-size: 14px;
  color: #374151;
  transition: all 0.2s;
  border-radius: 8px;
}

.topic-item:hover {
  background: #f9fafb;
  padding-left: 14px;
}

.differential-box {
  padding: 20px;
  border-radius: 12px;
  margin-top: 16px;
}

.domain-stat {
  display: inline-block;
  background: #f3f4f6;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.total-bar {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid #e5e7eb;
}

.total-item {
  padding: 16px;
}

.total-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.total-label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.cta-programa:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(59,130,246,0.5) !important;
}

.footer-badge {
  padding: 16px;
  transition: all 0.3s;
}

.footer-badge:hover {
  transform: translateY(-4px);
}

.mini-testimonial {
  /* Styles for mini testimonials if needed */
}

/* Material Oficial PMI Cards */
.material-pmi-card {
  border-radius: 20px;
  border: 2px solid;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.material-pmi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.material-pmi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.material-pmi-card:hover::before {
  opacity: 1;
}

.material-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.material-pmi-card:hover .material-icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* ========================================
   PRICING CARDS
   ======================================== */

.pricing-card {
  background: white;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: rgba(59,130,246,0.3);
}

/* Featured Card */
.pricing-card-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid #8b5cf6;
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(102,126,234,0.3);
}

.pricing-card-featured:hover {
  transform: scale(1.07) translateY(-8px);
  box-shadow: 0 24px 64px rgba(102,126,234,0.4);
}

.pricing-card-featured * {
  color: white !important;
}

/* ROI Timeline */
.roi-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.roi-step:hover .roi-icon {
  transform: scale(1.1);
}

/* Badges */
.featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(251,191,36,0.4);
  animation: float 3s ease-in-out infinite;
}

.security-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}

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

/* Card Header */
.pricing-card-header {
  margin-bottom: 24px;
}

.package-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.pricing-card-featured .package-name {
  color: white;
}

.package-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

.pricing-card-featured .package-subtitle {
  color: rgba(255,255,255,0.9);
}

/* Pricing */
.pricing-card-price {
  text-align: center;
  padding: 24px 0;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 24px;
}

.pricing-card-featured .pricing-card-price {
  border-color: rgba(255,255,255,0.3);
}

.price-original {
  font-size: 1.1rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card-featured .price-value {
  color: white;
}

.price-save {
  display: inline-block;
  background: #dcfce7;
  color: #065f46;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-featured .price-save {
  background: rgba(255,255,255,0.25);
  color: white;
}

.price-installment {
  font-size: 0.95rem;
  color: #6b7280;
}

.pricing-card-featured .price-installment {
  color: rgba(255,255,255,0.9);
}

/* Features List */
.pricing-card-features {
  flex-grow: 1;
  margin-bottom: 24px;
}

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

.features-list li {
  padding: 10px 0;
  color: #374151;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card-featured .features-list li {
  color: rgba(255,255,255,0.95);
}

.features-list i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-featured .features-list i {
  color: #fbbf24;
}

/* CTA Buttons */
.pricing-card-cta {
  margin-top: auto;
}

.btn-pricing {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pricing-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

.btn-pricing-secondary {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-pricing-secondary:hover {
  background: #f3f4f6;
}

.btn-pricing-featured {
  background: white;
  color: #764ba2;
  box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.btn-pricing-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.5);
}

.btn-pricing-secondary-featured {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-pricing-secondary-featured:hover {
  background: rgba(255,255,255,0.15);
}

/* Guarantee Boxes */
.guarantee-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}

.guarantee-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

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

.guarantee-list li {
  padding: 8px 0;
  color: #374151;
  font-size: 0.95rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badge {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #374151;
  font-weight: 500;
}

.corporate-box {
  background: white;
  padding: 16px;
  border-radius: 12px;
  border: 2px dashed #3b82f6;
}

/* FAQ Quick */
.pricing-faq {
  background: #f9fafb;
  padding: 40px 32px;
  border-radius: 20px;
}

.pricing-faq h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.faq-quick-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.faq-quick-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-quick-item strong {
  color: #1f2937;
  font-size: 1.05rem;
}

/* ========================================
   SCREENSHOTS SMARTPMP
   ======================================== */

.screenshot-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  text-align: center;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.screenshot-card img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.screenshot-showcase .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3) !important;
}

/* ========================================
   INSTRUCTORS
   ======================================== */

.instructor-card {
  display: flex !important;
  flex-direction: column !important;
}

.instructor-card p {
  flex-grow: 1;
}

.instructor-card .mt-auto {
  margin-top: auto !important;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #10b981);
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-color: rgba(102,126,234,0.3);
}

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

.testimonial-rating {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #e5e7eb;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 20px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.testimonial-name {
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: #6b7280;
}

.testimonial-linkedin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0077b5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.testimonial-linkedin:hover {
  background: #005885;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,119,181,0.3);
}

.testimonial-linkedin i {
  font-size: 18px;
}

.testimonial-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* ========================================
   APPROVED CARDS
   ======================================== */

.approved-card-simple {
  background: white;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.approved-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: rgba(102,126,234,0.3);
}

.approved-icon {
  font-size: 32px;
  color: #fbbf24;
  margin-bottom: 12px;
}

.approved-name-full {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approved-title {
  font-size: 14px;
  font-weight: 700;
  color: #667eea;
  letter-spacing: 0.5px;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  color: #374151;
  transition: all 0.3s;
}

.company-name:hover {
  color: #667eea;
  transform: scale(1.05);
}

/* ========================================
   FAQ SEARCH
   ======================================== */

.faq-search {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  background: white url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%236b7280" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>') no-repeat 16px center;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-final-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3) !important;
}

.cta-final-secondary:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.8) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

/* ========================================
   MODALS
   ======================================== */

.exit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.exit-modal.show { display: flex; animation: fadeIn 0.3s; }

.exit-modal-content {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  position: relative;
  animation: slideUp 0.3s;
}

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

.exit-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #9ca3af;
}

/* ========================================
   STICKY/FIXED ELEMENTS
   ======================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 12px;
  z-index: 1030;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.visible { transform: translateY(0); }

@media (min-width: 768px) { .sticky-cta { display: none; } }

.fomo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--danger), #dc2626);
  color: white;
  padding: 16px;
  z-index: 1029;
  transform: translateY(100%);
  transition: transform 0.3s;
  text-align: center;
}

.fomo-banner.visible { transform: translateY(0); }

/* ========================================
   UTILITIES
   ======================================== */

.btn-premium {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--secondary), #9333ea);
  color: white;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191,83,253,0.4);
  color: white;
}

.btn-secondary-custom {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-secondary-custom:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

/* Video Thumbnail */
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.video-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.video-thumb:hover::before {
  background: rgba(0,0,0,0.5);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  transition: all 0.3s;
}

.video-thumb:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================
   COUNTDOWN & BADGES
   ======================================== */

.countdown-inline {
  display: inline;
  white-space: nowrap;
}

.badge-blink {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: #1a1a2e;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 0;
}

.footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-widget p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-widget ul li a:hover {
  color: var(--secondary);
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info strong {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-links a {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ========================================
   RESPONSIVIDADE COMPLETA - MOBILE FIRST
   ======================================== */

/* Tablets e telas médias (até 991px) */
@media (max-width: 991px) {
  /* Hero */
  .hero-premium {
    padding: 80px 0 60px !important;
  }
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  /* Cards de pilares */
  .pilar-card-enhanced {
    padding: 24px !important;
  }
  .pilar-icon-large {
    width: 60px !important;
    height: 60px !important;
    font-size: 28px !important;
  }
  
  /* Journey cards */
  .journey-card {
    padding: 24px !important;
  }
  .journey-number {
    font-size: 32px !important;
    min-width: 50px !important;
    height: 50px !important;
  }
  
  /* SmartPMP screenshots */
  .screenshot-card {
    padding: 8px !important;
  }
  
  /* Offer cards */
  .offer-card-addon {
    padding: 20px !important;
  }
  .offer-addon-icon {
    font-size: 36px !important;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 24px !important;
  }
  
  /* Approved cards */
  .approved-card-simple {
    min-height: 130px !important;
  }
  
  /* Turmas cards */
  .turma-card-dark .card-body {
    padding: 20px !important;
  }
  
  /* Toast position */
  .chat-feedback-toast {
    right: 16px !important;
    bottom: 100px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  
  /* Calculator */
  .calculator-card {
    padding: 32px 24px;
  }
  .calculator-result-box,
  .calculator-placeholder {
    height: 350px;
  }
  .calculator-result-highlight .display-5 {
    font-size: 1.75rem !important;
  }
  .calculator-comparison .h5 {
    font-size: 1rem !important;
  }
  
  /* Pricing */
  .pricing-card-featured {
    transform: scale(1);
    order: -1;
  }
  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
  .package-name {
    font-size: 1.5rem;
  }
  .price-value {
    font-size: 2.5rem;
  }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
  /* Hero */
  .hero-premium {
    padding: 60px 0 40px !important;
  }
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  
  /* Section titles */
  .section-title {
    font-size: 1.75rem !important;
  }
  
  /* Cards - force full width */
  .pilar-card-enhanced,
  .journey-card,
  .offer-card-addon,
  .testimonial-card {
    margin-bottom: 20px;
  }
  
  /* Flex direction */
  .pilar-card-enhanced .d-flex,
  .journey-card .d-flex {
    flex-direction: column !important;
    text-align: center;
  }
  .pilar-icon-large {
    margin: 0 auto 16px !important;
  }
  .journey-number {
    margin: 0 auto 16px !important;
  }
  
  /* Títulos longos - word break */
  .pilar-card-enhanced h3,
  .journey-card h3 {
    font-size: 18px !important;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Badges */
  .badge {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }
  
  /* Buttons */
  .btn-lg {
    font-size: 16px !important;
    padding: 12px 24px !important;
  }
  
  /* Calculator */
  .calculator-result-box,
  .calculator-placeholder {
    height: 300px !important;
  }
  .calculator-result-highlight .display-5 {
    font-size: 1.5rem !important;
  }
  
  /* Testimonial avatar */
  .testimonial-avatar {
    width: 48px !important;
    height: 48px !important;
    font-size: 16px !important;
  }
  
  /* Approved cards - smaller */
  .approved-card-simple {
    padding: 16px 12px !important;
    min-height: 120px !important;
  }
  .approved-icon {
    font-size: 24px !important;
  }
  .approved-name-full {
    font-size: 13px !important;
    min-height: 36px !important;
  }
  
  /* Company names */
  .company-name {
    font-size: 18px !important;
  }
  
  /* Turmas countdown */
  .countdown-inline {
    font-size: 12px !important;
  }
  
  /* Modal */
  .modal-dialog {
    margin: 16px !important;
  }
  .modal-content {
    padding: 0 !important;
  }
  
  /* CTA Final */
  .cta-final-primary,
  .cta-final-secondary {
    font-size: 16px !important;
    padding: 14px 28px !important;
  }
  
  /* Toast mobile */
  .chat-feedback-toast {
    right: 12px !important;
    left: 12px !important;
    bottom: 80px !important;
    font-size: 13px !important;
    text-align: center;
    justify-content: center !important;
  }
  
  /* Domain cards */
  .domain-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .domain-title {
    font-size: 18px;
  }
  .domain-header,
  .domain-content {
    padding: 20px;
  }
  .total-number {
    font-size: 28px;
  }
  
  /* Pricing */
  .roi-icon {
    width: 60px;
    height: 60px;
  }
  .pricing-card {
    padding: 24px;
  }
  .price-value {
    font-size: 2.25rem;
  }
  .package-name {
    font-size: 1.35rem;
  }
  .btn-pricing {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
}

/* Mobile pequeno (até 576px) */
@media (max-width: 576px) {
  /* Hero ainda menor */
  .hero-title {
    font-size: 1.75rem !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  /* Padding sections */
  section.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  /* Container padding */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Cards ainda mais compactos */
  .pilar-card-enhanced,
  .journey-card,
  .offer-card-addon,
  .testimonial-card,
  .turma-card-dark {
    padding: 16px !important;
  }
  
  /* Ícones menores */
  .pilar-icon-large {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }
  
  /* Títulos mais curtos */
  h3, h4 {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }
  
  /* Lists mais compactas */
  ul li {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  
  /* Calculator full mobile */
  .calculator-card .row {
    margin: 0 !important;
  }
  .calculator-input,
  .calculator-slider {
    font-size: 16px !important;
  }
  
  /* Approved grid - 1 coluna em vez de 2 */
  .approved-card-simple {
    min-height: 100px !important;
  }
  
  /* FAQ search */
  .faq-search {
    font-size: 16px !important;
    padding: 12px 16px !important;
  }
  
  /* Sticky CTA bar */
  #stickyCTA {
    padding: 12px 16px !important;
  }
  #stickyCTA .btn {
    font-size: 14px !important;
    padding: 10px 16px !important;
  }
  
  /* Garantias cards */
  .offer-card-main {
    padding: 20px 16px !important;
  }
  .offer-card-main h3 {
    font-size: 22px !important;
  }
}

/* Landscape mobile fix */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-premium {
    min-height: auto !important;
    padding: 40px 0 !important;
  }
  .modal-dialog {
    margin: 8px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden !important;
}

/* Word break para textos longos */
.pilar-card-enhanced p,
.journey-card p,
.offer-card-addon p,
.testimonial-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Fix para badges que estouram */
.badge,
.alert {
  max-width: 100%;
  white-space: normal !important;
  text-align: center;
}

/* Pricing table responsive */
.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

