/* Fondo y colores generales */
body {
    background-color: #f8f8f8;
    color: #333333;
}

/* Estilos de los títulos */
h1, h2 {
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    text-transform: none; /* Elimina mayúsculas, hace más natural */
}

/* Estilo específico para el título principal (h1) */
h1 {
    font-size: 40px; /* Reducir un poco el tamaño */
    color: var(--primary-color);
    letter-spacing: 1px; /* Espaciado sutil */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05); /* Sombras muy suaves */
}

/* Estilo para los subtítulos (h2) */
h2 {
    font-size: 32px; /* Tamaño más moderado */
    color: #444;
    font-weight: 500; /* Un poco más fuerte para resaltar */
    letter-spacing: 1px;
}

/* Estilos para la sección del equipo */
.team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

/* Tarjeta de cada miembro del equipo */
.team-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Sombra suave para look limpio */
    transition: transform 0.3s ease-in-out;
}

.team-card:hover {
    transform: scale(1.05);
}

/* Estilo de las imágenes */
.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Nombre y rol */
.team-card h3 {
    font-size: 18px;
    margin: 15px 0 5px;
    font-weight: 600; /* Resalta el nombre */
    color: #333; /* Color más oscuro */
}

.team-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
    font-style: italic; /* Toque elegante */
}

/* Iconos de redes sociales */
.team-card a {
    color: #555;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}

.team-card a:hover {
    color: #009688; /* Verde suave al pasar el mouse */
}

/* Espaciado especial para el fundador */
.founder {
    background: #e3f2fd; /* Azul claro para destacar */
    border-left: 5px solid #009688;
}

/* Estilos para la grilla */
.team-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.team-card {
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Mantener sombra sutil */
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-card a {
    margin: 5px;
    color: #0077b5; /* Color de LinkedIn */
}

/* Agregar un toque sutil de interactividad */
.team-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Más profundidad al pasar el mouse */
}

.team-card {
    text-align: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


