/* Estilos base */
:root {
    --primary-color: #0f1111;
    --secondary-color: #f7b731;
    --dark-color: #2c3e50;
    --light-color: #f5f6fa;
    --success-color: #2ecc71;
    --gradient-primary: linear-gradient(135deg, #f7b731 0%,#0f1111 100%);
}

/* Hero Section */
.vendor-hero {
    height: 60vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.vendor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.svg');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}




.hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
}

/* Requirements Section */
.requirements-section {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-10px);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.requirement-icon i {
    font-size: 2rem;
    color: white;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.vendor-cta {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vendor-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(247,183,49,0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .vendor-hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}