/* Help Center Styles */

/* Page Header - Compartilhado */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Search Box */
.help-search {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 16px;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #0052a3;
}

/* Help Categories Grid */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.category-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 15px;
}

.category-card ul {
    list-style: none;
    margin-top: 15px;
}

.category-card li {
    margin-bottom: 10px;
}

.category-card a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.category-card a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Help Content */
.help-content {
    max-width: 800px;
    margin: 0 auto;
}

.help-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.help-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.help-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.help-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.help-item ul {
    margin-top: 10px;
    margin-left: 20px;
}

.help-item li {
    color: #666;
    margin-bottom: 5px;
}

.help-item strong {
    color: #333;
}

/* Contact CTA */
.help-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.help-contact h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-width: 200px;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #0066cc;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .help-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .help-section {
        padding: 40px 0;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
    }
}