/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: #000;
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #FFD600;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-icon:hover span {
    background-color: #fff;
}

/* Mobile Menu Popup */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 1000;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.menu-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    padding: 1rem 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.menu-item svg {
    flex-shrink: 0;
}

.exit-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
    color: #000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100% - 2rem);
    margin: 1rem;
    border-radius: 12px;
    font-size: 1rem;
}

.exit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.exit-btn svg {
    flex-shrink: 0;
}

/* Banner */
.banner {
    position: relative;
    height: 45vh;
    min-height: 350px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFD600;
    border-color: #FFD600;
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.banner-overlay {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 5;
}

.banner-content {
    text-align: left;
    max-width: 600px;
}

.banner-title {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Progress Bar */
.progress-bar {
    background-color: #333;
    height: 25px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 10;
}

.progress-fill {
    background: linear-gradient(90deg, #FFD600 0%, #FFA500 100%);
    height: 100%;
    width: 36%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 36%; }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid #FFD600;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
}

/* Main Content */
.main-content {
    padding: 0.5rem 0;
}

/* Sorteio Info */
.sorteio-info {
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 16px;
    border: 1px solid #333;
}

.single-line-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD600;
    margin: 0;
    line-height: 1.2;
}

/* Title Selection */
.title-selection {
    margin-bottom: 0.5rem;
    padding-top: 0.8rem;
}

.title-selection h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.title-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-top: 0.6rem;
}

.title-block {
    flex: none;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 0.8rem 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-block:hover {
    border-color: #FFD600;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
    background: linear-gradient(135deg, #333 0%, #444 100%);
}

.title-block.popular {
    background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
    color: #000;
    border-color: #FFD600;
    transform: scale(1.02);
}

.title-block.popular:hover {
    transform: scale(1.05) translateY(-2px);
    background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
    box-shadow: 0 12px 30px rgba(255, 214, 0, 0.4);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD600;
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.block-number {
    display: block;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.block-btn {
    background: transparent;
    border: 2px solid currentColor;
    color: inherit;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 80px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-block:hover .block-btn {
    background-color: #FFD600;
    color: #000;
    border-color: #FFD600;
}

.title-block.popular .block-btn {
    background-color: #000;
    color: #FFD600;
    border-color: #000;
}

.title-block.popular:hover .block-btn {
    background-color: #000;
    color: #FFD600;
    border-color: #000;
}

/* Custom Quantity */
.custom-quantity {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 16px;
  padding: 0.8rem;
  margin-bottom: 1rem;
    border: 1px solid #333;
}

.custom-quantity h3 {
    text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
    font-weight: 600;
}

.bottom-controls {
    display: flex;
  justify-content: center;
    align-items: center;
  gap: 0.5rem;
}

.title-block.popular {
  overflow: visible !important;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  padding: 0;
  border-radius: 12px;
  flex: none;
  border: 1px solid #ddd;
  overflow: hidden;
}

.qty-btn {
  background: white;
    color: #000;
    border: none;
    border-right: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:last-child {
  border-right: none;
  border-left: 1px solid #ddd;
}
.qty-btn:hover {
  background: #f5f5f5;
}

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

#quantityInput {
  background: transparent;
  border: none;
  color: #000;
  padding: 0;
  font-size: 1rem;
    font-weight: 700;
    text-align: center;
  width: 60px;
  height: 40px;
    transition: all 0.3s ease;
}

#quantityInput:focus {
    outline: none;
}

.participate-section {
  flex: none;
}

.total-value {
  display: none;
}

.quantity-info {
  display: none;
}

/* Participate Button */
.participate-btn {
    background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
    color: #000;
    border: none;
  padding: 0;
  height: 40px;
  border-radius: 12px;
  font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  gap: 0.5rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
  min-width: 160px;
  padding: 0 1rem;
}

.btn-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    line-height: 1;
}

.btn-text-container span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-text-container span:last-child {
    font-size: 0.9rem;
    font-weight: 800;
}

.participate-btn:hover {
    transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.5);
}

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

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.story-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 1.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-toggle:hover {
    background: rgba(255, 214, 0, 0.1);
}

.story-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.story-title {
    flex: 1;
    text-align: left;
    margin-left: 0.5rem;
}

.story-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #FFD600;
}

.story-arrow.rotated {
    transform: rotate(180deg);
}

.story-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.3);
}

.story-content.expanded {
    max-height: 1000px;
    transition: max-height 0.6s ease-in;
}

.story-text {
    padding: 2rem 1rem;
    color: #fff;
    line-height: 1.7;
}

.story-text h3 {
    color: #FFD600;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-text p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-align: justify;
}

.story-text p:last-child {
    margin-bottom: 0;
    text-align: center;
    color: #FFD600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .story-toggle {
        padding: 1.2rem 0.8rem;
        font-size: 1rem;
    }
    
    .story-text {
        padding: 1.5rem 0.8rem;
    }
    
    .story-text h3 {
        font-size: 1.1rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* Instagram CTA */
.instagram-cta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-cta:hover {
    transform: scale(1.02);
}

.cta-content {
    max-width: 400px;
    margin: 0 auto;
}

.instagram-icon {
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

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

.instagram-cta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #444;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.3s ease-out;
}

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

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #444;
}

.popup-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #444;
    color: #fff;
}

.popup-content {
    padding: 2rem;
}

.popup-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.popup-description strong {
    color: #FFD600;
}

.popup-form-fild {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 1rem;
    background: #111;
    border: 2px solid #444;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #FFD600;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.2);
}

.form-field input::placeholder {
    color: #888;
}

.error-message {
    background-color: #FF4444;
    color: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: none;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message.show {
    display: block;
}

.finalize-btn {
    background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.finalize-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.account-btn {
    background: transparent;
    color: #ccc;
    border: 2px solid #444;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-btn:hover {
    border-color: #666;
    color: #fff;
}

/* Login Popup Styles */
.login-popup {
    max-width: 400px;
    width: 90%;
}

.login-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-header svg {
    color: #FFD600;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-field {
    position: relative;
}

.login-form label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.login-form input {
    width: 100%;
    padding: 1rem;
    background: #111;
    border: 2px solid #444;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #FFD600;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.2);
}

.login-form input::placeholder {
    color: #888;
}

.continue-btn {
    background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 40vh;
        min-height: 280px;
    }
    
    .banner-overlay {
        bottom: 3px;
        padding: 0.8rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .banner-overlay {
        padding: 1rem 0.5rem;
    }
    
    .banner-title {
        font-size: clamp(1rem, 3.5vw, 1.8rem);
    }
    
  .title-blocks {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    }
    
    .title-block {
        padding: 0.8rem 0.4rem;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
  .block-number {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        font-weight: 800;
  }
  
  .block-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        font-weight: 600;
        width: 100%;
        max-width: 120px;
  }
  
  .bottom-controls {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
  }
  
  .quantity-controls {
    flex: none;
    min-width: 0;
  }
  
  .participate-section {
    flex: none;
    min-width: 0;
    flex: 1;
    max-width: calc(100% - 140px);
  }
  
  .participate-btn {
    min-width: 160px;
    height: 50px;
    padding: 0 0.8rem;
    font-size: 0.9rem;
  }
    
    
    .popup {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.3rem;
        padding: 0.2rem 0;
        border-bottom: 1px solid #333;
    }
    
    .info-item:last-of-type {
        border-bottom: none;
        margin-bottom: 0.5rem;
    }
    
    .info-subtitle {
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }
    
    .main-content {
        padding: 0.3rem 0;
    }
    
    .sorteio-info {
        margin-bottom: 0.3rem;
        padding: 0.3rem;
    }
    
    .single-line-info {
    }
    
    .progress-fill {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 35vh;
        min-height: 240px;
    }
    
    .banner-overlay {
        bottom: 2px;
        padding: 0.6rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-indicators {
        bottom: 8px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .banner-title {
        font-size: clamp(0.9rem, 3vw, 1.5rem);
    }
    
    .progress-bar {
        height: 22px;
        position: relative;
        display: flex;
        width: 100%;
        margin: 0;
    }
    
    .progress-fill {
        font-size: 0.8rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
  .title-blocks {
    gap: 0.4rem;
    }
    
    .title-block {
    padding: 0.3rem 0.2rem;
    }
    
  .block-number {
    font-size: 1.1rem;
  }
  
  .block-btn {
    font-size: 0.65rem;
    padding: 0.2rem 0.3rem;
    }
    
  .bottom-controls {
    gap: 0.3rem;
  }
  
  .qty-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  #quantityInput {
    width: 70px;
    height: 45px;
    font-size: 1rem;
  }
  
  .participate-btn {
    height: 40px;
    min-width: 120px;
    max-width: 100%;
    font-size: 0.9rem;
    padding: 0 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .quantity-controls {
    border-radius: 8px;
  }
  
  .participate-btn {
    border-radius: 8px;
  }
  
  .custom-quantity {
    overflow: hidden;
  }
    
    .instagram-cta {
        padding: 1rem 0.5rem;
    }
    
    .instagram-cta h3 {
        font-size: 1rem;
    }
    
    .instagram-cta p {
        font-size: 0.8rem;
    }
    
    .progress-bar {
        height: 22px;
    }
}

.form-field {
  margin-bottom: 12px; /* espaço entre os campos */
}

#nomeCompleto,
#cpf,
#email,
#telefone {
  width: 100%;
  padding: 12px 16px;
  background-color: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: border 0.3s;
  box-sizing: border-box;
}

#nomeCompleto::placeholder,
#cpf::placeholder,
#email::placeholder,
#telefone::placeholder {
  color: #aaaaaa;
}

#nomeCompleto:focus,
#cpf:focus,
#email:focus,
#telefone:focus {
  border-color: #f9a825;
}

/* Botão principal */
button.finalize-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 270px;
  max-width: 90%;
  margin: 12px auto 0 auto;
  padding: 14px 20px;

  background-color: #FFC107;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button.finalize-btn:hover {
  background-color: #ffb300;
}

button.finalize-btn svg {
  stroke: #000000;
}

/* Botão secundário */
button.account-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 270px;
  max-width: 90%;
  margin: 12px auto 0 auto;
  padding: 14px 20px;

  background-color: transparent;
  border: 1px solid #5a5a5a;
  color: #cccccc;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button.account-btn:hover {
  background-color: #2a2a2a;
  color: #ffffff;
}