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

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
    height: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    white-space: nowrap;
    margin: 0 -20px;
}

.banner-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll-banner 25s linear infinite;
    width: fit-content;
}

.banner-content span {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    white-space: nowrap;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    margin: 0 20px;
    position: relative;
}



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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 1.625rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.625rem;
    color: #ffc107;
    text-align: center;
    margin-bottom: 8px;
}

/* Specific title styles */
.problem h2,
.video-testimonials h2,
.pricing h2,
.faq h2 {
    color: #ffffff !important;
}

.problem h2 .highlight,
.video-testimonials h2 .highlight,
.pricing h2 .highlight,
.faq h2 .highlight {
    color: #ffc107 !important;
}

h3 {
    font-size: 1.625rem;
    color: #ffc107;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.btn-secondary:hover {
    background: #ffc107;
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-outline:hover {
    background: #333333;
    color: #ffc107;
    border-color: #ffc107;
}

.btn-large {
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 120px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 10px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    text-align: center;
    margin-bottom: 1rem;
}

.main-image {
    max-width: 30%;
    height: auto;
    border-radius: 15px;
}

.hero-title {
    font-size: 1.625rem;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.hero-title .highlight {
    color: #ffc107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #cccccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-video .video-container {
    max-width: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    border: 2px solid #333333;
    transition: border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1);
}

.hero-video .video-container:hover {
    border-color: #ffc107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 13px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator:hover {
    opacity: 1;
}

@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 {
    padding: 50px 0;
    background: #000000;
}

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

.problem-item {
    background: #1a1a1a;
    padding: 0;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 380px;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
}

.problem-icon {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.problem-icon img {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    vertical-align: top !important;
    border: none !important;
    outline: none !important;
}

.problem-item h3 {
    color: #ffffff;
    margin: -40px 0 0.8rem 0;
    padding: 0 1rem;
}

.problem-item p {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #000000;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits {
    margin-top: 2rem;
}

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

.check {
    color: #ffc107;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.solution-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #000000;
}

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

.feature {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 50px 0;
    background: #000000;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    border: 2px solid #333333;
    transition: border-color 0.3s ease;
}

.video-container:hover {
    border-color: #ffc107;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}



/* Pricing Section */
.pricing {
    padding: 50px 0;
    background: #000000;
}

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

.plan {
    background: linear-gradient(145deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.plan:hover::after {
    opacity: 1;
}

.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #333333, #444444, #333333);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.plan:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.15);
}

.plan:hover::before {
    background: linear-gradient(135deg, #ffc107, #ffb300, #ffc107);
}

.plan.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.3);
}

.plan.featured::before {
    background: linear-gradient(135deg, #ffc107, #ffb300, #ffc107);
}

.plan.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 25px 80px rgba(255, 193, 7, 0.4);
}

.plan-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000000;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.plan-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.plan:hover .plan-badge::before {
    left: 100%;
}

.plan-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #333333;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 50%, transparent 100%);
    position: relative;
    z-index: 2;
}

.plan-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.5), transparent);
}

.plan-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-original {
    margin-bottom: 0.5rem;
}

.price-from {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.old-price {
    color: #ff0000;
    text-decoration: line-through;
}

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

.currency {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    color: #00ff00;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0.25rem;
}

.period {
    color: #cccccc;
    font-size: 0.9rem;
}

.plan-features {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.04) 0%, rgba(255, 193, 7, 0.01) 50%, transparent 100%);
    position: relative;
    z-index: 2;
}

.plan-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.plan-features .feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.9rem 1.2rem;
    margin-bottom: 0.6rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.plan-features .feature:last-child {
    margin-bottom: 0;
}

.plan-features .feature:hover {
    transform: translateX(8px) translateY(-2px);
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
}

.plan-features .feature::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff41 0%, #00cc33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    box-shadow: 0 3px 12px rgba(0, 255, 65, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.plan-features .feature:hover::before {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.6);
}

.plan-features .feature.feature-blocked {
    color: #888888;
    opacity: 0.7;
    background: rgba(255, 68, 68, 0.02);
    border-color: rgba(255, 68, 68, 0.1);
}

.plan-features .feature.feature-blocked::before {
    content: '✗';
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.plan-features .feature.feature-blocked:hover {
    transform: none;
    color: #888888;
    background: rgba(255, 68, 68, 0.03);
    border-color: rgba(255, 68, 68, 0.15);
}

.plan-features .feature.feature-blocked:hover::before {
    transform: scale(1.05);
}

.plan .btn {
    margin: 1.5rem 2.5rem 2.5rem 2.5rem;
    width: calc(100% - 5rem);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    z-index: 2;
    animation: pulse 2s infinite;
}

.plan .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.plan .btn:hover::before {
    left: 100%;
}

.plan .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #00b33c 0%, #00802b 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 179, 60, 0.4);
    z-index: 1000;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 179, 60, 0.3);
}

.purchase-notification.show {
    transform: translateX(0);
}

.purchase-notification::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    color: #00802b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

@keyframes slideInOut {
    0% {
        transform: translateX(-150%);
    }
    10%, 90% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-150%);
    }
}

/* Two Paths Section */
.two-paths {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
}

.two-paths::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.two-paths h2 {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
}

.highlight-red {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.paths-grid {
    display: flex;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    align-items: stretch;
}

.path {
    flex: 1;
    background: linear-gradient(145deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
    border-radius: 10px;
    padding: 1rem 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 1;
}

.path-red {
}

.path-red::before {
    background: linear-gradient(135deg, #ff4444, #cc3333, #ff4444);
}

.path-red:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.2);
}

.path-green {
}

.path-green::before {
    background: linear-gradient(135deg, #00ff41, #00cc33, #00ff41);
}

.path-green:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
}

.path-number {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
}

.path-red .path-number {
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.path-green .path-number {
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.path-content {
    position: relative;
    z-index: 2;
}

.path-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .paths-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .two-paths h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .path {
        padding: 1.2rem 1rem;
    }
    
    .path-number {
        font-size: 1.5rem;
    }
    
    .path-content p {
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.faq {
    padding: 35px 0;
    background: #000000;
}

.faq-list {
    margin-top: 35px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid #333333;
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    color: #ffffff;
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 193, 7, 0.1);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: #ffc107;
}

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

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

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

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

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.faq-cta .btn-large {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-guarantee {
    margin-top: 1rem;
}

.cta-guarantee small {
    color: #ffc107;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 60px 0 20px 0;
    background: #000000;
    border-top: 1px solid #333333;
}

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

.footer-section h4 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
}

@media (max-width: 768px) {
    body {
        margin: 0 10px;
    }
    
    .top-banner {
        margin: 0 -10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .plan.featured {
        transform: none;
    }
    
    .paths-container {
        gap: 1rem;
    }
    
    .path {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .path-text {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.625rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .problem-item,
    .feature {
        padding: 1.5rem;
    }
    
    .plan-header {
        padding: 1.5rem;
    }
    
    .plan-features {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

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

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

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

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn:active::before {
    width: 300px;
    height: 300px;
}