/* SOBRE PAGE STYLES */

.about-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--color-gradient-2);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-title {
    color: var(--color-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.my-story {
    padding: 100px 0;
    background-color: var(--color-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-title {
    margin-bottom: 32px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.my-thesis {
    padding: 100px 0;
    background-color: var(--color-gray-light);
}

.thesis-box {
    max-width: 1000px;
    margin: 0 auto;
}

.thesis-box-title {
    text-align: center;
    margin-bottom: 60px;
}

.thesis-points {
    display: grid;
    gap: 40px;
}

.thesis-point {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 32px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.thesis-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    background-color: var(--color-black);
    border-radius: 8px;
}

.thesis-point-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.thesis-point-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-medium);
}

.my-approach {
    padding: 100px 0;
    background-color: var(--color-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.approach-card {
    padding: 40px 32px;
    background-color: var(--color-gray-light);
    border-radius: 8px;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.approach-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 8px;
    margin-bottom: 24px;
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-medium);
}

.work-process {
    padding: 100px 0;
    background-color: var(--color-gray-dark);
    color: var(--color-white);
}

.work-process .section-title {
    color: var(--color-white);
}

.work-process .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: 50%;
    z-index: 1;
}

.process-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-white);
}

.process-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image img {
        height: 400px;
    }

    .thesis-point {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .thesis-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 60px 0;
    }

    .my-story,
    .my-thesis,
    .my-approach,
    .work-process {
        padding: 60px 0;
    }
}
