/* ===== BLACK FRIDAY CODEMINDS - DESIGN RESPONSIVO OTIMIZADO ===== */

:root {
    --primary-purple: #7b61ff;
    --secondary-orange: #ff7b54;
    --accent-yellow: #ffd700;
    --dark-bg: #0a0a14;
    --darker-bg: #050508;
    --card-bg: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: #b0b0c0;
    --border-color: #2d2d4a;
    --success-green: #3ddc97;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: linear-gradient(135deg, #0a0a14 0%, #1a0f3f 50%, #0a0a14 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
  }
  
  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ===== HEADER / HERO ===== */
  
  .hero {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary-orange);
  }
  
  .topbar {
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-orange));
    padding: 6px 0;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    animation: slideDown 0.6s ease-out;
  }
  
  .topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .topbar .pulse {
    animation: pulse 1.5s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .separator {
    opacity: 0.6;
  }
  
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0 100px;
    min-height: calc(100vh - 50px);
  }
  
  .hero-left {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Mascote com frame de pixel art */
  .mascote-wrapper {
    position: relative;
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .pixel-frame {
    position: relative;
    border: 6px solid var(--secondary-orange);
    border-radius: 0px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 123, 84, 0.08));
    padding: 6px;
    box-shadow: 
      inset 0 0 0 2px var(--primary-purple),
      0 0 25px rgba(255, 123, 84, 0.25),
      0 0 0 8px rgba(10, 10, 20, 0.6);
  }
  
  .mascote {
    width: 130px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 123, 84, 0.15));
    display: block;
  }
  
  .floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .icon-float {
    position: absolute;
    font-size: 28px;
    animation: float 4s ease-in-out infinite;
  }
  
  .icon-float:nth-child(1) {
    top: -30px;
    left: 30px;
    animation-delay: 0s;
  }
  
  .icon-float:nth-child(2) {
    top: 20px;
    right: -20px;
    animation-delay: 0.5s;
  }
  
  .icon-float:nth-child(3) {
    bottom: 10px;
    left: -20px;
    animation-delay: 1s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Badge de objetivo */
  .objective-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid var(--secondary-orange);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    animation: slideIn 0.6s ease-out 0.2s both;
  }
  
  .badge-icon {
    font-size: 18px;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Título Principal */
  .main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    margin-top: 0;
    animation: slideIn 0.6s ease-out 0.3s both;
  }
  
  .text-gradient {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .text-orange {
    color: var(--secondary-orange);
  }
  
  /* Subtítulo */
  .subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    animation: slideIn 0.6s ease-out 0.4s both;
  }
  
  .subtitle b {
    color: var(--secondary-orange);
    font-weight: 700;
  }
  
  /* Countdown */
  .countdown-container {
    margin-bottom: 32px;
    animation: slideIn 0.6s ease-out 0.5s both;
  }
  
  .countdown-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--secondary-orange);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }
  
  .countdown {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--secondary-orange);
    border-radius: 12px;
    padding: 10px 18px;
    backdrop-filter: blur(10px);
  }
  
  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
  }
  
  .countdown-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary-orange);
    line-height: 1;
  }
  
  .countdown-label-small {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
  }
  
  .countdown-separator {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary-orange);
    margin: 0 4px;
  }
  
  /* Progress Bar */
  .progress-container {
    margin-bottom: 32px;
    animation: slideIn 0.6s ease-out 0.6s both;
  }
  
  .progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-light);
  }
  
  .progress-percentage {
    color: var(--secondary-orange);
    font-weight: 900;
    font-size: 18px;
  }
  
  .progress-bar {
    position: relative;
    height: 26px;
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--secondary-orange);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-orange), var(--accent-yellow));
    width: 80%;
    transition: width 0.5s ease;
    position: relative;
  }
  
  .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-light);
    z-index: 2;
  }
  
  /* CTAs */
  .cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    animation: slideIn 0.6s ease-out 0.7s both;
  }
  
  .btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
    color: white;
    box-shadow: 0 8px 24px rgba(255, 123, 84, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 123, 84, 0.4);
  }
  
  .btn-primary:active {
    transform: translateY(-1px);
  }
  
  .btn-secondary {
    background: rgba(26, 26, 46, 0.9);
    color: white;
    border: 2px solid var(--border-color);
  }
  
  .btn-secondary:hover {
    border-color: var(--secondary-orange);
    background: rgba(26, 26, 46, 1);
  }
  
  /* Botão desabilitado */
  .btn-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
  }
  
  /* Botão ativado após vídeo */
  .btn-primary.btn-activated {
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: all !important;
    background: linear-gradient(135deg, #01570c, #32f800) !important;
    box-shadow: 0 8px 24px rgba(50, 248, 0, 0.3) !important;
    animation: pulse-green 2s ease-in-out infinite;
  }
  
  .btn-primary.btn-activated:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(50, 248, 0, 0.4) !important;
  }
  
  .btn-secondary.btn-activated {
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: all !important;
  }
  
  @keyframes pulse-green {
    0%, 100% {
      box-shadow: 0 8px 24px rgba(50, 248, 0, 0.3);
    }
    50% {
      box-shadow: 0 8px 24px rgba(50, 248, 0, 0.5);
    }
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .btn-block {
    width: 100%;
  }
  
  /* Vídeo */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--border-color);
    background: var(--card-bg);
    width: 100%;
    max-height: 750px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  
  .video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    pointer-events: auto;
    border: none;
  }
  
  @supports (aspect-ratio: 16 / 9) {
    .video-container {
      aspect-ratio: 16 / 9;
      max-height: none;
    }
    
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.1) 0%, rgba(255, 123, 84, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
  }
  
  .video-blocker {
    pointer-events: all;
    z-index: 2;
    cursor: not-allowed;
  }
  
  /* ===== SEÇÃO DE PREÇOS ===== */
  
  .pricing-section {
    padding: 80px 0;
    border-bottom: 3px solid var(--secondary-orange);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
  }
  
  .section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .pricing-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 30, 80, 0.5) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .pricing-card:hover {
    border-color: var(--secondary-orange);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 123, 84, 0.15);
  }
  
  .featured-card {
    border: 3px solid var(--secondary-orange);
    background: linear-gradient(135deg, rgba(255, 123, 84, 0.15) 0%, rgba(123, 97, 255, 0.15) 100%);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 123, 84, 0.2);
  }
  
  .featured-card:hover {
    transform: scale(1.08) translateY(-8px);
  }
  
  .card-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-yellow));
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-top: 12px;
    gap: 16px;
  }
  
  .card-header h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
  }
  
  .best-value {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    padding-left: 16px;
  }
  
  .price-section {
    margin-bottom: 32px;
  }
  
  .price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
  }
  
  .price-main {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-orange);
    line-height: 1;
    margin-bottom: 8px;
  }
  
  .price-period {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 600;
  }
  
  .price-savings {
    font-size: 14px;
    color: var(--accent-yellow);
    font-weight: 700;
  }
  
  .benefits-list {
    flex-grow: 1;
    margin-bottom: 24px;
  }
  
  .benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.4;
  }
  
  .benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
  }
  
  /* Comparativo */
  .comparison-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
  }
  
  .comparison-section h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
  }
  
  .comparison-table thead {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
  }
  
  .comparison-table th {
    padding: 16px;
    text-align: left;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
  }
  
  .comparison-table td {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
  }
  
  .comparison-table tbody tr:hover {
    background: rgba(255, 123, 84, 0.05);
  }
  
  /* ===== WORKSHOP SECTION ===== */
  
  .workshop-section {
    padding: 80px 0;
    border-bottom: 3px solid var(--secondary-orange);
  }
  
  .workshop-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .workshop-icon {
    font-size: 64px;
    margin-bottom: 24px;
  }
  
  .workshop-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .workshop-section p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .workshop-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
  }
  
  .workshop-list li {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .workshop-list li:hover {
    border-color: var(--secondary-orange);
    background: rgba(255, 123, 84, 0.05);
    transform: translateY(-4px);
  }
  
  /* CTA Workshop Section */
  .cta-buttons-workshop {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    animation: slideIn 0.6s ease-out 0.8s both;
  }
  
  .cta-buttons-workshop .btn {
    min-width: 280px;
  }
  
  /* ===== FOOTER ===== */
  
  .footer {
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid var(--border-color);
    color: var(--text-muted);
  }
  
  .footer p {
    margin: 8px 0;
  }
  
  .footer small {
    font-size: 13px;
  }
  
  /* ===== RESPONSIVIDADE COMPLETA E OTIMIZADA ===== */
  
  /* Tablets grandes e desktops pequenos */
  @media (max-width: 1200px) {
    .wrap {
      padding: 0 20px;
    }
  
    .hero-inner {
      gap: 32px;
      padding: 60px 0 80px;
      min-height: auto;
    }
    
    .video-container {
      max-height: 500px;
    }
  
    .main-title {
      font-size: 42px;
    }
  
    .section-header h2 {
      font-size: 42px;
    }
  }
  
  /* Tablets */
  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 50px 0 70px;
      min-height: auto;
      align-items: flex-start;
    }
  
    .hero-right {
      order: -1;
    }
    
    .video-container {
      max-width: 100%;
      max-height: 450px;
      margin: 0 auto;
    }
  
    .pricing-cards {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .featured-card {
      transform: scale(1);
      order: -1;
    }
  
    .featured-card:hover {
      transform: translateY(-8px);
    }
  
    .main-title {
      font-size: 44px;
      text-align: center;
    }
  
    .subtitle {
      text-align: center;
    }
  
    .mascote-wrapper {
      justify-content: center;
    }
  
    .objective-badge {
      display: flex;
      justify-content: center;
      margin: 0 auto 24px;
    }
  
    .countdown-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 24px;
    }
  
    .countdown {
      width: 100%;
      max-width: 500px;
      justify-content: center;
      padding: 8px 14px;
    }
  
    .progress-container {
      width: 100%;
      margin: 0 auto 24px;
    }
    
    .progress-bar {
      height: 40px;
    }
    
    .progress-text {
      font-size: 14px;
      font-weight: 800;
    }
  
    .cta-buttons {
      justify-content: center;
    }
  
    .section-header h2 {
      font-size: 36px;
    }
  
    .section-header p {
      font-size: 16px;
      padding: 0 20px;
    }
  
    .workshop-list {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .comparison-table {
      font-size: 14px;
    }
  
    .comparison-table th,
    .comparison-table td {
      padding: 12px 10px;
    }
  }
  
  /* Mobile grande */
  @media (max-width: 768px) {
    .wrap {
      padding: 0 16px;
    }
  
    .topbar {
      padding: 5px 8px;
      font-size: 10px;
    }
  
    .topbar-content {
      gap: 6px;
      padding: 0 8px;
    }
  
    .separator {
      display: none;
    }
  
    .hero-inner {
      padding: 8px 0 16px;
      min-height: auto;
    }
  
    /* Esconder ícones flutuantes em mobile */
    .floating-icons {
      display: none;
    }
  
    .mascote-wrapper {
      margin-bottom: 6px;
    }
  
    .pixel-frame {
      border-width: 4px;
    }
  
    .mascote {
      width: 100px;
    }
  
    .objective-badge {
      font-size: 10px;
      padding: 5px 8px;
      max-width: 90%;
      text-align: center;
      margin-bottom: 4px;
      margin-top: -2px;
    }
  
    .badge-icon {
      font-size: 16px;
    }
  
    .main-title {
      font-size: 26px;
      line-height: 1.2;
      margin-bottom: 20px;
      margin-top: 0;
    }
  
    .subtitle {
      font-size: 13px;
      line-height: 1.4;
      margin-bottom: 24px;
    }
  
    .countdown-label {
      font-size: 12px;
      text-align: center;
    }
  
    .countdown {
      padding: 12px 16px;
      gap: 4px;
      justify-content: space-between;
      max-width: 100%;
    }
  
    .countdown-item {
      padding: 0 6px;
      min-width: 60px;
    }
  
    .countdown-number {
      font-size: 24px;
    }
  
    .countdown-label-small {
      font-size: 9px;
    }
  
    .countdown-separator {
      font-size: 20px;
      margin: 0 2px;
    }
  
    .progress-label {
      font-size: 11px;
    }
  
    .progress-label span:first-child {
      max-width: 60%;
    }
  
    .progress-percentage {
      font-size: 15px;
    }
  
    .progress-bar {
      height: 40px;
    }
  
    .progress-text {
      font-size: 13px;
      padding: 0 4px;
      font-weight: 800;
    }
  
    .cta-buttons {
      flex-direction: column;
      width: 100%;
      gap: 8px;
      margin-top: 0;
      margin-bottom: 0;
    }
  
    .btn {
      width: 100%;
      white-space: normal;
      text-align: center;
      padding: 14px 20px;
      font-size: 14px;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .btn-lg {
      padding: 14px 20px;
      font-size: 14px;
      min-height: 48px;
    }
  
    .pricing-section {
      padding: 60px 0;
    }
  
    .section-header {
      margin-bottom: 40px;
    }
  
    .section-header h2 {
      font-size: 26px;
    }
  
    .section-header p {
      font-size: 14px;
    }
  
    .pricing-cards {
      gap: 24px;
    }
  
    .pricing-card {
      padding: 24px;
    }
  
    .card-badge {
      font-size: 10px;
      padding: 6px 12px;
      top: -12px;
      left: 16px;
    }
  
    .card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  
    .card-header h3 {
      font-size: 20px;
    }
  
    .best-value {
      font-size: 11px;
    }
  
    .price-old {
      font-size: 13px;
    }
  
    .price-main {
      font-size: 36px;
    }
  
    .price-period {
      font-size: 16px;
    }
  
    .price-savings {
      font-size: 13px;
    }
  
    .benefit {
      font-size: 13px;
      margin-bottom: 12px;
    }
  
    .benefit-icon {
      font-size: 18px;
    }
  
    .comparison-section {
      margin-top: 40px;
      padding-top: 40px;
    }
  
    .comparison-section h3 {
      font-size: 22px;
    }
  
    .comparison-table {
      font-size: 12px;
      display: block;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    .comparison-table th,
    .comparison-table td {
      padding: 10px 8px;
      white-space: nowrap;
    }
  
    .workshop-section {
      padding: 60px 0;
    }
  
    .workshop-icon {
      font-size: 48px;
    }
  
    .workshop-section h2 {
      font-size: 26px;
    }
  
    .workshop-section p {
      font-size: 15px;
    }
  
    .workshop-list li {
      padding: 16px;
      font-size: 14px;
    }
    
    .cta-buttons-workshop {
      margin-top: 24px;
    }
    
    .cta-buttons-workshop .btn {
      min-width: 100%;
      width: 100%;
    }
  
    .footer {
      padding: 32px 0;
      font-size: 13px;
    }
  }
  
  /* Mobile pequeno */
  @media (max-width: 480px) {
    .wrap {
      padding: 0 12px;
    }
  
    .topbar {
      padding: 4px 8px;
      font-size: 9px;
    }
  
    .topbar-content {
      gap: 4px;
    }
  
    .hero-inner {
      padding: 6px 0 12px;
      min-height: auto;
    }
  
    .mascote {
      width: 80px;
    }
  
    .objective-badge {
      font-size: 9px;
      padding: 4px 6px;
      max-width: 95%;
      margin-bottom: 2px;
      margin-top: -2px;
    }
  
    .main-title {
      font-size: 22px;
      margin-bottom: 4px;
      margin-top: -6px;
    }
  
    .subtitle {
      font-size: 11px;
      margin-bottom: 6px;
    }
  
    .countdown-label {
      font-size: 11px;
    }
  
    .countdown {
      padding: 10px 12px;
      gap: 2px;
    }
  
    .countdown-item {
      padding: 0 4px;
      min-width: 50px;
    }
  
    .countdown-number {
      font-size: 20px;
    }
  
    .countdown-label-small {
      font-size: 8px;
    }
  
    .countdown-separator {
      font-size: 18px;
      margin: 0 1px;
    }
  
    .progress-label {
      font-size: 10px;
      flex-wrap: wrap;
      gap: 4px;
    }
  
    .progress-percentage {
      font-size: 14px;
    }
  
    .progress-bar {
      height: 36px;
    }
  
    .progress-text {
      font-size: 12px;
      font-weight: 800;
    }
  
    .btn {
      padding: 14px 18px;
      font-size: 13px;
      min-height: 48px;
    }
  
    .btn-lg {
      padding: 14px 18px;
      font-size: 13px;
      min-height: 48px;
    }
    
    .video-container {
      max-height: 180px;
      margin-bottom: 10px;
      aspect-ratio: 16 / 9;
    }
    
    .video-container video,
    .video-container iframe {
      max-height: 180px;
      min-height: 160px;
    }
    
    @supports (aspect-ratio: 16 / 9) {
      .video-container {
        max-height: none;
        height: auto;
      }
      
      .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: auto;
        max-height: none;
      }
    }
  
    .pricing-section {
      padding: 48px 0;
    }
  
    .section-header {
      margin-bottom: 32px;
    }
  
    .section-header h2 {
      font-size: 22px;
    }
  
    .section-header p {
      font-size: 13px;
    }
  
    .pricing-card {
      padding: 20px;
    }
  
    .card-header h3 {
      font-size: 18px;
    }
  
    .price-main {
      font-size: 32px;
    }
  
    .price-period {
      font-size: 14px;
    }
  
    .benefit {
      font-size: 12px;
    }
  
    .comparison-section h3 {
      font-size: 20px;
    }
  
    .comparison-table {
      font-size: 11px;
    }
  
    .comparison-table th,
    .comparison-table td {
      padding: 8px 6px;
    }
  
    .workshop-section {
      padding: 48px 0;
    }
  
    .workshop-icon {
      font-size: 40px;
    }
  
    .workshop-section h2 {
      font-size: 22px;
    }
  
    .workshop-section p {
      font-size: 13px;
    }
  
    .workshop-list li {
      padding: 14px;
      font-size: 13px;
    }
  
    .footer {
      padding: 24px 0;
      font-size: 12px;
    }
  
    .footer small {
      font-size: 11px;
    }
  }
  
  /* Mobile extra pequeno */
  @media (max-width: 360px) {
    .main-title {
      font-size: 24px;
    }
  
    .countdown-number {
      font-size: 18px;
    }
  
    .countdown-item {
      min-width: 45px;
    }
  
    .price-main {
      font-size: 28px;
    }
  
    .section-header h2 {
      font-size: 20px;
    }
  
    .workshop-section h2 {
      font-size: 20px;
    }
  }
  
  /* Ajustes para landscape em mobile */
  @media (max-height: 600px) and (orientation: landscape) {
    .hero-inner {
      padding: 6px 0 10px;
    }
  
    .mascote-wrapper {
      margin-bottom: 4px;
      display: none;
    }
  
    .objective-badge {
      margin-bottom: 4px;
      padding: 3px 6px;
      font-size: 8px;
    }
  
    .main-title {
      font-size: 20px;
      margin-bottom: 4px;
    }
  
    .subtitle {
      font-size: 10px;
      margin-bottom: 6px;
    }
  
    .countdown-container {
      margin-bottom: 6px;
    }
  
    .countdown {
      padding: 6px 10px;
    }
  
    .countdown-number {
      font-size: 18px;
    }
  
    .progress-container {
      margin-bottom: 6px;
    }
  
    .progress-bar {
      height: 32px;
    }
    
    .progress-text {
      font-size: 11px;
      font-weight: 800;
    }
  
    .cta-buttons {
      gap: 6px;
      margin-top: 0;
    }
  
    .btn-lg {
      padding: 10px 14px;
      font-size: 11px;
      min-height: 44px;
    }
  }

  /* ===== MODAL DE INSCRIÇÃO ===== */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .modal-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 40px rgba(123, 97, 255, 0.3);
  }

  .modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
    font-size: 1.8rem;
    text-align: center;
  }

  .modal-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .modal-content form label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
  }

  .modal-content input,
  .modal-content select {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-bg);
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s;
  }

  .modal-content input:focus,
  .modal-content select:focus {
    outline: none;
    border-color: var(--primary-purple);
  }

  .modal-content input::placeholder {
    color: var(--text-muted);
  }

  .modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .modal-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
  }

  #cancel-btn {
    background: var(--border-color);
    color: var(--text-light);
  }

  #cancel-btn:hover {
    background: #3d3d5a;
  }

  .modal-buttons button[type="submit"] {
    background: var(--primary-purple);
    color: var(--text-light);
  }

  .modal-buttons button[type="submit"]:hover {
    background: #6b4fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.4);
  }

  #pix-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .modal-content {
      padding: 1.5rem;
      width: 95%;
    }

    .modal-content h2 {
      font-size: 1.5rem;
    }

    .modal-buttons {
      flex-direction: column;
    }

    .modal-buttons button {
      width: 100%;
    }
  }


  /* ======================================================= */
/* SEÇÃO DE VALOR – O QUE NÃO PAGA */
/* ======================================================= */

.value-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--secondary-orange);
}

.value-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.value-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-header p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(42, 30, 80, 0.5));
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.value-card:hover {
  border-color: var(--secondary-orange);
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(255, 123, 84, 0.15);
}

.value-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-light);
}

.value-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 1024px) {
  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .value-section {
    padding: 60px 0;
  }

  .value-header h2 {
    font-size: 30px;
  }

  .value-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 22px;
  }
}

/* ----- SEÇÃO QUEM SOMOS ----- */

.about-carousel-section {
  padding: 120px 0;
  background: linear-gradient(90deg, #0a0420 0%, #3c0078 100%);
  color: #fff;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* COLUNA ESQUERDA — CARROSSEL */
.carousel-container {
  width: 50%;
  max-width: 520px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.35);
}

/* BOLINHAS DE NAVEGAÇÃO */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots button.active {
  background: #ff8cff;
  transform: scale(1.3);
}

/* COLUNA DIREITA — TEXTO */
.about-text {
  width: 45%;
  max-width: 550px;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .carousel-container,
  .about-text {
    width: 100%;
  }

  .about-text h2 {
    text-align: center;
  }
}
