/* ============================================
   About Page - KK Tec
   Estilo clean e minimalista
   ============================================ */

/* About Hero */
.about-hero {
    background: #f8f9fa;
    padding: 60px 0;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

/* About Content Section */
.about-content-section {
    background: #fff;
    padding: 80px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.about-stat {
    background: #f8f9fa;
    padding: 24px 16px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.about-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0073aa;
    margin-bottom: 4px;
}

.about-stat .stat-label {
    font-size: 13px;
    color: #666;
}

/* About Values */
.about-values {
    margin-top: 32px;
}

.about-values h3 {
    font-size: 20px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 16px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list i {
    color: #0073aa;
    font-size: 20px;
    flex-shrink: 0;
}

.values-list span {
    color: #555;
    font-size: 15px;
}

/* About Image */
.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-image-box {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.about-image-box i {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
}

.about-image-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.about-image-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 48px 0;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-content-section {
        padding: 48px 0;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-stat {
        padding: 20px;
    }

    .about-stat .stat-number {
        font-size: 28px;
    }

    .about-image-box {
        padding: 40px 24px;
    }

    .about-image-box i {
        font-size: 48px;
    }

    .about-image-box h3 {
        font-size: 24px;
    }
}
