/* Landing Page Styles for QuieroVender */

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #000000;
    color: white;
    margin-bottom: 80px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero .tagline {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 1.2em;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-primary {
    background: white;
    color: #000000;
}

.btn-hero-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1e293b;
}

.features > p {
    text-align: center;
    font-size: 1.2em;
    color: #64748b;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d4d4d4;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.problem-section {
    background: #fafafa;
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.problem-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1e293b;
}

.problem-section p {
    font-size: 1.2em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #000000;
    display: block;
}

.stat-label {
    color: #64748b;
    margin-top: 10px;
}

.how-it-works {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #1e293b;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.final-cta {
    background: #000000;
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
}

.final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero .tagline {
        font-size: 1.2em;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 1em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-section h2 {
        font-size: 2em;
    }
    
    .how-it-works h2 {
        font-size: 2em;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .final-cta h2 {
        font-size: 2em;
    }
}

