    .main-title {
        text-align: center;
        margin-bottom: 3rem;
        animation: fadeIn 1s ease-out;
    }

    .main-title h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .main-title h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #3498db, #2c3e50);
        border-radius: 2px;
    }

    .main-title p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .team-section {
        margin-bottom: 4rem;
    }

    .team-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: #2c3e50;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

    .team-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #3498db, #2c3e50);
        border-radius: 2px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .team-member {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

    .team-img {
        height: 200px;
        background: #eef2f7;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7f8c8d;
        font-style: italic;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-info h3 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .team-info p {
        color: #7f8c8d;
    }

    /* Animaciones */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateX(-30px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
    .main-title h1 {
        font-size: 2.2rem;
    }
        
    .main-title p {
        font-size: 1rem;
    }
}