/* Custom CSS for Balcão Start */
:root {
    --primary-color: #b58c2c;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --section-bg: #F7F7F7;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.cta-button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.cta-button:hover {
    background-color: #a17a25 !important;
    border-color: #a17a25 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.main-cta {
    font-size: 1.1rem;
    padding: 15px 40px;
    margin-bottom: 2rem;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.benefit-item i {
    color: #28a745;
}

/* Video Section */
.video-container {
    margin: 2rem 0;
}

.video-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(181, 140, 44, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid white;
}

.play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.pain-section, .benefits-section, .faq-section, .founder-section {
    background-color: var(--section-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Pain Points Section */
.pain-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Solution Section */
.solution-content {
    padding-right: 2rem;
}

.solution-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.solution-image {
    position: relative;
}

.image-caption {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Screenshots Section */
.screenshots-section {
    background-color: white;
}

.screenshot-category {
    height: 100%;
}

.screenshot-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.screenshots-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-item {
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.02);
}

.screenshot-item img {
    max-height: 250px;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Strategies Section */
.strategies-section {
    background-color: white;
}

.strategy-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.strategy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d4a835);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(181, 140, 44, 0.3);
}

.strategy-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

.strategy-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.strategy-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.strategy-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 60px;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Profit Section */
.profit-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.profit-card:hover {
    transform: translateY(-5px);
}

.profit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profit-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.profit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1rem;
    font-style: italic;
    color: #666;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Founder Section */
.founder-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 2rem;
    object-fit: cover;
}

.founder-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.founder-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 0;
}

/* Payment Options */
.payment-option-container {
    margin-bottom: 2rem;
}

.payment-option {
    background: white;
    border: 3px solid #ddd;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option.best-choice {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.payment-option h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.credit-card-option .btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.pix-option .best-choice-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(181, 140, 44, 0.3);
}

.qr-code-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pix-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.pix-info p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.pix-info p:last-child {
    margin-bottom: 0;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a17a25 100%);
    color: white;
}

.urgency-section .section-title {
    color: white;
}

.countdown-container {
    margin: 2rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    min-width: 100px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Offer Section */
.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.pricing-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-body {
    padding: 2.5rem;
}

.price-options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    gap: 2rem;
}

.price-option {
    text-align: center;
    flex: 1;
}

.price-option h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Best Choice Badge */
.price-option.best-choice {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    box-shadow: 0 5px 20px rgba(181, 140, 44, 0.2);
}

.best-choice-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(181, 140, 44, 0.3);
}

.best-choice-badge i {
    font-size: 0.8rem;
}

.benefits-list {
    margin: 2rem 0;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefits-list .benefit-item i {
    color: #28a745;
    font-size: 1.2rem;
    min-width: 20px;
}

.payment-buttons {
    text-align: center;
    margin-top: 2rem;
}

.pix-payment {
    background: var(--section-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.pix-payment h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pix-info p {
    margin-bottom: 0.5rem;
}

.guarantee {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    border-left: 4px solid #28a745;
}

.guarantee i {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: var(--text-color);
    background-color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(181, 140, 44, 0.25);
}

/* Footer */
.footer-section {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimers {
    border-top: 1px solid #555;
    padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pain-card, .benefit-card, .profit-card {
        margin-bottom: 2rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .price-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .solution-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .main-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .pricing-body {
        padding: 1.5rem;
    }
    
    .founder-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-video {
        height: 200px;
    }
    
    .strategy-card {
        padding: 2rem 1.5rem;
    }
    
    .strategy-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .strategy-icon i {
        font-size: 2rem;
    }
    
    .strategy-card h3 {
        font-size: 1.25rem;
    }
    
    .payment-option {
        padding: 1.5rem;
    }
    
    .payment-option h5 {
        font-size: 1.25rem;
    }
    
    .qr-code-img {
        max-width: 150px;
    }
    
    .pix-info {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation for Countdown */
.countdown-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
