    .about .container {
        max-width: 1200px;
        position: relative;
        z-index: 1;
    }

    .section-title-about {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title-about h2 {
        color: #fff;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 2px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        border-radius: 2px;
    }

    .intro-text {
        margin-top: 20px;
        font-size: 1rem;
        color: #bdc3c7;
        line-height: 1.8;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .texto-corpo {
        line-height: 1.6;
    }

    .team-section {
        margin-bottom: 50px;
    }

    .section-subtitle {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 600;
        text-align: center;
        position: relative;
        display: inline-block;
        padding-bottom: 12px;
        margin-bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        border-radius: 2px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .team-member {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 30px 25px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .team-member::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .team-member:hover::before {
        left: 100%;
    }

    .team-member:hover {
        transform: translateY(-5px);
        border-color: rgba(52, 152, 219, 0.5);
        box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    }

    .team-member h4 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .team-member p {
        color: #95a5a6;
        font-size: 0.95rem;
        line-height: 1.5;
        position: relative;
        z-index: 1;
    }

    .divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 50px auto;
        max-width: 600px;
    }

    .footer-text {
        text-align: center;
        font-size: 0.9rem;
        color: #7f8c8d;
        line-height: 1.8;
        margin-top: 40px;
    }

    @media (max-width: 768px) {
        .section-title-about h2 {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1.5rem;
        }

        .team-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .about {
            padding: 40px 0;
        }
    }
