/* CSS específico para página Seller Magalu */

/* Seller Hero Section */
.seller-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0070d9 100%);
    padding: 120px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #fff;
}

.solution-card {
    background: #F5F5F5;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #F5F5F5;
}
.solution-card p {
    font-size: 1rem;
}
.solution-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.solution-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
}

.solution-buttons .btn {
    min-width: 160px;
    min-height: 42px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
}

.solution-buttons .btn-outline-primary {
    border: none;
    color: var(--primary-color);
    background: transparent;
}

.solution-buttons .btn-outline-primary:hover {
    background: transparent;
    color: #0070d9;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    right: 20px;
    top: 20px;
    background: linear-gradient(45deg, #ff1493, #ffd700, #32cd32, #8a2be2);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

.contact-content {
    padding: 2rem 0;
}

.contact-content .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    background-color: #F5F5F5;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: #F5F5F5;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 134, 255, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #666;
    font-weight: 400;
}

.contact-form .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.footer .contact-info p {
    color: #666;
    margin: 0;
}

.footer .social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer .social-links a:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

.footer ul {
    margin: 0;
}

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

.footer ul li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer-legal p {
    color: #666;
    margin: 0;
}

.footer hr {
    border-color: #e0e0e0;
    margin: 1rem 0;
}

/* Dropdown Menus */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .solution-buttons .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
        min-width: 120px;
    }
    
    .contact-content .section-title {
        font-size: 2rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        margin-bottom: 1rem;
    }
    
    .image-decoration {
        display: none;
    }
    
    .footer .text-end {
        text-align: start !important;
    }
    
    .footer .row > div {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .seller-hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .solution-title {
        font-size: 1.5rem;
    }
    
    .solution-icon {
        height: 80px;
    }
    
    .solution-icon img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .contact-content .section-title {
        font-size: 1.75rem;
    }
}

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

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

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}