/* =========================================
   ABOUT PAGE STYLES (Restored & Cleaned)
   ========================================= */
.about-hero {
    /* Soft Blue Background */
    background-color: #f0f7ff !important; /* Very light blue */
    background-image: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%) !important;
    padding: 50px 0 30px;
    text-align: center;
    color: var(--text-color);
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Remove qualquer elemento de fundo */
.about-hero .hero-bg {
    display: none !important;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--primary-color); /* Título em destaque na cor da marca */
    letter-spacing: -1px;
}

.about-hero .subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-hero .intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.about-section {
    padding: 60px 0;
}

.about-us .content-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.about-us .content-text p {
    margin-bottom: 20px;
}

.grid-mvv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mvv-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.mvv-card p {
    color: #555;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.values-list li {
    margin-bottom: 8px;
    color: #555;
}

.values-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.target-audience {
    background-color: var(--white);
}

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

.audience-block {
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.audience-block.client {
    background-color: #E3F2FD;
}

.audience-block.professional {
    background-color: #f1f8e9;
}

.audience-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.audience-block ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.audience-block ul li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.audience-block ul li i {
    width: 30px;
    color: var(--primary-color);
    font-size: 18px;
}

.audience-block .icon-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(0,0,0,0.05);
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card {
    padding: 20px;
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.benefit-card p {
    font-size: 14px;
    color: #666;
}

/* =========================================
   HELP PAGE STYLES (Refined to match Home Testimonials)
   ========================================= */

/* Main Card */
.help-section-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensure header radius works */
}

/* Header - Gradient Style */
.help-header-blue, .help-header-green {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    margin-bottom: 0;
    color: #fff;
    border-bottom: none;
}

.help-header-blue {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.help-header-green {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
}

/* Icons - White Circle with Colored Icon */
.help-header-blue i, .help-header-green i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.help-header-blue i {
    color: var(--primary-color);
}

.help-header-green i {
    color: #2E7D32;
}

/* Titles - White */
.help-header-blue h3, .help-header-green h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

/* Q&A List */
.help-qa-list {
    padding: 30px;
    flex-grow: 1;
}

.qa-item {
    margin-bottom: 25px;
    /* padding-bottom: 25px; */
    /* border-bottom: 1px solid #f0f0f0; */
}

.qa-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.qa-item h4 {
    color: var(--text-color, #263238);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.qa-item h4::before {
    content: "•";
    color: #cbd5e1;
    margin-right: 8px;
    font-size: 1.2em;
}

.qa-item p {
    color: #4b5563; /* Gray 600 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 15px; /* Indent text slightly */
}

/* Footer Card - Clean style */
.help-footer-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.help-footer-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.help-footer-card p {
    color: #64748b;
    margin-bottom: 25px;
}

/* =========================================
   HELP PAGE GRID SYSTEM
   ========================================= */
.help-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start; /* Aligns items to the top */
}

.help-column {
    flex: 1;
    min-width: 300px; /* Forces wrap only on very small screens */
    width: 50%; /* Fallback */
}

.help-footer-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.help-footer-content {
    width: 100%;
    max-width: 800px; /* Matches content container */
}

/* Ensure side-by-side on tablets/desktop */
@media (min-width: 768px) {
    .help-column {
        width: 50%;
    }
}

/* Stack on mobile */
@media (max-width: 767px) {
    .help-grid {
        flex-direction: column;
    }
    .help-column {
        width: 100%;
        min-width: 100%;
    }
    .about-hero h1 {
        font-size: 32px;
    }
    .about-hero .subtitle {
        font-size: 18px;
    }
}