/* Page-specific styles wrapped to prevent conflicts with other pages */
.dark .rifa-automate-page {

  /* Rifa Automate Dark Theme */

  /* Fonte Inter como fonte padrão para o tema dark */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  
  /* Reset and Base Styles for this page only */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Ajustes finos de tipografia para combos em telas muito pequenas */
  @media (max-width: 382px) {
    .combos-section .combo-title {
      font-size: 0.95rem; /* era 1rem */
    }
    .combos-section .combo-reward span {
      font-size: 0.8rem; /* era 0.875rem */
    }
    .combos-section .combo-footer {
      font-size: 0.7rem; /* era 0.75rem */
    }
    .combos-section .combo-emoji {
      font-size: 1.3rem; /* era 1.5rem */
    }
  }

  /* Carousel bullets - Dark theme */
  .carousel-bullets {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 10;
  }

  .carousel-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #9ca3af !important;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .carousel-bullet.active {
    background: #ffffff !important;
  }

  .carousel-bullet:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  }

  .carousel-bullet:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }

  /* Garantir que todos os elementos principais tenham fundo preto */
  .main-content {
    background-color: #0a0909;
  }

  .container {
    background-color: transparent;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* Navigation */
  header {
    border-bottom: 1px solid #374151;
    padding: 0.75rem 1rem;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-container {
    flex-shrink: 0;
  }

  .logo {
    height: 60px;
    width: 120px;
    object-fit: contain;
  }

  .desktop-nav {
    display: none;
  }

  .nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }

  .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-link:hover {
    color: #d1d5db;
  }

  .mobile-menu-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
  }

  /* Main Content */
  .main-content {
    flex: 1;
    padding: 1.5rem 1rem;
  }

  .page-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1.5rem 0;
    text-align: left;
  }

  /* Título centralizado no Type 0 - seletor baseado na estrutura */
  .carousel-type-0-title {
    text-align: center !important;
  }

  /* Product Section - Layout padrão (Type 1) */
  .product-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
  }

  /* Carousel */
  .carousel-container {
    width: 100%;
  }

  .carousel-wrapper {
    border-radius: 0.375rem;
    border: 1px solid #374151;
    height: 300px;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
  }

  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    pointer-events: none;
  }

  .carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .carousel-slide.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
  }

  .carousel-slide.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .carousel-btn:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

  .carousel-bullets {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .carousel-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    background: #9ca3af;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .carousel-bullet.active {
    background: #000;
  }

  /* Purchase Form */
  .purchase-form {
    background: transparent;
    color: #000;
    border-radius: 0.375rem;
    border: 1px solid #374151;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  /* ===== CAROUSEL TYPE 0 - FULLWIDTH LAYOUT ===== */
  
  /* Adicionar classe específica para identificar Type 0 */
  .product-section.carousel-type-0 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
    align-items: center !important;
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: none !important;
  }

  /* Carrossel no Type 0 - ocupar largura total */
  .product-section.carousel-type-0 .carousel-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Purchase form no Type 0 - manter mesma largura do carousel (100%) */
  .product-section.carousel-type-0 .purchase-form {
    width: calc(100% / 0.9) !important;
    margin-left: calc((100% - 100% / 0.9) / 2) !important;
    margin-right: calc((100% - 100% / 0.9) / 2) !important;
    position: relative !important;
    background: transparent !important; 
    border: 1px solid #374151;
    border-radius: 0.5rem;
  }

  /* Container do purchase form Type 0 - largura padrão do container */
  .purchase-form-type-0 {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Ajustes específicos para Type 0: remover altura fixa e adicionar espaçamento vertical */
  @media (min-width: 768px) {
    .product-section.carousel-type-0 .purchase-form {
      height: auto !important; /* Não força 536px no Type 0 */
    }
  }

  /* Espaçamento vertical no container interno do Type 0 (mantém laterais) */
  .purchase-form-type-0 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  /* Pequeno respiro acima do título "Compra Automática" no Type 0 */
  .purchase-form-type-0 .form-title {
    margin-top: 0.25rem;
    color: #fff !important;          /* Type 0: texto branco */
    font-size: 1.2rem !important;    /* Type 0: tamanho 1.2rem */
  }

  /* Subtítulo no Type 0 */
  .purchase-form-type-0 .form-subtitle {
    font-size: 0.875rem !important;  /* .875rem */
    color: #d1d5db !important;       /* cinza claro para fundo escuro */
  }

  /* Ajuste de espaçamento do bloco de quantidade no Type 0 */
  .purchase-form-type-0 .quantity-section {
    margin-bottom: 0 !important; /* reduz espaço abaixo */
  }

  .purchase-form-type-0 .quantity-display {
    padding-top: 0.5rem !important;   /* reduz padding vertical interno */
    padding-bottom: 0.5rem !important;
  }

  /* === Botão COMPRAR (Type 0): ícone+texto centralizados, preço à direita === */
  .purchase-form-type-0 #btn-automatic-buy .btn-buy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* preço será empurrado com margin-left:auto */
    width: 100%;
  }

  .purchase-form-type-0 #btn-automatic-buy .btn-buy .btn-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }

  .purchase-form-type-0 #btn-automatic-buy .btn-buy #tt_btn {
    margin-left: auto; /* alinha o preço à direita */
  }

  .price-header {
    background: #28a745;
    color: #fff;
    text-align: center;
    padding: 0.75rem;
  }

  .price-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
  }

  .price-value {
    font-size: 1.25rem;
    font-weight: bold;
  }

  .form-content {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .form-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #ffffff;
  }

  .form-subtitle {
    text-align: center;
    font-size: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
  }

  .title-options {
    margin-bottom: 0.75rem;
    width: 100%;
  }

  .title-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #eceef1;
    border: 1px solid #bdbec1;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
  }

  .automate_buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2px;
  } 

  .automate_buttons .add-numbers {
    padding: 5px 0;
    touch-action: none;
    margin: 8px 5px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 5px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    cursor: pointer;
    text-decoration: none;
  }

  .automate_buttons .title {
    font-size: 1rem !important;
    margin: 0;
    cursor: pointer;
  }

  .automate_buttons .subtitle {
    font-size: 60%;
    margin: 0;
    cursor: pointer;
  }

  .automate_buttons .add-numbers p {
    margin: 0;
    cursor: pointer;
    font-weight: 300;
    font-size: 0.7rem;
  }

  .add-numbers.best_choice {
    border: 2px solid #198754 !important;
    background-color: #fff;
    position: relative;
  }

  .automate_buttons .add-numbers.selected {
    border: 2px solid #328ee6 !important;
    box-shadow: 0 0 0 2px rgba(50, 142, 230, 0.15);
    background-color: #fff;
  }

  .automate_buttons .add-numbers:focus-visible {
    outline: none;
    border: 2px solid #328ee6 !important;
    box-shadow: 0 0 0 2px rgba(50, 142, 230, 0.2);
  }

  .title-option:hover {
    background: #f9fafb;
  }

  .title-option.popular {
    border: 2px solid #28a745;
  }

  .popular-badge {
    position: absolute;
    top: -0.5rem;
    background: #28a745;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    white-space: nowrap;
  }

  .option-title {
    color: #3a3a3a;
    font-weight: 700;
    font-size: 20px;
    font-family: Montserrat, Arial, sans-serif;
  }

  .option-subtitle {
    color: #3a3a3a;
    font-weight: 100;
    font-size: 11px;
    font-family: Montserrat, Arial, sans-serif;
  }

  .quantity-section {
    margin-bottom: 0.75rem;
  }

  .quantity-display {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .quantity-text {
    color: #fff;
    font-size: 0.875rem;
    font-family: Montserrat, Arial, sans-serif;
  }

  .quantity-controls {
    display: flex;
    align-items: center;
  }

  .quantity-btn {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #000;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .quantity-btn:hover {
    background: #f3f4f6;
  }

  .quantity-btn:first-child {
    border-radius: 0.375rem 0 0 0.375rem;
  }

  .quantity-btn:last-child {
    border-radius: 0 0.375rem 0.375rem 0;
  }

  .quantity-input {
    width: 5rem;
    height: 2rem;
    background: #000;
    color: #fff;
    text-align: center;
    border: 1px solid #6b7280;
    border-left: none;
    border-right: none;
    outline: none;
    font-family: Montserrat, Arial, sans-serif;
  }

  .action-buttons {
    margin-top: auto;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-buy {
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    height: 44px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-buy:hover {
    background: #218838;
  }

  .btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-view {
    background: #ffc107;
    color: #000;
    border: 1px solid #ffc107;
    border-radius: 0.375rem;
    height: 44px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-view:hover {
    background: #e0a800;
  }

  /* Progress Bar */
  .progress-container {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .progress-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
  }

  .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 85%;
    background: #ffc107;
    border-radius: 16px;
  }

  .progress-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #000;
  }

  /* Promotion Section */
  .promotion-section {
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .promotion-header {
    /* Removido para padronizar com as demais seções */
    border-bottom: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .promotion-header .section-title-icon {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 500;
  }

  .promotion-header h2 {
    /* Padroniza com os títulos das seções */
    font-size: 1.25rem;
    font-weight: bold;
  }

  .promotion-content {
    padding: 1rem;
  }

  .promotion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .promotion-btn {
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: box-shadow 0.3s;
    flex: 0 1 auto;
    text-align: center;
  }

  .promotion-btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .promo-light {
    font-weight: 300;
  }

  /* Responsividade específica para promoção */
  @media (max-width: 767px) {
    .promotion-btn {
      flex: 1;
      min-width: calc(50% - 0.25rem);
      max-width: calc(50% - 0.25rem);
    }
  }

  @media (max-width: 480px) {
    .promotion-content {
      padding: 0.75rem;
    }
    
    .promotion-btn {
      min-width: calc(50% - 0.25rem);
      max-width: calc(50% - 0.25rem);
      padding: 0.4rem;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 430px) {
    .promotion-content {
      padding: 0.5rem;
    }
    
    .promotion-buttons {
      gap: 0.3rem;
    }
    
    .promotion-btn {
      min-width: calc(50% - 0.15rem);
      max-width: calc(50% - 0.15rem);
      padding: 0.3rem 0.2rem;
      font-size: 0.65rem;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
  }

  /* Ajuste para títulos premiados em telas muito pequenas */
  @media (max-width: 399px) {
    .titles-list {
      gap: 0.3rem;
    }
    
    .title-card {
      width: auto;
      min-width: 150px;
      flex: 0 0 auto;
    }
  }

  .promo-bold {
    font-weight: bold;
  }

  /* Section Headers */
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.2rem;
  }

  .section-title-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .section-title-container i {
    color: #fbbf24 !important;
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }

  /* Garantir que apenas os SVGs ao lado dos títulos das seções fiquem amarelos */
  .section-title-container svg {
    color: #fbbf24 !important;
    stroke: #fbbf24 !important;
  }

  .section-title-container [data-lucide] {
    color: #fbbf24 !important;
    stroke: #fbbf24 !important;
  }

  /* Cores específicas para ícones dos títulos baseadas no status */
  .title-card.available .title-header i[data-lucide="ticket"] {
    color: #10b981 !important; /* Verde para títulos disponíveis */
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.3));
  }

  .title-card.unavailable .title-header i[data-lucide="x"] {
    color: #ef4444 !important; /* Vermelho para títulos indisponíveis */
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.3));
  }

  .title-card.available .title-header svg {
    color: #10b981 !important;
    stroke: #10b981 !important;
  }

  .title-card.unavailable .title-header svg {
    color: #ef4444 !important;
    stroke: #ef4444 !important;
  }

  .section-title-container h2 {
    font-size: 1.25rem;
    font-weight: bold;
  }

  .count {
    color: #fbbf24;
    font-size: 1.2rem;
  }

  .section-subtitle {
    color: #d1d5db;
    font-size: 0.7rem;
  }

  /* Combos Section */
  .combos-section {
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    padding-top: 1rem;
  }

  .combos-container {
    max-height: 400px;
    overflow: hidden; /* Manter comportamento do ver mais */
    transition: max-height 0.3s ease;
    padding: 15px 0 0 0; /* Padding superior para a estrela */
    margin-bottom: 1.25rem;
    position: relative; /* Para permitir posicionamento da estrela */
  }

  .combos-container.expanded {
    max-height: 1000px;
  }

  .combo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem 1.5rem;
    padding: 0 .9rem;
  }

  .combo-item {
    margin: 0.5rem 0;
    width: 100%;
    padding: 0 0.5rem;
    overflow: visible;
    position: relative;
  }

  .combo-wide {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

  .combo-wide .combo-card {
    width: 100%;
    max-width: 500px;
  }

  .combo-card {
    position: relative;
    color: #fff;
    height: 100px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    overflow: visible; /* Permitir que a estrela apareça sobre o card */
    width: 100%;
    z-index: 10;
  }

  /* Remover hover effect - combos devem funcionar como no admin */

  .combo-card.featured {
    animation: pulse 2s infinite !important;
    transform-origin: center;
    position: relative;
    z-index: 1;
  }

  /* Animação de pulsar correta do admin */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }

  .star-badge {
    position: absolute;
    top: -6px; /* Bem na pontinha superior */
    right: -6px; /* Bem na pontinha direita */
    background-color: rgb(251 191 36); /* Amarelo correto do admin */
    color: white;
    border-radius: 9999px;
    padding: 0.25rem;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20; /* Z-index maior para ficar sobre tudo */
  }

  .star-badge i {
    color: #fff;
    font-size: 16px; /* Tamanho do ícone aumentado */
    width: auto;
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .combo-content {
    padding: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .combo-info {
    display: flex;
    align-items: center;
  }

  .combo-emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }

  .combo-title {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
  }

  .combo-reward {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    color: #fff;
    margin-right: .3rem;
  }

  .combo-reward span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
  }

  .combo-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: left;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  /* Combo Gradients */
  .combo-1 {
    background: linear-gradient(to top, #fd7d96, #fea196);
  }

  .combo-2 {
    background: linear-gradient(to right, #da9bf5, #b459ff);
  }

  .combo-3 {
    background: linear-gradient(to right, #74cf98, #0cc896);
  }

  .combo-4 {
    background: linear-gradient(to right, #a09df8, #328ee6);
  }

  .combo-5 {
    background: linear-gradient(to right, #fad961, #f99b44);
  }

  .combo-6 {
    background: linear-gradient(to right, #c2c2c2, #6b7278);
  }

  .combo-7 {
    background: linear-gradient(to top, #fd7d96, #fea196);
  }

  /* Animations */
  @keyframes scale-pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  /* See More Button */
  .see-more-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
  }

  .see-more-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
  }

  /* Remover hover amarelo - manter só branco */
  .see-more-btn:hover {
    color: #fff;
  }

  /* Tamanho fixo dos ícones (chevron) nos botões "Ver mais" */
  .see-more-btn .lucide,
  .see-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
  }

  /* Girar o chevron quando o botão estiver no estado 'up' (Ver menos) */
  .see-more-btn.up .lucide,
  .see-more-btn.up svg {
    transform: rotate(180deg);
  }

  /* Garantir que o botão apareça em todos os dispositivos - sem alterar estilo */
  @media (max-width: 768px) {
    .see-more-container {
      display: flex !important;
      justify-content: flex-end;
      margin-top: 1.5rem;
    }
    
    .see-more-btn {
      display: flex !important;
    }
  }

  /* Prizes Section */
  .prizes-section {
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prizes-column,
  .titles-column {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Titles Section - agora independente */
  .titles-section {
    margin-bottom: 2.5rem;
  }

  .prizes-container,
  .titles-container {
    background: #111827;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }

  .prizes-list,
  .titles-list {
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding-right: 0.5rem;
  }

  .prizes-list.expanded,
  .titles-list.expanded {
    max-height: none;
    overflow: visible;
  }

  /* Custom Scrollbar */
  .prizes-list::-webkit-scrollbar,
  .titles-list::-webkit-scrollbar {
    width: 8px;
  }

  .prizes-list::-webkit-scrollbar-track,
  .titles-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .prizes-list::-webkit-scrollbar-thumb,
  .titles-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

  .prizes-list::-webkit-scrollbar-thumb:hover,
  .titles-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  /* Prize Cards */
  .prize-card {
    position: relative;
    background: #374151;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0.6rem;
    display: flex;
    flex-direction: column;
  }

  /* Responsividade para prize-cards */
  @media (max-width: 390px) {
    .prizes-list {
      display: grid;
      grid-template-columns: 1fr; /* 1 por linha */
      row-gap: 0.75rem;           /* espaçamento entre cards controlado pelo grid */
      /* manter max-height e overflow padrão (320px/hidden) definidos acima */
    }
    
    .prize-card {
      width: 100%;
      margin-bottom: 0;       /* grid já cuida do espaçamento */
    }
  }

  .prize-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
  }

  .prize-card.available .prize-indicator {
    background: #328ee6;
  }

  /* Prêmio já sorteado - fundo verde (mesmo tom dos títulos) */
  .prize-card.won {
    background-color: rgb(25, 135, 84) !important;
  }

  .prize-card.won .prize-title {
    color: #fff !important;
  }

  /* Primeira linha: título à esquerda, status à direita */
  .prize-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.5rem;
    padding-left: 1.25rem;
  }

  .prize-content {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .prize-title {
    font-size: .8rem;
    color: #fff;
    margin: 0;
  }

  /* Segunda linha: ganhador à esquerda */
  .prize-winner-section {
    padding: 0 0.75rem 0.75rem 1.25rem;
  }

  .prize-winner {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
  }

  .prize-winner span {
    color: #22c55e;
    font-weight: 500;
  }

  /* Nome do ganhador nos prêmios - sem fundo verde, só texto branco com troféu */
  .prize-winner-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    height: 28px;
    box-sizing: border-box;
    background: transparent;
    color: #fff;
  }

  .status-badge-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
  }

  .status-badge-list.available {
    background: #6b7280;
    color: #fff;
  }

  .status-badge-list.won {
    background: transparent;
    color: #fff;
  }

  /* Title Cards */
  .titles-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0.2rem;
    max-height: 320px;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .titles-list li.badge {
    width: 100% !important;
    color: #fff;
    background: #374151;
    background-image: none;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 0;
    overflow: hidden;
    padding: 0.3rem;
    border-radius: 8px;
    margin: 0 4px;
  }




  /* Estilos específicos para badges da branch upsell */
  .titles-list .badge-group {
    font-size: .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .titles-list .badge-group span {
    margin: 0;
    padding: 5px;
    color: #fff;
  }

  .titles-list .badge-group .awarded_number {
    height: 22px;
    line-height: 0;
    border-radius: 6px;
    cursor: default;
    align-items: center;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    padding: 0px 8px;
    font-size: 0.75rem;
    font-family: Montserrat, "Public Sans", sans-serif;
    font-weight: 700;
    background-color: #6b7280;
    color: #fff;
    min-width: 15%;
    max-width: 30%;
  }

  .titles-list .badge-group .awarded_value,
  .titles-list .badge-group .awarded_name {
    font-weight: bold;
    color: #ffffff;
  }
  
  /* Estados dos títulos premiados */
  .titles-list .aw-blocked {
    background-color: rgb(25, 135, 84) !important;
  }

  .titles-list .aw-blocked span {
    color: #FFFFFF;
  }

  .titles-list .aw-blocked .awarded_number {
    background-color: #6b7280 !important;
    color: #fff;
  }

  .titles-list .aw-available .awarded_number {
    background-color: #6b7280 !important;
    color: #fff;
  }

  /* Tags específicas para títulos premiados */
  .titles-list .status-badge-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    height: 28px;
    box-sizing: border-box;
  }

  .titles-list .status-badge-list.available {
    background: #6b7280;
    color: #fff;
  }

  .titles-list .status-badge-list.won {
    background: #064e3b;
    color: #6ee7b7;
  }

  /* Nome do ganhador nos títulos - sem fundo */
  .titles-list .winner-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    height: 28px;
    box-sizing: border-box;
    background: #6b7280; /* igual à .status-badge-list.available no dark */
    color: #fff;
  }

  /* Título já premiado: remover fundo e formato de badge do nome do ganhador (dark) */
  .titles-list .aw-blocked .winner-name,
  .titles-list .aw-won .winner-name {
    background: transparent !important;
    color: #fff !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-width: 0 !important;
    height: auto !important;
  }

  /* Buyers Section */
  .buyers-section {
    margin-bottom: 2.5rem;
  }

  .buyers-container {
    background: #111827;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    padding: 1rem;
  }

  .buyers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .buyer-card {
    background: #374151;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border-left: 4px solid #6b7280;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
    width: calc(20% - 0.6rem) !important;
    max-width: calc(20% - 0.6rem) !important;
    flex: 0 0 calc(20% - 0.6rem) !important;
    min-width: 0;
  }

  .buyer-card.first {
    border-left-color: #fbbf24;
  }

  .buyer-card.second {
    border-left-color: #9ca3af;
  }

  .buyer-card.third {
    border-left-color: #d97706;
  }

  .buyer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }

  .buyer-position {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.25rem;
  }

  .buyer-card.first .buyer-position {
    color: #f59e0b;
  }

  .buyer-card.second .buyer-position {
    color: #9ca3af;
  }

  .buyer-card.third .buyer-position {
    color: #d97706;
  }

  .buyer-card:not(.first):not(.second):not(.third) .buyer-position {
    color: #9ca3af;
  }

  .buyer-medal {
    position: absolute;
    right: 0.18rem;
    font-size: 3rem;
  }

  .buyer-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .buyer-stats {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0.5rem;
  }

  .buyer-label {
    color: #9ca3af;
    font-size: 0.75rem;
  }

  .buyer-count {
    font-weight: bold;
    font-size: 0.875rem;
  }

  .buyer-card.first .buyer-count {
    color: #fbbf24;
  }

  .buyer-card.second .buyer-count {
    color: #d1d5db;
  }

  .buyer-card.third .buyer-count {
    color: #d97706;
  }

  .buyer-card:not(.first):not(.second):not(.third) .buyer-count {
    color: #d1d5db;
  }

  /* Responsividade para maiores compradores - Tablet */
  @media (max-width: 768px) and (min-width: 481px) {
    .buyers-grid {
      gap: 0.5rem;
      flex-direction: row;
    }
    
    .buyer-card {
      width: calc(50% - 0.25rem) !important;
      max-width: calc(50% - 0.25rem) !important;
      flex: 0 0 calc(50% - 0.25rem) !important;
    }
  }

  /* Responsividade para maiores compradores - Mobile */
  @media (max-width: 480px) {
    .buyers-grid {
      gap: 0.5rem;
      flex-direction: column;
    }
    
    .buyer-card {
      max-width: 100%;
      width: 100%;
    }
  }

  /* Layout horizontal para números em tablet/mobile */
  @media (max-width: 768px) {
    .buyer-stats {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }

  /* Container: padding lateral por breakpoint */
  /* Base (tablet/desktop) */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mobile (≤480px) */
  @media (max-width: 480px) {
    .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }

  /* Rifinhas - Tablet: 2 por linha (481–768px) */
  @media (max-width: 768px) and (min-width: 481px) {
    .rifinhas-section .rifinhas-grid {
      gap: 0.75rem;
      flex-direction: row;
    }
    .rifinhas-section .rifinhas-grid > .rifinha-card {
      box-sizing: border-box;
      margin: 0 !important;
      width: calc(50% - 0.375rem) !important;
      max-width: calc(50% - 0.375rem) !important;
      flex: 0 0 calc(50% - 0.375rem) !important;
      display: block;
    }
  }

  /* Rifinhas - Mobile: 1 por linha (≤480px) */
  @media (max-width: 480px) {
    .rifinhas-section .rifinhas-grid {
      gap: 1rem;
      flex-direction: column;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .rifinhas-section .rifinhas-grid > .rifinha-card {
      box-sizing: border-box;
      margin: 0  !important;
      width: 100% !important;
      max-width: 100% !important;
      flex: 1 0 100% !important;
      display: block;
    }
  }

  @media (max-width: 390px) {
    .buyers-grid {
      gap: 0.5rem;
      flex-direction: column;
    }
    
    .buyer-card {
      max-width: 100%;
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .buyers-grid {
      gap: 0.4rem;
      flex-direction: column;
    }
    
    .buyer-card {
      min-width: 100%;
      max-width: 100%;
      width: 100%;
      padding: 0.5rem;
    }
    
    .buyer-name {
      font-size: 0.75rem;
    }
    
    .buyer-count {
      font-size: 0.85rem;
    }
    
    /* Layout horizontal para números em mobile */
    .buyer-stats {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }

  @media (max-width: 390px) {
    .buyers-grid {
      gap: 0.5rem;
    }
    
    .buyer-card {
      min-width: 100%;
      max-width: 100%;
      width: 100%;
      flex: none;
    }
  }

  /* Accordion Section */
  .accordion-section {
    margin-bottom: 2.5rem;
  }

  .accordion-item {
    border: 1px solid #374151;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .accordion-header {
    background: #111827;
    border: none;
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #fff;
  }

  .accordion-header:hover {
    background: #374151;
  }

  .accordion-header.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .accordion-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .accordion-title .icon,
  .accordion-title i {
    color: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
  }

  .accordion-title h2 {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .accordion-icon {
    transition: transform 0.3s;
  }

  .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
  }

  .accordion-content {
    background: rgba(17, 24, 39, 0.5);
    padding: 0.75rem 1rem;
    display: none;
    transition: all 0.3s ease;
  }

  .accordion-content.active {
    display: block;
    max-height: 500px;
    overflow-y: auto;
  }

  .accordion-text {
    max-width: none;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.5rem;
  }

  .accordion-text::-webkit-scrollbar {
    width: 8px;
  }

  .accordion-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .accordion-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

  .accordion-text::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  .accordion-text p {
    color: #d1d5db;
    margin-bottom: 1rem;
  }

  .accordion-text h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 0.5rem;
  }

  .accordion-text ul {
    list-style: disc;
    list-style-position: inside;
    color: #d1d5db;
    margin-bottom: 1rem;
  }

  .accordion-text li {
    margin-bottom: 0.25rem;
  }

  .prizes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .prize-item {
    background: #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #4b5563;
  }

  /* Responsividade para premiação */
  @media (max-width: 576px) {
    .prizes-grid {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }
    
    .prize-item {
      width: 100%;
      padding: 0.75rem;
    }
  }

  .prize-item h3 {
    color: #f59e0b;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .prize-item p {
    color: #fff;
  }

  /* Rifinhas Section */
  .rifinhas-section {
    margin-bottom: 2.5rem;
  }

  .rifinhas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .rifinha-card {
    background: #111827;
    border: 1px solid #374151;
    color: #fff;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: block;
    width: calc(20% - 0.6rem) !important;
    max-width: calc(20% - 0.6rem) !important;
    flex: 0 0 calc(20% - 0.6rem) !important;
    min-width: 0;
  }

  .rifinha-card:hover {
    background: #374151;
  }

  /* Forçar layout desktop rifinhas (5 por linha) com alta especificidade */
  @media (min-width: 769px) {
    .rifinhas-section .rifinhas-grid {
      gap: 0.75rem;
    }
    .rifinhas-section .rifinhas-grid > .rifinha-card.rifinha-card {
      box-sizing: border-box;
      display: block;
      width: calc(20% - 0.6rem) !important;
      max-width: calc(20% - 0.6rem) !important;
      flex: 0 0 calc(20% - 0.6rem) !important;
      min-width: 0;
    }
  }

  .rifinha-image {
    aspect-ratio: 16 / 9;
    background: #4b5563;
    position: relative;
    overflow: hidden;
  }

  .rifinha-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rifinha-content {
    padding: 1.5rem 1rem;
  }

  .rifinha-title span {
    color: #fff;
    font-weight: bold;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase; 
  }

  .rifinha-price {
    color: #f87171;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
  }

  /* Contact Section */
  .contact-section {
    margin-bottom: 2.5rem;
  }

  .contact-container {
    border-radius: 0.5rem;
    border: 1px solid #374151;
    padding: 2rem;
    text-align: center;
  }

  .contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
  }

  .phone-icon {
    width: 4rem;
    height: 4rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .phone-icon i {
    color: #fff;
    width: 2rem;
    height: 2rem;
  }

  .contact-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
  }

  .contact-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .highlight {
    color: #ef4444;
  }

  .contact-name {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .contact-label {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .contact-link {
    display: inline-block;
    color: #3b82f6;
    font-weight: 500;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-link:hover {
    color: #60a5fa;
  }

  /* Responsive Design */
  @media (min-width: 640px) {
    .promotion-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .section-header {
      flex-direction: row;
      align-items: center;
    }

    .section-title-container h2 {
      font-size: 1.2rem;
    }

    .section-title-icon {
      color: #fbbf24;
      font-size: 1.5rem;
      font-weight: 500;
    }

    .section-subtitle {
      font-size: .875rem;
    }
  }

  @media (min-width: 768px) {
    .desktop-nav {
      display: block;
    }

    .mobile-menu {
      display: none;
    }

    .logo {
      height: 80px;
      width: 150px;
    }

    .page-title {
      font-size: 1.7rem;
    }

    .product-section {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1.5rem;
    }

    .carousel-wrapper {
      height: 536px;
    }

    .purchase-form {
      height: 536px;
    }

    /* Mantém o grid original que funciona bem no desktop */
    .automate_buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-top: 2px;
    }

    .automate_buttons .add-numbers {
      font-size: 1rem;
    }

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

    /* .prizes-section {
      grid-template-columns: 1fr 1fr;
    } */

    /* .titles-column {
      margin-top: 0;
    } */

    .buyers-grid .buyer-card {
      max-width: calc(20% - 0.6rem) !important;
      width: calc(20% - 0.6rem) !important;
      flex: 0 0 calc(20% - 0.6rem) !important;
      min-width: 0;
    }

    .buyer-stats {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }

    .buyer-count {
      font-size: 1rem;
    }

    .accordion-header {
      padding: 0.75rem 1.5rem;
    }

    .accordion-content {
      padding: 1.5rem;
    }

    .accordion-text {
      padding-right: 1rem;
    }

    .section-title-container i {
      width: 1.25rem;
      height: 1.25rem;
    }

    .accordion-title .icon,
    .accordion-title i {
      width: 1.25rem;
      height: 1.25rem;
    }

    .accordion-title h2 {
      font-size: 1.25rem;
    }
  }

  /* Media query para desktop grande - mantém comportamento original */
  @media (min-width: 1024px) {
    .automate_buttons .add-numbers {
      font-size: 1rem;
    }
  }

  /* Responsividade para títulos premiados */
  @media (min-width: 768px) and (max-width: 1200px) {
    .titles-list .title-card {
      min-width: 160px !important;
    }
  }

  @media (max-width: 700px) {
    .titles-list {
      padding: 0 !important;
    }
  }

  @media (max-width: 767px) {
    .combos-container {
      max-height: 350px;
    }

    .titles-column {
      margin-top: 2rem;
    }

    /* Mobile mantém o grid mas com fonte menor como no original */
    .automate_buttons .add-numbers {
      font-size: 1rem;
    }
  }

  /* Media query específica para dispositivos muito pequenos */
  @media (max-width: 480px) {
    .automate_buttons .add-numbers {
      font-size: 0.9rem;
    }
  }

  /* Responsividade para Product Section Type 1 - quebrar grid no mobile */
  @media (max-width: 767px) {
    .product-section:not(.carousel-type-0) {
      display: flex !important;
      flex-direction: column !important;
      gap: 1.5rem !important;
    }
    
    .product-section:not(.carousel-type-0) .purchase-form {
      width: 100% !important;
      max-width: none !important;
    }
    
    /* Reduzir padding lateral no mobile - manter só o top */
    .main-content {
      padding: 1.5rem 0 !important;
    }
  }

  /* Mobile e Tablet: carousel type 0 ocupa 100% */
  @media (max-width: 1023px) {
    .product-section.carousel-type-0 {
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .product-section.carousel-type-0 .purchase-form {
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  }
}

/* Float Media Buttons - Estilos globais para a página rifa-automate */
.dark .rifa-automate-page .btn-ctt-whatsapp,
.dark .rifa-automate-page .btn-ft-whatsapp {
  width: 60px;
  height: 45px;
  z-index: 1000;
}

.dark .rifa-automate-page #float_media.visible {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.dark .rifa-automate-page #float_media {
  align-content: space-around;
  right: 0;
  bottom: 90px;
  position: fixed;
  opacity: 0;
  visibility: hidden;
}

.dark .rifa-automate-page #float_media a {
  position: relative;
  display: block;
}

.dark .rifa-automate-page #float_media a img {
  position: fixed;
  right: 5px;
}

.dark .rifa-automate-page .telegram_msg_ctt,
.dark .rifa-automate-page .wa_msg_ctt,
.dark .rifa-automate-page .wa_msg {
  cursor: pointer;
  right: 45px;
  background: #29b301;
  color: #fff;
  position: fixed;
  width: 100px;
  font-size: 12px;
  line-height: 14px;
  padding: 6px 2px;
  border-radius: 10px 0px 0px 10px;
  z-index: 100;
  text-align: center;
  font-weight: bold;
}

.dark .rifa-automate-page .telegram_msg_ctt {
  background: #61a8de;
  color: #fff;
}
