/* ==========================================================================
   EADon - Teste Vocacional Premium Style Sheet (Howard Gardner Paradigm)
   ========================================================================== */

/* Keyframe Animations */
@keyframes vt-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes vt-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(243, 118, 16, 0.25), 0 0 40px rgba(243, 118, 16, 0.1); }
  50% { box-shadow: 0 0 35px rgba(243, 118, 16, 0.5), 0 0 60px rgba(243, 118, 16, 0.18); }
}

@keyframes vt-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vt-slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Teaser Section Enhancements */
.vocational-icon-glow {
  animation: vt-float 6s ease-in-out infinite;
}

/* Teaser Section Classes for Perfect Mobile Responsiveness */
.vt-teaser-section {
  background: #FFFFFF !important;
  padding: 180px 24px !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.vt-teaser-inner {
  max-width: 1140px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 48px !important;
  position: relative !important;
  z-index: 2 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.vt-teaser-left {
  flex: 1 !important;
  max-width: 45% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.vt-teaser-right {
  flex: 1 !important;
  max-width: 52% !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.vt-teaser-img {
  width: 100% !important;
  height: auto !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 30px rgba(0, 5, 15, 0.08) !important;
  display: block !important;
}

.vt-teaser-title {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 40px !important;
  font-weight: 600 !important;
  color: #00050F !important;
  line-height: 1.25 !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: -1.2px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.vt-teaser-desc {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #3D3D3D !important;
  line-height: 1.6 !important;
  margin: 0 0 32px 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.vt-teaser-btn-wrapper {
  display: inline-block !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  width: auto !important;
}

#btn-iniciar-teste-vocacional {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  background-image: linear-gradient(180deg, #F37610 0%, #FF9901 100%) !important;
  border: none !important;
  padding: 20px 56px !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 30px rgba(243, 118, 16, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  animation: vt-pulse-glow 3s infinite;
}

#btn-iniciar-teste-vocacional:hover {
  transform: translateY(-3px) scale(1.02) !important;
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(243, 118, 16, 0.4) !important;
}

/* Responsive Mobile Rules to Prevent Viewport Stretch and Gaps */
@media (max-width: 991px) {
  .vt-teaser-section {
    padding: 120px 16px !important;
  }
  
  .vt-teaser-inner {
    flex-direction: column !important;
    gap: 32px !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .vt-teaser-left,
  .vt-teaser-right {
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .vt-teaser-left {
    max-width: 420px !important;
  }
  
  .vt-teaser-title {
    font-size: 30px !important;
    letter-spacing: -0.5px !important;
    margin: 0 auto 16px auto !important;
    text-align: center !important;
  }

  .vt-teaser-desc {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 0 auto 30px auto !important;
    text-align: center !important;
  }

  .vt-teaser-btn-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  #btn-iniciar-teste-vocacional {
    font-size: 16px !important;
    padding: 16px 24px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  
  .vt-info-details {
    margin-top: 30px !important;
    width: 100% !important;
  }
}

.vocational-features-grid .feat-card:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(243, 118, 16, 0.3) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Modal Core Styles */
.vt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 10, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 16px;
  overflow-y: auto;
}

.vt-modal-overlay.active {
  opacity: 1;
}

.vt-modal-container {
  background: linear-gradient(135deg, rgba(16, 32, 56, 0.96) 0%, rgba(6, 15, 30, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 40px rgba(243, 118, 16, 0.06);
  border-radius: 24px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  position: relative;
}

/* Expanded Modal width on results step */
.vt-modal-container.vt-modal-expanded {
  max-width: 780px !important;
}

.vt-modal-overlay.active .vt-modal-container {
  transform: translateY(0);
  opacity: 1;
}

/* Modal Header Layout */
.vt-modal-header {
  padding: 24px 28px 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vt-modal-header h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

.vt-modal-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #97A0B6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.vt-modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  transform: rotate(90deg);
}

.vt-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

/* Steps and Progress bar */
.vt-progress-wrapper {
  margin-bottom: 24px;
}

.vt-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.vt-progress-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: #97A0B6;
}

.vt-progress-bar-bg {
  background: rgba(255, 255, 255, 0.06);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.vt-progress-bar-fill {
  background: linear-gradient(90deg, #F37610, #FF9901);
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(243, 118, 16, 0.3);
}

/* Question Title and Instruction */
.vt-question-container {
  animation: vt-fade-in 0.35s ease;
}

.vt-question-instruction {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: #97A0B6;
  text-align: center;
  margin: 0 0 12px 0;
}

.vt-question-title-objective {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 28px 0;
  padding: 0 8px;
  font-style: italic;
}

/* 1-4 Agreement Scale Buttons */
.vt-scale-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.vt-scale-btn {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  width: 100%;
  outline: none;
}

.vt-scale-btn:hover {
  border-color: rgba(243, 118, 16, 0.4);
  background: rgba(243, 118, 16, 0.03);
  transform: translateY(-2px);
}

.vt-scale-btn.selected {
  border-color: #F37610;
  background: rgba(243, 118, 16, 0.08);
  box-shadow: 0 4px 20px rgba(243, 118, 16, 0.15);
}

.vt-scale-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-right: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Agreement scale numbers colored representation */
.vt-scale-num-1 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #97A0B6;
}

.vt-scale-num-2 {
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: #EAB308;
}

.vt-scale-num-3 {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #3B82F6;
}

.vt-scale-num-4 {
  background: rgba(0, 191, 96, 0.08);
  border: 1px solid rgba(0, 191, 96, 0.25);
  color: #00BF60;
}

/* Active solid fills when selected */
.vt-scale-btn.selected .vt-scale-number {
  color: #FFFFFF !important;
  border-color: transparent !important;
}

.vt-scale-btn.selected .vt-scale-num-1 { background-color: #EF4444; }
.vt-scale-btn.selected .vt-scale-num-2 { background-color: #EAB308; }
.vt-scale-btn.selected .vt-scale-num-3 { background-color: #3B82F6; }
.vt-scale-btn.selected .vt-scale-num-4 { background-color: #00BF60; }

.vt-scale-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #E2E8F0;
  line-height: 1.4;
}

.vt-scale-btn.selected .vt-scale-text {
  color: #FFFFFF;
  font-weight: 600;
}

/* Form Inputs for Lead Capture */
.vt-lead-header-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.vt-form-row {
  display: flex;
  gap: 16px;
}

.vt-flex-1 { flex: 1; }
.vt-flex-2 { flex: 2; }

.vt-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.vt-form-group label {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #B7C3D3;
  margin-bottom: 8px;
}

.vt-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.vt-input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(243, 118, 16, 0.5);
  box-shadow: 0 0 15px rgba(243, 118, 16, 0.15);
}

/* Footer Navigation Buttons */
.vt-modal-footer {
  padding: 20px 28px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 12px;
}

.vt-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vt-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
}

.vt-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.vt-btn-primary {
  background: linear-gradient(180deg, #00BF60 0%, #39D889 100%);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 191, 96, 0.2);
}

.vt-btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(0, 191, 96, 0.35);
}

.vt-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none !important;
  filter: none !important;
}

/* Loading State */
.vt-loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  animation: vt-slide-up 0.4s ease;
}

.vt-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(243, 118, 16, 0.1);
  border-left-color: #F37610;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(243, 118, 16, 0.1);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.vt-loader-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.vt-loader-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: #97A0B6;
  max-width: 320px;
  line-height: 1.5;
}

/* PREMIUM RESULTS STYLING */
.vt-result-premium-container {
  animation: vt-fade-in 0.5s ease;
  display: flex;
  flex-direction: column;
}

/* Top Header Banner matching Educa+ Brasil */
.vt-result-top-banner-premium {
  background: linear-gradient(135deg, #F37610 0%, #FF9901 100%);
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(243, 118, 16, 0.25);
}

.vt-result-top-banner-premium h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.vt-result-top-banner-premium p {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Premium Visual Bar Chart Column Graph */
.vt-chart-block {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 24px;
}

.vt-chart-block h5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #97A0B6;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.vt-chart-container {
  height: 200px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding-top: 24px;
  box-sizing: border-box;
}

.vt-chart-bars-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  gap: 4px;
}

.vt-chart-bar-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
  max-width: 76px;
}

.vt-chart-bar-pct-bubble {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #97A0B6;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.vt-chart-bar-wrapper.is-top-intelligence .vt-chart-bar-pct-bubble {
  color: #FF9901;
  font-size: 12px;
}

.vt-chart-bar-outer {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  width: 70%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.vt-chart-bar-inner {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-radius: 4px;
  height: 0;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vt-chart-bar-wrapper.is-top-intelligence .vt-chart-bar-inner {
  background: linear-gradient(180deg, #FF9901 0%, #F37610 100%);
  box-shadow: 0 0 15px rgba(243, 118, 16, 0.4);
}

.vt-chart-bar-icon-small {
  font-size: 15px;
  margin-top: 6px;
}

.vt-chart-bar-label-small {
  font-family: 'Work Sans', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 600;
  color: #97A0B6;
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.vt-chart-bar-wrapper.is-top-intelligence .vt-chart-bar-label-small {
  color: #FFFFFF;
  font-weight: 700;
}

/* Predominant Score Highlight Card */
.vt-predominant-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  text-align: left;
}

.vt-predominant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F37610, #FF9901);
  border-radius: 20px 20px 0 0;
}

.vt-predominant-badge {
  display: inline-block;
  background: rgba(243, 118, 16, 0.15);
  border: 1px solid rgba(243, 118, 16, 0.25);
  color: #FF9901;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.vt-predominant-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.vt-predominant-icon-big {
  font-size: 40px;
  line-height: 1;
}

.vt-predominant-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.vt-predominant-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 13.5px;
  color: #97A0B6;
  margin: 4px 0 0 0;
}

.vt-predominant-subtitle strong {
  color: #FF9901;
}

.vt-predominant-desc-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 14.5px;
  color: #B7C3D3;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* Recommended course labels */
.vt-courses-box-top {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.vt-courses-box-top h6 {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px 0;
}

.vt-courses-box {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
}

.vt-courses-box h6 {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.vt-courses-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vt-course-tag-top {
  background: rgba(243, 118, 16, 0.08);
  border: 1px solid rgba(243, 118, 16, 0.18);
  color: #FF9901;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.vt-course-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
}

/* WhatsApp Premium Engagement Card */
.vt-whatsapp-engagement-box {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(18, 140, 126, 0.02) 100%);
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: 14px;
  padding: 16px;
  margin-top: 12px;
}

.vt-whatsapp-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  text-align: left;
}

.vt-whatsapp-badge-icon {
  font-size: 24px;
  line-height: 1;
}

.vt-whatsapp-header h6 {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.vt-whatsapp-header p {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  color: #B7C3D3;
  line-height: 1.4;
  margin: 0;
}

.vt-btn-whatsapp-premium {
  width: 100%;
  background-color: #25D366;
  border: none;
  color: #FFFFFF;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.vt-btn-whatsapp-premium:hover {
  background-color: #20BA5A;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Accordion for Other Intelligences */
.vt-accordions-block {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 12px;
}

.vt-accordions-block h5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #97A0B6;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.vt-accordions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vt-accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vt-accordion-item.active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.vt-accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.vt-accordion-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-accordion-icon-large {
  font-size: 20px;
}

.vt-accordion-title-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.vt-accordion-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-accordion-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #B7C3D3;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.vt-accordion-item.active .vt-accordion-badge {
  background: rgba(243, 118, 16, 0.1);
  border-color: rgba(243, 118, 16, 0.2);
  color: #FF9901;
}

.vt-accordion-arrow-svg {
  color: #97A0B6;
  transition: transform 0.3s ease;
}

.vt-accordion-item.active .vt-accordion-arrow-svg {
  transform: rotate(180deg);
  color: #FF9901;
}

.vt-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
}

.vt-accordion-item.active .vt-accordion-content {
  max-height: 380px;
  padding: 0 20px 20px 20px;
}

.vt-accordion-desc-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 13.5px;
  color: #B7C3D3;
  line-height: 1.55;
  margin: 0;
}

/* Toast Success popup */
.vt-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(243, 118, 16, 0.95);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(243, 118, 16, 0.3);
  z-index: 9999999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.vt-toast.active {
  transform: translateX(-50%) translateY(0);
}

/* Modal body Scrollbars */
.vt-modal-body::-webkit-scrollbar {
  width: 6px;
}

.vt-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
}

.vt-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.vt-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #teste-vocacional-section {
    padding: 60px 16px !important;
  }
  #teste-vocacional-section h2 {
    font-size: 32px !important;
  }
  .vt-modal-container {
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
  .vt-modal-container.vt-modal-expanded {
    max-width: 100% !important;
  }
  .vt-modal-header {
    padding: 16px 20px;
  }
  .vt-modal-body {
    padding: 20px;
  }
  .vt-modal-footer {
    padding: 16px 20px 20px 20px;
  }
  
  /* Horizontal Scrolling support on Mobile Chart */
  .vt-chart-container {
    height: 180px;
    overflow-x: auto !important;
    scrollbar-width: thin !important;
  }
  
  .vt-chart-container::-webkit-scrollbar {
    height: 4px !important;
  }
  
  .vt-chart-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01) !important;
  }
  
  .vt-chart-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 2px !important;
  }
  
  .vt-chart-bars-row {
    min-width: 550px !important; /* Force legibility for the 8 columns on drag */
    padding-bottom: 6px;
  }
  
  .vt-chart-bar-outer {
    height: 100px;
  }
  .vt-chart-bar-label-small {
    font-size: 8px;
  }
  .vt-chart-bar-icon-small {
    font-size: 13px;
  }
  .vt-form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Tailwind Utility Classes CSS Fallbacks for cross-compilation safety */
.overflow-x-auto {
  overflow-x: auto !important;
}
.scrollbar-none::-webkit-scrollbar {
  display: none !important;
}
.scrollbar-none {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

@media (max-width: 640px) {
  .flex-col {
    flex-direction: column !important;
  }
  .w-full {
    width: 100% !important;
  }
  .gap-2 {
    gap: 8px !important;
  }
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:min-w-0 {
    min-width: 0 !important;
  }
}

/* Vocational Test Info Accordion Styles */
.vt-info-details {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.vt-info-details[open] {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
  border-color: #CBD5E1 !important;
  transform: translateY(2px);
}

.vt-info-details[open] .vt-chevron {
  transform: rotate(180deg);
}

.vt-info-details[open] .vt-info-summary {
  background: #F1F5F9 !important;
}

.vt-info-summary::-webkit-details-marker {
  display: none !important;
}

.vt-info-summary:hover {
  background: #EBF1F7;
}
