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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #e2e8f0;
    min-height: 100vh;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #8b5cf6;
}

.logo i {
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

/* Main Content */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 80px);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #2a2a3e;
    border: 2px solid #3a3a4e;
    color: #e0e0e0;
    padding: 15px 25px; /* Aumentado o padding */
    border-radius: 30px; /* Aumentado o border-radius */
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px; /* Aumentado o gap */
    font-size: 1.1rem; /* Aumentado o tamanho da fonte */
}

.search-input {
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    border: 2px solid #3a3a4e;
    border-radius: 30px;
    background: #2a2a3e;
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.filter-btn.priority {
    background: linear-gradient(45deg, #e1306c, #fd1d1d);
    border-color: #e1306c;
    color: white;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.service-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.4;
}

.service-price {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #94a3b8;
}

/* Instagram Priority Cards */
.service-card.instagram-priority {
    background: linear-gradient(145deg, #e1306c, #fd1d1d);
    border: 2px solid #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.service-card.instagram-priority .service-name {
    color: white;
    font-weight: 700;
}

.service-card.instagram-priority .service-details {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.instagram-priority:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.4);
    border-color: #fd1d1d;
}

.service-card.instagram-priority::before {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
}

/* Order Form */
.order-form-container {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.service-info {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-info span {
    font-weight: 600;
    color: #f1f5f9;
}

.service-rate {
    color: #94a3b8;
    font-size: 14px;
}

.quantity-info {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-header h2 {
    color: #f1f5f9;
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #f1f5f9;
    background: rgba(139, 92, 246, 0.1);
}

.modal-body {
    padding: 25px;
}

/* PIX Details */
.pix-details {
    text-align: center;
    margin-top: 20px;
}

.pix-details img {
    max-width: 200px;
    border-radius: 10px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 20px;
}

.pix-details textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 15px;
}

.pix-details .btn-secondary {
    width: auto;
    padding: 10px 20px;
}

.small-text {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 10px;
}

/* Loading */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
    color: #8b5cf6;
}

.loading-spinner i {
    font-size: 48px;
    margin-bottom: 15px;
}

.loading-spinner p {
    font-size: 18px;
    color: #e2e8f0;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    animation: slideIn 0.3s ease forwards;
    max-width: 350px;
}

.notification.success {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.notification.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.notification.warning {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form-container {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
}



/* Reseller Section */
.reseller-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .reseller-content {
        grid-template-columns: 1fr 1fr;
    }
}

.reseller-benefits, .reseller-banners {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.reseller-benefits h3, .reseller-banners h3 {
    color: #f1f5f9;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.reseller-benefits ul {
    list-style: none;
    padding: 0;
}

.reseller-benefits ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.reseller-benefits ul li i {
    color: #22c55e;
    font-size: 1.3rem;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.banner-placeholder {
    background: rgba(15, 23, 42, 0.8);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
}

.banner-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.reseller-contact {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.reseller-contact p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.reseller-contact .btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}


