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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/liberdade_financeira_hero.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(20,20,20,0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.accent {
    color: #ffd700;
    font-weight: 700;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.cta-container {
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

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

.guarantee-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text i {
    color: #4CAF50;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.problem-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.problem-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.problem-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.problem-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.problem-cta p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Author Section */
.author-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.author-image {
    position: relative;
    text-align: center;
}

.author-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.author-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.author-info h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.author-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.author-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.author-credentials {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.credential i {
    color: #ffd700;
}

/* Method Section */
.method-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.method-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.method-intro h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.method-intro p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.method-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.benefit i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.benefit h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffd700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.testimonial-rating {
    margin-left: auto;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.testimonial-result {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.result-label {
    font-weight: 600;
    color: #ffd700;
}

.result-value {
    font-weight: 700;
    color: #ffffff;
}

/* Program Section */
.program-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.days-container {
    max-width: 900px;
    margin: 0 auto;
}

.day-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.day-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.day-number {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.day-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.day-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-style: italic;
}

.day-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.day-content ul {
    list-style: none;
    padding: 0;
}

.day-content li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.day-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffd700;
}

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

.timer-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffd700;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
}

.timer-label {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-comparison {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-item {
    text-align: center;
}

.old-price .price-value {
    font-size: 2rem;
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price .price-value {
    font-size: 3rem;
    color: #ffd700;
    font-weight: 800;
}

.price-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.savings-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.savings-highlight p {
    font-size: 1.3rem;
    color: #4CAF50;
    font-weight: 600;
}

.savings-amount {
    color: #ffd700;
    font-weight: 800;
}

.bonus-section {
    margin-bottom: 3rem;
}

.bonus-section h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffd700;
}

.bonus-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-item i {
    font-size: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.bonus-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.bonus-content p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.bonus-value {
    color: #4CAF50;
    font-weight: 600;
}

.bonus-total {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ffd700;
}

.bonus-total-value {
    color: #ffd700;
    font-weight: 800;
    font-size: 1.2rem;
}

.final-offer {
    text-align: center;
    margin-bottom: 3rem;
}

.final-offer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.offer-description {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cta-section {
    text-align: center;
}

.main-cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 2rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    margin-bottom: 2rem;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #e0e0e0;
}

.feature i {
    color: #4CAF50;
}

.payment-security {
    font-size: 1rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-security i {
    color: #4CAF50;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.guarantee-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.guarantee-promise {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    margin: 2rem 0;
}

.guarantee-stats {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.guarantee-conclusion {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #ffd700;
}

.final-cta-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffd700;
}

.decision-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.decision-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.path {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.left-path {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.right-path {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.path h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.left-path h3 {
    color: #ff6b6b;
}

.right-path h3 {
    color: #ffd700;
}

.path p {
    color: #e0e0e0;
    line-height: 1.6;
}

.decision-highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #ffd700;
}

.decision-highlight p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.final-message {
    color: #ffd700 !important;
    font-weight: 700;
}

.final-cta-container {
    text-align: center;
}

.final-cta-container h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ff6b6b;
}

.final-cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 2rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-quote {
    margin-bottom: 2rem;
}

.footer-quote p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.prosperity-message {
    color: #ffd700 !important;
    font-weight: 700;
}

.footer-author p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.footer-author p:first-child {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-stats {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .day-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .paths {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cta-button,
    .main-cta-button,
    .final-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .final-price {
        font-size: 3rem;
    }
    
    .timer-item {
        padding: 0.8rem 1rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

