
    /* * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    } */

    /* body {
        font-family: Arial, sans-serif;
        background-color: #f7f7f7;
        color: #fbfafa;
    } */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* inicio section */
    /* .inicio-team-section {
        box-sizing: border-box;
        background-color: #29a22b;
        color: #f9f5f5;
        text-align: center;
    } */

    .inicio-team-section h1 {
        font-size: 2.5em;
        font-weight: bold;
        margin-bottom: 10px;
        font: oblique bold 120% cursive;
    }

    .inicio-team-section h6 {
        font-size: 1.2em;
        color: #252222; /* Color gris claro para el subtítulo */
        font: caption;
        font: oblique bold 120% cursive;
    }

    .volunteering-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto; 
        text-align:justify;
    }

    .volunteering-section h2 {
        font-size: 2em;
        color: #333;
        margin-bottom: 20px;
    }

    

    /* Perfil principal */
    .profile-section {
        display: flex;
        align-items: center;
        background-color: #fff;
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .profile-section img {
        width: 300px;
        height: auto;
        border-radius: 8px;
        margin-right: 20px;
    }

    .profile-content h2 {
        font-size: 1.8em;
        color: #333;
        margin-bottom: 5px;
    }

    .profile-content h3 {
        font-size: 1.2em;
        color: #666;
        margin-bottom: 10px;
    }

    .profile-content p {
        font-size: 1em;
        color: #555;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .role-badge {
        display: inline-block;
        background-color: #d4edda;
        color: #155724;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: bold;
    }

    /* Sección de equipo */
    .team-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            background-color: #f1f1f1; /* Color de la franja */

            padding: 20px 0;
        }

    .team-member {
        background-color: #fff;
        border-radius: 8px;
        margin: 5px; 
        overflow: hidden;
        text-align: center;
        /* width: 300px; */
        width: 23%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .team-member img {
        width: 100%;
        height: auto;
    }

    .team-member-content {
        padding: 20px;
    }

    .team-member h3 {
        font-size: 1.5em;
        color: #333;
        margin-bottom: 10px;
    }

    .team-member .role {
        color: #d46c6c;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 1em;
    }

    .team-member p {
        font-size: 0.9em;
        color: #555;
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .social-icons a {
        color: #333;
        font-size: 1.2em;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #d46c6c;
    }

    .section-title {
            text-align: center;
            font-size: 2em;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            margin-top: 40px;
        }

    /* Nueva sección de equipo en grid */
    .centered-team-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            align-items: center;
            justify-items: center;
            padding: 40px 0;
            position: relative;
        }

        .centered-team-section::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 20px;
            background-color: #29a22b; /* Color de la franja */
            z-index: 0;
            transform: translateY(-50%);
        }

        .member-card {
            position: relative;
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            width: 200px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .member-card:hover {
            transform: scale(1.05); /* Aumenta ligeramente el tamaño */
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Aumenta la sombra */
        }

        .member-card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .member-card:hover img {
            transform: scale(1.1); /* Aumenta ligeramente la imagen también */
        }

        .member-card h3 {
            font-size: 1em;
            color: #333;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .member-card p {
            font-size: 0.9em;
            color: #666;
        }

    /* Responsive */
    @media (max-width: 768px) {
        .team-member {
            width: 90%;
        }
        .profile-section {
            flex-direction: column;
            align-items: flex-start;
        }
        .profile-section img {
            margin-bottom: 20px;
        }
    }