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

html {
    scroll-behavior: smooth;
}

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

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 50%, #15131C 100%);
}

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

/* Variables CSS */
:root {
    --primary-color: #15131C;
    --primary-dark: #0f0d14;
    --secondary-color: #ffffff;
    --accent-color: #15131C;
    --text-primary: #15131C;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;
    --shadow: 0 10px 25px -3px rgba(21, 19, 28, 0.15);
    --gradient: linear-gradient(135deg, #15131C 0%, #2a2831 50%, #15131C 100%);
}

/* Ensure sections have solid backgrounds */
section {
    position: relative;
    z-index: 1;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 25px rgba(255, 255, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 10px 35px rgba(255, 255, 255, 0.4));
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #15131C;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #15131C;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(21, 19, 28, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Drawer Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 100vh;
}

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

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.drawer-logo .logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

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

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.drawer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.drawer-link:hover {
    color: white;
    padding-left: 1rem;
}

.drawer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    transition: width 0.3s ease;
}

.drawer-link:hover::before {
    width: 20px;
}

.drawer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-drawer-secondary, .btn-drawer-primary {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    text-align: center;
}

.btn-drawer-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-drawer-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-drawer-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    color: #15131C;
    border: none;
    font-weight: 700;
}

.btn-drawer-primary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-drawer-secondary i, .btn-drawer-primary i {
    font-size: 1.1rem;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-large, .btn-demo, .btn-plan {
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: #15131C;
    color: #15131C;
}

.btn-primary-large {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
    background: var(--gradient);
    color: white;
    animation: pulse 2s infinite;
}

.btn-demo {
    padding: 0.8rem 1.6rem;
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-demo:hover {
    background: white;
    color: #15131C;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #ffd700;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-content .text-gradient {
    opacity: 1 !important;
    animation: shimmer 3s ease-in-out infinite !important;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #f1f1f1, #e5e5e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nova animação de gradiente - completamente do zero */
.text-gradient-new {
    background: linear-gradient(
        45deg,
        #ffffff 0%,
        #ffd700 20%,
        #ff6b35 40%,
        #ffd700 60%,
        #ffffff 80%,
        #ffd700 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: newGradientFlow 4s linear infinite;
    font-weight: 800;
    position: relative;
    z-index: 1;
    /* Ensure gradient is preserved during animations */
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Force gradient preservation during transitions */
.hero-title .text-gradient-new {
    background: linear-gradient(
        45deg,
        #ffffff 0%,
        #ffd700 20%,
        #ff6b35 40%,
        #ffd700 60%,
        #ffffff 80%,
        #ffd700 100%
    ) !important;
    background-size: 300% 300% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: newGradientFlow 4s linear infinite !important;
}

@keyframes newGradientFlow {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(90deg,
        #ffffff 0%,
        #ffd700 25%,
        #ff6b35 50%,
        #ffd700 75%,
        #ffffff 100%
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -400% 0;
    }
    100% {
        background-position: 400% 0;
    }
}

.hero-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease;
    gap: 2rem;
    position: relative;
}

/* Marketplace Showcase */
.marketplace-showcase {
    position: relative;
    width: 350px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.featured-product {
    border: 3px solid #15131C;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 35px rgba(21, 19, 28, 0.3);
}

.product-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-image i {
    font-size: 1.8rem;
    color: white;
}

.product-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #15131C;
    margin-bottom: 0.5rem;
}

.product-info .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #15131C;
    margin-bottom: 0.5rem;
}

.product-info .sales {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 500;
}

/* Floating Products */
.floating-products {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.product-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 6;
}

.product-card i {
    font-size: 1.2rem;
    color: #15131C;
    margin-bottom: 0.25rem;
}

.mini-price {
    font-size: 0.7rem;
    font-weight: 600;
    color: #15131C;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1.5s;
}

/* Earnings Notification */
.earnings-notification {
    position: absolute;
    right: 0%;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 4;
    transform: translateX(120%);
    opacity: 0;
    min-width: 140px;
}

.notification-1 {
    bottom: 15%;
    animation: notificationSequence1 12s ease-in-out infinite;
}

.notification-2 {
    bottom: -5%;
    animation: notificationSequence2 12s ease-in-out infinite;
}

.notification-icon {
    font-size: 1.2rem;
}

.earning-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4ade80;
}

.earning-time {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Stats Bubbles */
.stats-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.stat-bubble .number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #15131C;
    line-height: 1;
}

.stat-bubble .label {
    font-size: 0.6rem;
    color: #6b7280;
    line-height: 1;
}

.bubble-1 {
    top: 35%;
    left: -10%;
    animation-delay: 0.3s;
}

.bubble-2 {
    top: 60%;
    right: -5%;
    animation-delay: 0.8s;
}

/* Animations */
@keyframes notificationSequence1 {
    0%, 10% {
        transform: translateX(120%);
        opacity: 0;
    }
    15%, 45% {
        transform: translateX(0);
        opacity: 1;
    }
    50%, 100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes notificationSequence2 {
    0%, 25% {
        transform: translateX(120%);
        opacity: 0;
    }
    30%, 60% {
        transform: translateX(0);
        opacity: 1;
    }
    65%, 100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes slideInAndStay {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 0;
    }
    80% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0%, 70% {
        transform: translateX(100%);
        opacity: 0;
    }
    80%, 90% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Fees Section */
.fees {
    padding: 6rem 0;
    background: var(--surface);
}

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

.fee-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fee-chart {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 120px;
}

.chart-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    position: relative;
}

.creator-share {
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    color: white;
    flex: 91;
}

.platform-fee {
    background: #f3f4f6;
    color: var(--text-primary);
    flex: 9;
}

.chart-section .percentage {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.chart-section .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.fee-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.fee-list {
    list-style: none;
}

.fee-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.fee-list i {
    color: #15131C;
    font-size: 1rem;
}

.earnings-example {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.earnings-example h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.example-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--surface);
    border-radius: 8px;
    border-left: 4px solid #15131C;
}

.sale-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.creator-earnings {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.creator-earnings strong {
    color: #15131C;
    font-size: 1rem;
}

.repasse-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.repasse-info i {
    color: #15131C;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid #15131C;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.plan-features i {
    color: #15131C;
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    background: var(--border);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-plan:hover {
    background: #15131C;
    color: white;
    border-color: #15131C;
}

.btn-plan-featured {
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    color: white;
    border: none;
}

.btn-plan-featured:hover {
    background: linear-gradient(135deg, #2a2831 0%, #15131C 50%, #2a2831 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 19, 28, 0.3);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #15131C 0%, #2a2831 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary-large {
    background: white;
    color: #15131C;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo i {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #15131C;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

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

    .fees-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fee-chart {
        height: 100px;
    }

    .chart-section .percentage {
        font-size: 1.3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .floating-cards {
        width: 200px;
        height: 200px;
    }

    .marketplace-showcase {
        width: 280px;
        height: 320px;
    }

    .main-card {
        width: 160px;
        padding: 1rem;
    }

    .product-card {
        width: 60px;
        height: 60px;
    }

    .earnings-notification {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .notification-1 {
        bottom: 15%;
    }

    .notification-2 {
        bottom: -5%;
    }

    .stat-bubble {
        width: 45px;
        height: 45px;
    }

    .card {
        width: 80px;
        height: 80px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .marketplace-showcase {
        width: 250px;
        height: 280px;
    }

    .main-card {
        width: 140px;
        padding: 0.75rem;
    }

    .product-image {
        width: 40px;
        height: 40px;
    }

    .product-info h4 {
        font-size: 0.9rem;
    }

    .product-info .price {
        font-size: 1.1rem;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }

    /* Mobile Drawer adjustments for small screens */
    .mobile-drawer {
        width: 100%;
        right: -100%;
    }

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

    .drawer-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .btn-drawer-secondary, .btn-drawer-primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
